This list of TLDs is intended to help attribute a domain to a certain country.
- The data was drawn from Wikipedia
- Only ccTLDs that are attributed to countries with a high confidence are included (i.e. exclude the Generic TLDs)
- Only the two-letter ccTLDs are included (for simplicity)
The JavaScript to copy and use in the console at https://en.wikipedia.org/wiki/Country_code_top-level_domain:
generalised = [".ac", ".ad", ".ag", ".ai", ".am", ".as", ".az", ".bz", ".cc", ".cd", ".co", ".cu", ".cv",
".dj", ".fm", ".ga", ".gg", ".io", ".is", ".it", ".kg", ".la", ".ly", ".md", ".me", ".ms", ".nu",
".pe", ".pn", ".pw", ".re", ".rs", ".sc", ".sh", ".sx", ".tf", ".tk", ".tm", ".to", ".tv", ".ws",
".yt"
];
results = [];
jQuery('table tr').each(function () {
tds = jQuery.map(
jQuery(this).find('td'),
(elt) => jQuery(elt).text()
);
if (tds[0]) {
if (!generalised.includes(tds[0]) && tds[0].trim().length === 3) {
results.push({
'tld': tds[0].substring(1),
'country': tds[1].trim()
});
}
}
});
copy(results);
The results in JSON format:
[
{
"tld": "ae",
"country": "United Arab Emirates"
},
{
"tld": "af",
"country": "Afghanistan"
},
{
"tld": "al",
"country": "Albania"
},
{
"tld": "ao",
"country": "Angola"
},
{
"tld": "aq",
"country": "Antarctica"
},
{
"tld": "ar",
"country": "Argentina"
},
{
"tld": "at",
"country": "Austria"
},
{
"tld": "au",
"country": "Australia"
},
{
"tld": "aw",
"country": "Aruba (Kingdom of the Netherlands)"
},
{
"tld": "ax",
"country": "Åland (Finland)"
},
{
"tld": "ba",
"country": "Bosnia and Herzegovina"
},
{
"tld": "bb",
"country": "Barbados"
},
{
"tld": "bd",
"country": "Bangladesh"
},
{
"tld": "be",
"country": "Belgium"
},
{
"tld": "bf",
"country": "Burkina Faso"
},
{
"tld": "bg",
"country": "Bulgaria"
},
{
"tld": "bh",
"country": "Bahrain"
},
{
"tld": "bi",
"country": "Burundi"
},
{
"tld": "bj",
"country": "Benin"
},
{
"tld": "bm",
"country": "Bermuda (United Kingdom)"
},
{
"tld": "bn",
"country": "Brunei"
},
{
"tld": "bo",
"country": "Bolivia"
},
{
"tld": "bq",
"country": "Caribbean Netherlands ( Bonaire, Saba, and Sint Eustatius)"
},
{
"tld": "br",
"country": "Brazil"
},
{
"tld": "bs",
"country": "Bahamas"
},
{
"tld": "bt",
"country": "Bhutan"
},
{
"tld": "bw",
"country": "Botswana"
},
{
"tld": "by",
"country": "Belarus"
},
{
"tld": "ca",
"country": "Canada"
},
{
"tld": "cf",
"country": "Central African Republic"
},
{
"tld": "cg",
"country": "Republic of the Congo"
},
{
"tld": "ch",
"country": "Switzerland"
},
{
"tld": "ci",
"country": "Ivory Coast"
},
{
"tld": "ck",
"country": "Cook Islands"
},
{
"tld": "cl",
"country": "Chile"
},
{
"tld": "cm",
"country": "Cameroon"
},
{
"tld": "cn",
"country": "People's Republic of China"
},
{
"tld": "cr",
"country": "Costa Rica"
},
{
"tld": "cw",
"country": "Curaçao (Kingdom of the Netherlands)"
},
{
"tld": "cx",
"country": "Christmas Island"
},
{
"tld": "cy",
"country": "Cyprus"
},
{
"tld": "cz",
"country": "Czech Republic"
},
{
"tld": "de",
"country": "Germany"
},
{
"tld": "dk",
"country": "Denmark"
},
{
"tld": "dm",
"country": "Dominica"
},
{
"tld": "do",
"country": "Dominican Republic"
},
{
"tld": "dz",
"country": "Algeria"
},
{
"tld": "ec",
"country": "Ecuador"
},
{
"tld": "ee",
"country": "Estonia"
},
{
"tld": "eg",
"country": "Egypt"
},
{
"tld": "eh",
"country": "Western Sahara"
},
{
"tld": "er",
"country": "Eritrea"
},
{
"tld": "es",
"country": "Spain"
},
{
"tld": "et",
"country": "Ethiopia"
},
{
"tld": "eu",
"country": "European Union"
},
{
"tld": "fi",
"country": "Finland"
},
{
"tld": "fj",
"country": "Fiji"
},
{
"tld": "fk",
"country": "Falkland Islands (United Kingdom)"
},
{
"tld": "fo",
"country": "Faroe Islands (Kingdom of Denmark)"
},
{
"tld": "fr",
"country": "France"
},
{
"tld": "gd",
"country": "Grenada"
},
{
"tld": "ge",
"country": "Georgia"
},
{
"tld": "gf",
"country": "French Guiana (France)"
},
{
"tld": "gh",
"country": "Ghana"
},
{
"tld": "gi",
"country": "Gibraltar (United Kingdom)"
},
{
"tld": "gl",
"country": "Greenland (Kingdom of Denmark)"
},
{
"tld": "gm",
"country": "The Gambia"
},
{
"tld": "gn",
"country": "Guinea"
},
{
"tld": "gp",
"country": "Guadeloupe (France)"
},
{
"tld": "gq",
"country": "Equatorial Guinea"
},
{
"tld": "gr",
"country": "Greece"
},
{
"tld": "gs",
"country": "South Georgia and the South Sandwich Islands (United Kingdom)"
},
{
"tld": "gt",
"country": "Guatemala"
},
{
"tld": "gu",
"country": "Guam (United States)"
},
{
"tld": "gw",
"country": "Guinea-Bissau"
},
{
"tld": "gy",
"country": "Guyana"
},
{
"tld": "hk",
"country": "Hong Kong"
},
{
"tld": "hm",
"country": "Heard Island and McDonald Islands"
},
{
"tld": "hn",
"country": "Honduras"
},
{
"tld": "hr",
"country": "Croatia"
},
{
"tld": "ht",
"country": "Haiti"
},
{
"tld": "hu",
"country": "Hungary"
},
{
"tld": "id",
"country": "Indonesia"
},
{
"tld": "ie",
"country": "Ireland"
},
{
"tld": "il",
"country": "Israel"
},
{
"tld": "im",
"country": "Isle of Man"
},
{
"tld": "in",
"country": "India"
},
{
"tld": "iq",
"country": "Iraq"
},
{
"tld": "ir",
"country": "Iran"
},
{
"tld": "je",
"country": "Jersey"
},
{
"tld": "jm",
"country": "Jamaica"
},
{
"tld": "jo",
"country": "Jordan"
},
{
"tld": "jp",
"country": "Japan"
},
{
"tld": "ke",
"country": "Kenya"
},
{
"tld": "kh",
"country": "Cambodia"
},
{
"tld": "ki",
"country": "Kiribati"
},
{
"tld": "km",
"country": "Comoros"
},
{
"tld": "kn",
"country": "Saint Kitts and Nevis"
},
{
"tld": "kp",
"country": "North Korea"
},
{
"tld": "kr",
"country": "South Korea"
},
{
"tld": "kw",
"country": "Kuwait"
},
{
"tld": "ky",
"country": "Cayman Islands (United Kingdom)"
},
{
"tld": "kz",
"country": "Kazakhstan"
},
{
"tld": "lb",
"country": "Lebanon"
},
{
"tld": "lc",
"country": "Saint Lucia"
},
{
"tld": "li",
"country": "Liechtenstein"
},
{
"tld": "lk",
"country": "Sri Lanka"
},
{
"tld": "lr",
"country": "Liberia"
},
{
"tld": "ls",
"country": "Lesotho"
},
{
"tld": "lt",
"country": "Lithuania"
},
{
"tld": "lu",
"country": "Luxembourg"
},
{
"tld": "lv",
"country": "Latvia"
},
{
"tld": "ma",
"country": "Morocco"
},
{
"tld": "mc",
"country": "Monaco"
},
{
"tld": "mg",
"country": "Madagascar"
},
{
"tld": "mh",
"country": "Marshall Islands"
},
{
"tld": "mk",
"country": "North Macedonia"
},
{
"tld": "ml",
"country": "Mali"
},
{
"tld": "mm",
"country": "Myanmar"
},
{
"tld": "mn",
"country": "Mongolia"
},
{
"tld": "mo",
"country": "Macau"
},
{
"tld": "mp",
"country": "Northern Mariana Islands (United States)"
},
{
"tld": "mq",
"country": "Martinique (France)"
},
{
"tld": "mr",
"country": "Mauritania"
},
{
"tld": "mt",
"country": "Malta"
},
{
"tld": "mu",
"country": "Mauritius"
},
{
"tld": "mv",
"country": "Maldives"
},
{
"tld": "mw",
"country": "Malawi"
},
{
"tld": "mx",
"country": "Mexico"
},
{
"tld": "my",
"country": "Malaysia"
},
{
"tld": "mz",
"country": "Mozambique"
},
{
"tld": "na",
"country": "Namibia"
},
{
"tld": "nc",
"country": "New Caledonia (France)"
},
{
"tld": "ne",
"country": "Niger"
},
{
"tld": "nf",
"country": "Norfolk Island"
},
{
"tld": "ng",
"country": "Nigeria"
},
{
"tld": "ni",
"country": "Nicaragua"
},
{
"tld": "nl",
"country": "Netherlands"
},
{
"tld": "no",
"country": "Norway"
},
{
"tld": "np",
"country": "Nepal"
},
{
"tld": "nr",
"country": "Nauru"
},
{
"tld": "nz",
"country": "New Zealand"
},
{
"tld": "om",
"country": "Oman"
},
{
"tld": "pa",
"country": "Panama"
},
{
"tld": "pf",
"country": "French Polynesia (France)"
},
{
"tld": "pg",
"country": "Papua New Guinea"
},
{
"tld": "ph",
"country": "Philippines"
},
{
"tld": "pk",
"country": "Pakistan"
},
{
"tld": "pl",
"country": "Poland"
},
{
"tld": "pm",
"country": "Saint-Pierre and Miquelon (France)"
},
{
"tld": "pr",
"country": "Puerto Rico (United States)"
},
{
"tld": "ps",
"country": "Palestine[51]"
},
{
"tld": "pt",
"country": "Portugal"
},
{
"tld": "py",
"country": "Paraguay"
},
{
"tld": "qa",
"country": "Qatar"
},
{
"tld": "ro",
"country": "Romania"
},
{
"tld": "ru",
"country": "Russia"
},
{
"tld": "rw",
"country": "Rwanda"
},
{
"tld": "sa",
"country": "Saudi Arabia"
},
{
"tld": "sb",
"country": "Solomon Islands"
},
{
"tld": "sd",
"country": "Sudan"
},
{
"tld": "se",
"country": "Sweden"
},
{
"tld": "sg",
"country": "Singapore"
},
{
"tld": "si",
"country": "Slovenia"
},
{
"tld": "sk",
"country": "Slovakia"
},
{
"tld": "sl",
"country": "Sierra Leone"
},
{
"tld": "sm",
"country": "San Marino"
},
{
"tld": "sn",
"country": "Senegal"
},
{
"tld": "so",
"country": "Somalia"
},
{
"tld": "sr",
"country": "Suriname"
},
{
"tld": "ss",
"country": "South Sudan"
},
{
"tld": "st",
"country": "São Tomé and Príncipe"
},
{
"tld": "su",
"country": "Soviet Union"
},
{
"tld": "sv",
"country": "El Salvador"
},
{
"tld": "sy",
"country": "Syria"
},
{
"tld": "sz",
"country": "Eswatini"
},
{
"tld": "tc",
"country": "Turks and Caicos Islands (United Kingdom)"
},
{
"tld": "td",
"country": "Chad"
},
{
"tld": "tg",
"country": "Togo"
},
{
"tld": "th",
"country": "Thailand"
},
{
"tld": "tj",
"country": "Tajikistan"
},
{
"tld": "tl",
"country": "East Timor"
},
{
"tld": "tn",
"country": "Tunisia"
},
{
"tld": "tr",
"country": "Turkey"
},
{
"tld": "tt",
"country": "Trinidad and Tobago"
},
{
"tld": "tw",
"country": "Taiwan"
},
{
"tld": "tz",
"country": "Tanzania"
},
{
"tld": "ua",
"country": "Ukraine"
},
{
"tld": "ug",
"country": "Uganda"
},
{
"tld": "uk",
"country": "United Kingdom"
},
{
"tld": "us",
"country": "United States of America"
},
{
"tld": "uy",
"country": "Uruguay"
},
{
"tld": "uz",
"country": "Uzbekistan"
},
{
"tld": "va",
"country": "Vatican City"
},
{
"tld": "vc",
"country": "Saint Vincent and the Grenadines"
},
{
"tld": "ve",
"country": "Venezuela"
},
{
"tld": "vg",
"country": "British Virgin Islands (United Kingdom)"
},
{
"tld": "vi",
"country": "United States Virgin Islands (United States)"
},
{
"tld": "vn",
"country": "Vietnam"
},
{
"tld": "vu",
"country": "Vanuatu"
},
{
"tld": "wf",
"country": "Wallis and Futuna"
},
{
"tld": "ye",
"country": "Yemen"
},
{
"tld": "za",
"country": "South Africa"
},
{
"tld": "zm",
"country": "Zambia"
},
{
"tld": "zw",
"country": "Zimbabwe"
}
]
Regions
Citation:
“Data Page: World regions according to Maddison Project Database”, part of the following publication: Max Roser, Pablo Arriagada, Joe Hasell, Hannah Ritchie and Esteban Ortiz-Ospina (2023) - “Economic Growth”. Data adapted from Bolt and van Zanden. Retrieved from https://ourworldindata.org/grapher/world-regions-according-to-maddison-project-database [online resource]
JSON data: