# Country The `country` object describes a country, including its name, ISO code, and currency. ## Usage Example ```liquid {%- comment -%} Display country information {%- endcomment -%}

Country: {{ country.name }} ({{ country.iso_code }})
Currency: {{ country.currency.symbol }} ({{ country.currency.iso_code }})

``` ## Properties ### currency Returns the country [currency](/reference/liquid/objects/store/currency/) object. ### endonym_name Returns the country endonym name, if available. ### id Returns the unique id for this country. ### iso_code Returns the country [ISO](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code. ### name Returns the country name.