ISO Country Code Converter
Convert country codes between ISO 3166 formats (alpha-2, alpha-3 and numeric) and the country name. Useful for development, forms and databases.
Conversão
—
Alpha-2, alpha-3 and numeric country codes
The payment gateway wants BR. The freight carrier wants BRA. The bank form asks for 076, leading zero included. And the spreadsheet you were sent spells the country out in full. Four representations of the same place, all defined by ISO 3166-1, and translating between them by hand is exactly the chore that plants a quiet bug in a signup flow.
Type any of the four forms and the output line hands back the other three at once. The leading zero is optional, so 76 and 076 both land on Brazil, and accents do not matter because the lookup normalizes before comparing. The limit, stated plainly: the built in table holds 27 countries rather than the 249 in the standard, and the names are stored in Portuguese. Brasil matches, Brazil does not.
To populate a real database, pull the official ISO list or a package like iso-3166 in your stack. What this page is good for is the one off lookup you do while filling a form or chasing an integration bug. One detail that breaks integrations: the alpha-2 code for the United Kingdom is GB, not UK. UK exists as a reserved code but is not the official one. The lookup runs in your browser.
Frequently asked questions
What is the ISO code for Brazil?
Does it cover every country in the standard?
Can I search by the English country name?
Related Tools
Morse Code Converter
Convert text to Morse code and vice versa. Supports letters, numbers and punctuation. Instant result in the browser.
Date Format Converter
Convert dates between the most common formats: dd/mm/yyyy, yyyy-mm-dd, mm/dd/yyyy, ISO 8601 and Unix timestamp.
Text ↔ Decimal Converter
Convert ASCII text to decimal codes and vice versa. Each character is represented by its decimal value in the ASCII table.
Binary Code Translator
Convert text to binary code (0s and 1s) and vice versa. Supports any ASCII character. Processed in the browser.
MessagePack to JSON (text) Converter
Explains the MessagePack binary format, its advantages and how to translate it into textual JSON.
HTML to Pug Converter
Convert HTML into the indentation-based Pug (formerly Jade) syntax, with no closing tags. Paste your HTML and get the Pug version — great for Node.js and Express.