Skip to content

Instantly share code, notes, and snippets.

@incredimike
Last active April 12, 2025 05:30
Show Gist options
  • Save incredimike/1469814 to your computer and use it in GitHub Desktop.
Save incredimike/1469814 to your computer and use it in GitHub Desktop.
List of Countries in various Javascript data structures: Alphabetical country lists & Country data objects.
// Lists of countries with ISO 3166 codes, presented in various formats.
// Last Updated: July 30, 2020
// If you're using PHP, I suggest checking out:
// https://github.com/thephpleague/iso3166
// or Laravel: https://github.com/squirephp/squire
//
// JS developers can check out:
// https://www.npmjs.com/package/iso3166-2-db
//
// License: CC0 1.0 Universal
// https://creativecommons.org/publicdomain/zero/1.0/
// List of all countries in a simple list / array.
// Sorted alphabetical by country name (special characters on bottom)
const countryList = [
"Afghanistan",
"Albania",
"Algeria",
"American Samoa",
"Andorra",
"Angola",
"Anguilla",
"Antarctica",
"Antigua and Barbuda",
"Argentina",
"Armenia",
"Aruba",
"Australia",
"Austria",
"Azerbaijan",
"Bahamas (the)",
"Bahrain",
"Bangladesh",
"Barbados",
"Belarus",
"Belgium",
"Belize",
"Benin",
"Bermuda",
"Bhutan",
"Bolivia (Plurinational State of)",
"Bonaire, Sint Eustatius and Saba",
"Bosnia and Herzegovina",
"Botswana",
"Bouvet Island",
"Brazil",
"British Indian Ocean Territory (the)",
"Brunei Darussalam",
"Bulgaria",
"Burkina Faso",
"Burundi",
"Cabo Verde",
"Cambodia",
"Cameroon",
"Canada",
"Cayman Islands (the)",
"Central African Republic (the)",
"Chad",
"Chile",
"China",
"Christmas Island",
"Cocos (Keeling) Islands (the)",
"Colombia",
"Comoros (the)",
"Congo (the Democratic Republic of the)",
"Congo (the)",
"Cook Islands (the)",
"Costa Rica",
"Croatia",
"Cuba",
"Curaรงao",
"Cyprus",
"Czechia",
"Cรดte d'Ivoire",
"Denmark",
"Djibouti",
"Dominica",
"Dominican Republic (the)",
"Ecuador",
"Egypt",
"El Salvador",
"Equatorial Guinea",
"Eritrea",
"Estonia",
"Eswatini",
"Ethiopia",
"Falkland Islands (the) [Malvinas]",
"Faroe Islands (the)",
"Fiji",
"Finland",
"France",
"French Guiana",
"French Polynesia",
"French Southern Territories (the)",
"Gabon",
"Gambia (the)",
"Georgia",
"Germany",
"Ghana",
"Gibraltar",
"Greece",
"Greenland",
"Grenada",
"Guadeloupe",
"Guam",
"Guatemala",
"Guernsey",
"Guinea",
"Guinea-Bissau",
"Guyana",
"Haiti",
"Heard Island and McDonald Islands",
"Holy See (the)",
"Honduras",
"Hong Kong",
"Hungary",
"Iceland",
"India",
"Indonesia",
"Iran (Islamic Republic of)",
"Iraq",
"Ireland",
"Isle of Man",
"Israel",
"Italy",
"Jamaica",
"Japan",
"Jersey",
"Jordan",
"Kazakhstan",
"Kenya",
"Kiribati",
"Korea (the Democratic People's Republic of)",
"Korea (the Republic of)",
"Kuwait",
"Kyrgyzstan",
"Lao People's Democratic Republic (the)",
"Latvia",
"Lebanon",
"Lesotho",
"Liberia",
"Libya",
"Liechtenstein",
"Lithuania",
"Luxembourg",
"Macao",
"Madagascar",
"Malawi",
"Malaysia",
"Maldives",
"Mali",
"Malta",
"Marshall Islands (the)",
"Martinique",
"Mauritania",
"Mauritius",
"Mayotte",
"Mexico",
"Micronesia (Federated States of)",
"Moldova (the Republic of)",
"Monaco",
"Mongolia",
"Montenegro",
"Montserrat",
"Morocco",
"Mozambique",
"Myanmar",
"Namibia",
"Nauru",
"Nepal",
"Netherlands (the)",
"New Caledonia",
"New Zealand",
"Nicaragua",
"Niger (the)",
"Nigeria",
"Niue",
"Norfolk Island",
"Northern Mariana Islands (the)",
"Norway",
"Oman",
"Pakistan",
"Palau",
"Palestine, State of",
"Panama",
"Papua New Guinea",
"Paraguay",
"Peru",
"Philippines (the)",
"Pitcairn",
"Poland",
"Portugal",
"Puerto Rico",
"Qatar",
"Republic of North Macedonia",
"Romania",
"Russian Federation (the)",
"Rwanda",
"Rรฉunion",
"Saint Barthรฉlemy",
"Saint Helena, Ascension and Tristan da Cunha",
"Saint Kitts and Nevis",
"Saint Lucia",
"Saint Martin (French part)",
"Saint Pierre and Miquelon",
"Saint Vincent and the Grenadines",
"Samoa",
"San Marino",
"Sao Tome and Principe",
"Saudi Arabia",
"Senegal",
"Serbia",
"Seychelles",
"Sierra Leone",
"Singapore",
"Sint Maarten (Dutch part)",
"Slovakia",
"Slovenia",
"Solomon Islands",
"Somalia",
"South Africa",
"South Georgia and the South Sandwich Islands",
"South Sudan",
"Spain",
"Sri Lanka",
"Sudan (the)",
"Suriname",
"Svalbard and Jan Mayen",
"Sweden",
"Switzerland",
"Syrian Arab Republic",
"Taiwan",
"Tajikistan",
"Tanzania, United Republic of",
"Thailand",
"Timor-Leste",
"Togo",
"Tokelau",
"Tonga",
"Trinidad and Tobago",
"Tunisia",
"Turkey",
"Turkmenistan",
"Turks and Caicos Islands (the)",
"Tuvalu",
"Uganda",
"Ukraine",
"United Arab Emirates (the)",
"United Kingdom of Great Britain and Northern Ireland (the)",
"United States Minor Outlying Islands (the)",
"United States of America (the)",
"Uruguay",
"Uzbekistan",
"Vanuatu",
"Venezuela (Bolivarian Republic of)",
"Viet Nam",
"Virgin Islands (British)",
"Virgin Islands (U.S.)",
"Wallis and Futuna",
"Western Sahara",
"Yemen",
"Zambia",
"Zimbabwe",
"ร…land Islands"
];
// Country names object using 2-letter country codes to reference country name
// ISO 3166 Alpha-2 Format: [2 letter Country Code]: [Country Name]
// Sorted alphabetical by country name (special characters on bottom)
const countryListAlpha2 = {
"AF": "Afghanistan",
"AL": "Albania",
"DZ": "Algeria",
"AS": "American Samoa",
"AD": "Andorra",
"AO": "Angola",
"AI": "Anguilla",
"AQ": "Antarctica",
"AG": "Antigua and Barbuda",
"AR": "Argentina",
"AM": "Armenia",
"AW": "Aruba",
"AU": "Australia",
"AT": "Austria",
"AZ": "Azerbaijan",
"BS": "Bahamas (the)",
"BH": "Bahrain",
"BD": "Bangladesh",
"BB": "Barbados",
"BY": "Belarus",
"BE": "Belgium",
"BZ": "Belize",
"BJ": "Benin",
"BM": "Bermuda",
"BT": "Bhutan",
"BO": "Bolivia (Plurinational State of)",
"BQ": "Bonaire, Sint Eustatius and Saba",
"BA": "Bosnia and Herzegovina",
"BW": "Botswana",
"BV": "Bouvet Island",
"BR": "Brazil",
"IO": "British Indian Ocean Territory (the)",
"BN": "Brunei Darussalam",
"BG": "Bulgaria",
"BF": "Burkina Faso",
"BI": "Burundi",
"CV": "Cabo Verde",
"KH": "Cambodia",
"CM": "Cameroon",
"CA": "Canada",
"KY": "Cayman Islands (the)",
"CF": "Central African Republic (the)",
"TD": "Chad",
"CL": "Chile",
"CN": "China",
"CX": "Christmas Island",
"CC": "Cocos (Keeling) Islands (the)",
"CO": "Colombia",
"KM": "Comoros (the)",
"CD": "Congo (the Democratic Republic of the)",
"CG": "Congo (the)",
"CK": "Cook Islands (the)",
"CR": "Costa Rica",
"HR": "Croatia",
"CU": "Cuba",
"CW": "Curaรงao",
"CY": "Cyprus",
"CZ": "Czechia",
"CI": "Cรดte d'Ivoire",
"DK": "Denmark",
"DJ": "Djibouti",
"DM": "Dominica",
"DO": "Dominican Republic (the)",
"EC": "Ecuador",
"EG": "Egypt",
"SV": "El Salvador",
"GQ": "Equatorial Guinea",
"ER": "Eritrea",
"EE": "Estonia",
"SZ": "Eswatini",
"ET": "Ethiopia",
"FK": "Falkland Islands (the) [Malvinas]",
"FO": "Faroe Islands (the)",
"FJ": "Fiji",
"FI": "Finland",
"FR": "France",
"GF": "French Guiana",
"PF": "French Polynesia",
"TF": "French Southern Territories (the)",
"GA": "Gabon",
"GM": "Gambia (the)",
"GE": "Georgia",
"DE": "Germany",
"GH": "Ghana",
"GI": "Gibraltar",
"GR": "Greece",
"GL": "Greenland",
"GD": "Grenada",
"GP": "Guadeloupe",
"GU": "Guam",
"GT": "Guatemala",
"GG": "Guernsey",
"GN": "Guinea",
"GW": "Guinea-Bissau",
"GY": "Guyana",
"HT": "Haiti",
"HM": "Heard Island and McDonald Islands",
"VA": "Holy See (the)",
"HN": "Honduras",
"HK": "Hong Kong",
"HU": "Hungary",
"IS": "Iceland",
"IN": "India",
"ID": "Indonesia",
"IR": "Iran (Islamic Republic of)",
"IQ": "Iraq",
"IE": "Ireland",
"IM": "Isle of Man",
"IL": "Israel",
"IT": "Italy",
"JM": "Jamaica",
"JP": "Japan",
"JE": "Jersey",
"JO": "Jordan",
"KZ": "Kazakhstan",
"KE": "Kenya",
"KI": "Kiribati",
"KP": "Korea (the Democratic People's Republic of)",
"KR": "Korea (the Republic of)",
"KW": "Kuwait",
"KG": "Kyrgyzstan",
"LA": "Lao People's Democratic Republic (the)",
"LV": "Latvia",
"LB": "Lebanon",
"LS": "Lesotho",
"LR": "Liberia",
"LY": "Libya",
"LI": "Liechtenstein",
"LT": "Lithuania",
"LU": "Luxembourg",
"MO": "Macao",
"MG": "Madagascar",
"MW": "Malawi",
"MY": "Malaysia",
"MV": "Maldives",
"ML": "Mali",
"MT": "Malta",
"MH": "Marshall Islands (the)",
"MQ": "Martinique",
"MR": "Mauritania",
"MU": "Mauritius",
"YT": "Mayotte",
"MX": "Mexico",
"FM": "Micronesia (Federated States of)",
"MD": "Moldova (the Republic of)",
"MC": "Monaco",
"MN": "Mongolia",
"ME": "Montenegro",
"MS": "Montserrat",
"MA": "Morocco",
"MZ": "Mozambique",
"MM": "Myanmar",
"NA": "Namibia",
"NR": "Nauru",
"NP": "Nepal",
"NL": "Netherlands (the)",
"NC": "New Caledonia",
"NZ": "New Zealand",
"NI": "Nicaragua",
"NE": "Niger (the)",
"NG": "Nigeria",
"NU": "Niue",
"NF": "Norfolk Island",
"MP": "Northern Mariana Islands (the)",
"NO": "Norway",
"OM": "Oman",
"PK": "Pakistan",
"PW": "Palau",
"PS": "Palestine, State of",
"PA": "Panama",
"PG": "Papua New Guinea",
"PY": "Paraguay",
"PE": "Peru",
"PH": "Philippines (the)",
"PN": "Pitcairn",
"PL": "Poland",
"PT": "Portugal",
"PR": "Puerto Rico",
"QA": "Qatar",
"MK": "Republic of North Macedonia",
"RO": "Romania",
"RU": "Russian Federation (the)",
"RW": "Rwanda",
"RE": "Rรฉunion",
"BL": "Saint Barthรฉlemy",
"SH": "Saint Helena, Ascension and Tristan da Cunha",
"KN": "Saint Kitts and Nevis",
"LC": "Saint Lucia",
"MF": "Saint Martin (French part)",
"PM": "Saint Pierre and Miquelon",
"VC": "Saint Vincent and the Grenadines",
"WS": "Samoa",
"SM": "San Marino",
"ST": "Sao Tome and Principe",
"SA": "Saudi Arabia",
"SN": "Senegal",
"RS": "Serbia",
"SC": "Seychelles",
"SL": "Sierra Leone",
"SG": "Singapore",
"SX": "Sint Maarten (Dutch part)",
"SK": "Slovakia",
"SI": "Slovenia",
"SB": "Solomon Islands",
"SO": "Somalia",
"ZA": "South Africa",
"GS": "South Georgia and the South Sandwich Islands",
"SS": "South Sudan",
"ES": "Spain",
"LK": "Sri Lanka",
"SD": "Sudan (the)",
"SR": "Suriname",
"SJ": "Svalbard and Jan Mayen",
"SE": "Sweden",
"CH": "Switzerland",
"SY": "Syrian Arab Republic",
"TW": "Taiwan",
"TJ": "Tajikistan",
"TZ": "Tanzania, United Republic of",
"TH": "Thailand",
"TL": "Timor-Leste",
"TG": "Togo",
"TK": "Tokelau",
"TO": "Tonga",
"TT": "Trinidad and Tobago",
"TN": "Tunisia",
"TR": "Turkey",
"TM": "Turkmenistan",
"TC": "Turks and Caicos Islands (the)",
"TV": "Tuvalu",
"UG": "Uganda",
"UA": "Ukraine",
"AE": "United Arab Emirates (the)",
"GB": "United Kingdom of Great Britain and Northern Ireland (the)",
"UM": "United States Minor Outlying Islands (the)",
"US": "United States of America (the)",
"UY": "Uruguay",
"UZ": "Uzbekistan",
"VU": "Vanuatu",
"VE": "Venezuela (Bolivarian Republic of)",
"VN": "Viet Nam",
"VG": "Virgin Islands (British)",
"VI": "Virgin Islands (U.S.)",
"WF": "Wallis and Futuna",
"EH": "Western Sahara",
"YE": "Yemen",
"ZM": "Zambia",
"ZW": "Zimbabwe",
"AX": "ร…land Islands"
};
// Country names object using 3-letter country codes to reference country name
// ISO 3166 Alpha-3 Format: [3 letter Country Code]: [Country Name]
// Sorted alphabetical by country name (special characters on bottom)
const countryListAlpha3 = {
"AFG": "Afghanistan",
"ALB": "Albania",
"DZA": "Algeria",
"ASM": "American Samoa",
"AND": "Andorra",
"AGO": "Angola",
"AIA": "Anguilla",
"ATA": "Antarctica",
"ATG": "Antigua and Barbuda",
"ARG": "Argentina",
"ARM": "Armenia",
"ABW": "Aruba",
"AUS": "Australia",
"AUT": "Austria",
"AZE": "Azerbaijan",
"BHS": "Bahamas (the)",
"BHR": "Bahrain",
"BGD": "Bangladesh",
"BRB": "Barbados",
"BLR": "Belarus",
"BEL": "Belgium",
"BLZ": "Belize",
"BEN": "Benin",
"BMU": "Bermuda",
"BTN": "Bhutan",
"BOL": "Bolivia (Plurinational State of)",
"BES": "Bonaire, Sint Eustatius and Saba",
"BIH": "Bosnia and Herzegovina",
"BWA": "Botswana",
"BVT": "Bouvet Island",
"BRA": "Brazil",
"IOT": "British Indian Ocean Territory (the)",
"BRN": "Brunei Darussalam",
"BGR": "Bulgaria",
"BFA": "Burkina Faso",
"BDI": "Burundi",
"CPV": "Cabo Verde",
"KHM": "Cambodia",
"CMR": "Cameroon",
"CAN": "Canada",
"CYM": "Cayman Islands (the)",
"CAF": "Central African Republic (the)",
"TCD": "Chad",
"CHL": "Chile",
"CHN": "China",
"CXR": "Christmas Island",
"CCK": "Cocos (Keeling) Islands (the)",
"COL": "Colombia",
"COM": "Comoros (the)",
"COD": "Congo (the Democratic Republic of the)",
"COG": "Congo (the)",
"COK": "Cook Islands (the)",
"CRI": "Costa Rica",
"HRV": "Croatia",
"CUB": "Cuba",
"CUW": "Curaรงao",
"CYP": "Cyprus",
"CZE": "Czechia",
"CIV": "Cรดte d'Ivoire",
"DNK": "Denmark",
"DJI": "Djibouti",
"DMA": "Dominica",
"DOM": "Dominican Republic (the)",
"ECU": "Ecuador",
"EGY": "Egypt",
"SLV": "El Salvador",
"GNQ": "Equatorial Guinea",
"ERI": "Eritrea",
"EST": "Estonia",
"SWZ": "Eswatini",
"ETH": "Ethiopia",
"FLK": "Falkland Islands (the) [Malvinas]",
"FRO": "Faroe Islands (the)",
"FJI": "Fiji",
"FIN": "Finland",
"FRA": "France",
"GUF": "French Guiana",
"PYF": "French Polynesia",
"ATF": "French Southern Territories (the)",
"GAB": "Gabon",
"GMB": "Gambia (the)",
"GEO": "Georgia",
"DEU": "Germany",
"GHA": "Ghana",
"GIB": "Gibraltar",
"GRC": "Greece",
"GRL": "Greenland",
"GRD": "Grenada",
"GLP": "Guadeloupe",
"GUM": "Guam",
"GTM": "Guatemala",
"GGY": "Guernsey",
"GIN": "Guinea",
"GNB": "Guinea-Bissau",
"GUY": "Guyana",
"HTI": "Haiti",
"HMD": "Heard Island and McDonald Islands",
"VAT": "Holy See (the)",
"HND": "Honduras",
"HKG": "Hong Kong",
"HUN": "Hungary",
"ISL": "Iceland",
"IND": "India",
"IDN": "Indonesia",
"IRN": "Iran (Islamic Republic of)",
"IRQ": "Iraq",
"IRL": "Ireland",
"IMN": "Isle of Man",
"ISR": "Israel",
"ITA": "Italy",
"JAM": "Jamaica",
"JPN": "Japan",
"JEY": "Jersey",
"JOR": "Jordan",
"KAZ": "Kazakhstan",
"KEN": "Kenya",
"KIR": "Kiribati",
"PRK": "Korea (the Democratic People's Republic of)",
"KOR": "Korea (the Republic of)",
"KWT": "Kuwait",
"KGZ": "Kyrgyzstan",
"LAO": "Lao People's Democratic Republic (the)",
"LVA": "Latvia",
"LBN": "Lebanon",
"LSO": "Lesotho",
"LBR": "Liberia",
"LBY": "Libya",
"LIE": "Liechtenstein",
"LTU": "Lithuania",
"LUX": "Luxembourg",
"MAC": "Macao",
"MDG": "Madagascar",
"MWI": "Malawi",
"MYS": "Malaysia",
"MDV": "Maldives",
"MLI": "Mali",
"MLT": "Malta",
"MHL": "Marshall Islands (the)",
"MTQ": "Martinique",
"MRT": "Mauritania",
"MUS": "Mauritius",
"MYT": "Mayotte",
"MEX": "Mexico",
"FSM": "Micronesia (Federated States of)",
"MDA": "Moldova (the Republic of)",
"MCO": "Monaco",
"MNG": "Mongolia",
"MNE": "Montenegro",
"MSR": "Montserrat",
"MAR": "Morocco",
"MOZ": "Mozambique",
"MMR": "Myanmar",
"NAM": "Namibia",
"NRU": "Nauru",
"NPL": "Nepal",
"NLD": "Netherlands (the)",
"NCL": "New Caledonia",
"NZL": "New Zealand",
"NIC": "Nicaragua",
"NER": "Niger (the)",
"NGA": "Nigeria",
"NIU": "Niue",
"NFK": "Norfolk Island",
"MNP": "Northern Mariana Islands (the)",
"NOR": "Norway",
"OMN": "Oman",
"PAK": "Pakistan",
"PLW": "Palau",
"PSE": "Palestine, State of",
"PAN": "Panama",
"PNG": "Papua New Guinea",
"PRY": "Paraguay",
"PER": "Peru",
"PHL": "Philippines (the)",
"PCN": "Pitcairn",
"POL": "Poland",
"PRT": "Portugal",
"PRI": "Puerto Rico",
"QAT": "Qatar",
"MKD": "Republic of North Macedonia",
"ROU": "Romania",
"RUS": "Russian Federation (the)",
"RWA": "Rwanda",
"REU": "Rรฉunion",
"BLM": "Saint Barthรฉlemy",
"SHN": "Saint Helena, Ascension and Tristan da Cunha",
"KNA": "Saint Kitts and Nevis",
"LCA": "Saint Lucia",
"MAF": "Saint Martin (French part)",
"SPM": "Saint Pierre and Miquelon",
"VCT": "Saint Vincent and the Grenadines",
"WSM": "Samoa",
"SMR": "San Marino",
"STP": "Sao Tome and Principe",
"SAU": "Saudi Arabia",
"SEN": "Senegal",
"SRB": "Serbia",
"SYC": "Seychelles",
"SLE": "Sierra Leone",
"SGP": "Singapore",
"SXM": "Sint Maarten (Dutch part)",
"SVK": "Slovakia",
"SVN": "Slovenia",
"SLB": "Solomon Islands",
"SOM": "Somalia",
"ZAF": "South Africa",
"SGS": "South Georgia and the South Sandwich Islands",
"SSD": "South Sudan",
"ESP": "Spain",
"LKA": "Sri Lanka",
"SDN": "Sudan (the)",
"SUR": "Suriname",
"SJM": "Svalbard and Jan Mayen",
"SWE": "Sweden",
"CHE": "Switzerland",
"SYR": "Syrian Arab Republic",
"TWN": "Taiwan",
"TJK": "Tajikistan",
"TZA": "Tanzania, United Republic of",
"THA": "Thailand",
"TLS": "Timor-Leste",
"TGO": "Togo",
"TKL": "Tokelau",
"TON": "Tonga",
"TTO": "Trinidad and Tobago",
"TUN": "Tunisia",
"TUR": "Turkey",
"TKM": "Turkmenistan",
"TCA": "Turks and Caicos Islands (the)",
"TUV": "Tuvalu",
"UGA": "Uganda",
"UKR": "Ukraine",
"ARE": "United Arab Emirates (the)",
"GBR": "United Kingdom of Great Britain and Northern Ireland (the)",
"UMI": "United States Minor Outlying Islands (the)",
"USA": "United States of America (the)",
"URY": "Uruguay",
"UZB": "Uzbekistan",
"VUT": "Vanuatu",
"VEN": "Venezuela (Bolivarian Republic of)",
"VNM": "Viet Nam",
"VGB": "Virgin Islands (British)",
"VIR": "Virgin Islands (U.S.)",
"WLF": "Wallis and Futuna",
"ESH": "Western Sahara",
"YEM": "Yemen",
"ZMB": "Zambia",
"ZWE": "Zimbabwe",
"ALA": "ร…land Islands"
};
// Country names object using numeric country codes to reference country name
// ISO 3166 Numberic Format: [Numeric Country Code]: [Country Name]
// Sorted alphabetical by country name (special characters on bottom)
const countryListNumeric = {
"004": "Afghanistan",
"008": "Albania",
"012": "Algeria",
"016": "American Samoa",
"020": "Andorra",
"024": "Angola",
"660": "Anguilla",
"010": "Antarctica",
"028": "Antigua and Barbuda",
"032": "Argentina",
"051": "Armenia",
"533": "Aruba",
"036": "Australia",
"040": "Austria",
"031": "Azerbaijan",
"044": "Bahamas (the)",
"048": "Bahrain",
"050": "Bangladesh",
"052": "Barbados",
"112": "Belarus",
"056": "Belgium",
"084": "Belize",
"204": "Benin",
"060": "Bermuda",
"064": "Bhutan",
"068": "Bolivia (Plurinational State of)",
"535": "Bonaire, Sint Eustatius and Saba",
"070": "Bosnia and Herzegovina",
"072": "Botswana",
"074": "Bouvet Island",
"076": "Brazil",
"086": "British Indian Ocean Territory (the)",
"096": "Brunei Darussalam",
"100": "Bulgaria",
"854": "Burkina Faso",
"108": "Burundi",
"132": "Cabo Verde",
"116": "Cambodia",
"120": "Cameroon",
"124": "Canada",
"136": "Cayman Islands (the)",
"140": "Central African Republic (the)",
"148": "Chad",
"152": "Chile",
"156": "China",
"162": "Christmas Island",
"166": "Cocos (Keeling) Islands (the)",
"170": "Colombia",
"174": "Comoros (the)",
"180": "Congo (the Democratic Republic of the)",
"178": "Congo (the)",
"184": "Cook Islands (the)",
"188": "Costa Rica",
"191": "Croatia",
"192": "Cuba",
"531": "Curaรงao",
"196": "Cyprus",
"203": "Czechia",
"384": "Cรดte d'Ivoire",
"208": "Denmark",
"262": "Djibouti",
"212": "Dominica",
"214": "Dominican Republic (the)",
"218": "Ecuador",
"818": "Egypt",
"222": "El Salvador",
"226": "Equatorial Guinea",
"232": "Eritrea",
"233": "Estonia",
"748": "Eswatini",
"231": "Ethiopia",
"238": "Falkland Islands (the) [Malvinas]",
"234": "Faroe Islands (the)",
"242": "Fiji",
"246": "Finland",
"250": "France",
"254": "French Guiana",
"258": "French Polynesia",
"260": "French Southern Territories (the)",
"266": "Gabon",
"270": "Gambia (the)",
"268": "Georgia",
"276": "Germany",
"288": "Ghana",
"292": "Gibraltar",
"300": "Greece",
"304": "Greenland",
"308": "Grenada",
"312": "Guadeloupe",
"316": "Guam",
"320": "Guatemala",
"831": "Guernsey",
"324": "Guinea",
"624": "Guinea-Bissau",
"328": "Guyana",
"332": "Haiti",
"334": "Heard Island and McDonald Islands",
"336": "Holy See (the)",
"340": "Honduras",
"344": "Hong Kong",
"348": "Hungary",
"352": "Iceland",
"356": "India",
"360": "Indonesia",
"364": "Iran (Islamic Republic of)",
"368": "Iraq",
"372": "Ireland",
"833": "Isle of Man",
"376": "Israel",
"380": "Italy",
"388": "Jamaica",
"392": "Japan",
"832": "Jersey",
"400": "Jordan",
"398": "Kazakhstan",
"404": "Kenya",
"296": "Kiribati",
"408": "Korea (the Democratic People's Republic of)",
"410": "Korea (the Republic of)",
"414": "Kuwait",
"417": "Kyrgyzstan",
"418": "Lao People's Democratic Republic (the)",
"428": "Latvia",
"422": "Lebanon",
"426": "Lesotho",
"430": "Liberia",
"434": "Libya",
"438": "Liechtenstein",
"440": "Lithuania",
"442": "Luxembourg",
"446": "Macao",
"450": "Madagascar",
"454": "Malawi",
"458": "Malaysia",
"462": "Maldives",
"466": "Mali",
"470": "Malta",
"584": "Marshall Islands (the)",
"474": "Martinique",
"478": "Mauritania",
"480": "Mauritius",
"175": "Mayotte",
"484": "Mexico",
"583": "Micronesia (Federated States of)",
"498": "Moldova (the Republic of)",
"492": "Monaco",
"496": "Mongolia",
"499": "Montenegro",
"500": "Montserrat",
"504": "Morocco",
"508": "Mozambique",
"104": "Myanmar",
"516": "Namibia",
"520": "Nauru",
"524": "Nepal",
"528": "Netherlands (the)",
"540": "New Caledonia",
"554": "New Zealand",
"558": "Nicaragua",
"562": "Niger (the)",
"566": "Nigeria",
"570": "Niue",
"574": "Norfolk Island",
"580": "Northern Mariana Islands (the)",
"578": "Norway",
"512": "Oman",
"586": "Pakistan",
"585": "Palau",
"275": "Palestine, State of",
"591": "Panama",
"598": "Papua New Guinea",
"600": "Paraguay",
"604": "Peru",
"608": "Philippines (the)",
"612": "Pitcairn",
"616": "Poland",
"620": "Portugal",
"630": "Puerto Rico",
"634": "Qatar",
"807": "Republic of North Macedonia",
"642": "Romania",
"643": "Russian Federation (the)",
"646": "Rwanda",
"638": "Rรฉunion",
"652": "Saint Barthรฉlemy",
"654": "Saint Helena, Ascension and Tristan da Cunha",
"659": "Saint Kitts and Nevis",
"662": "Saint Lucia",
"663": "Saint Martin (French part)",
"666": "Saint Pierre and Miquelon",
"670": "Saint Vincent and the Grenadines",
"882": "Samoa",
"674": "San Marino",
"678": "Sao Tome and Principe",
"682": "Saudi Arabia",
"686": "Senegal",
"688": "Serbia",
"690": "Seychelles",
"694": "Sierra Leone",
"702": "Singapore",
"534": "Sint Maarten (Dutch part)",
"703": "Slovakia",
"705": "Slovenia",
"090": "Solomon Islands",
"706": "Somalia",
"710": "South Africa",
"239": "South Georgia and the South Sandwich Islands",
"728": "South Sudan",
"724": "Spain",
"144": "Sri Lanka",
"729": "Sudan (the)",
"740": "Suriname",
"744": "Svalbard and Jan Mayen",
"752": "Sweden",
"756": "Switzerland",
"760": "Syrian Arab Republic",
"158": "Taiwan",
"762": "Tajikistan",
"834": "Tanzania, United Republic of",
"764": "Thailand",
"626": "Timor-Leste",
"768": "Togo",
"772": "Tokelau",
"776": "Tonga",
"780": "Trinidad and Tobago",
"788": "Tunisia",
"792": "Turkey",
"795": "Turkmenistan",
"796": "Turks and Caicos Islands (the)",
"798": "Tuvalu",
"800": "Uganda",
"804": "Ukraine",
"784": "United Arab Emirates (the)",
"826": "United Kingdom of Great Britain and Northern Ireland (the)",
"581": "United States Minor Outlying Islands (the)",
"840": "United States of America (the)",
"858": "Uruguay",
"860": "Uzbekistan",
"548": "Vanuatu",
"862": "Venezuela (Bolivarian Republic of)",
"704": "Viet Nam",
"092": "Virgin Islands (British)",
"850": "Virgin Islands (U.S.)",
"876": "Wallis and Futuna",
"732": "Western Sahara",
"887": "Yemen",
"894": "Zambia",
"716": "Zimbabwe",
"248": "ร…land Islands"
};
// All simple ISO 3166 country data
// including: 2-character, 3-character, full country name and numeric code.
// Sorted alphabetical by country name (special characters on bottom)
const countryListAllIsoData = [
{"code": "AF", "code3": "AFG", "name": "Afghanistan", "number": "004"},
{"code": "AL", "code3": "ALB", "name": "Albania", "number": "008"},
{"code": "DZ", "code3": "DZA", "name": "Algeria", "number": "012"},
{"code": "AS", "code3": "ASM", "name": "American Samoa", "number": "016"},
{"code": "AD", "code3": "AND", "name": "Andorra", "number": "020"},
{"code": "AO", "code3": "AGO", "name": "Angola", "number": "024"},
{"code": "AI", "code3": "AIA", "name": "Anguilla", "number": "660"},
{"code": "AQ", "code3": "ATA", "name": "Antarctica", "number": "010"},
{"code": "AG", "code3": "ATG", "name": "Antigua and Barbuda", "number": "028"},
{"code": "AR", "code3": "ARG", "name": "Argentina", "number": "032"},
{"code": "AM", "code3": "ARM", "name": "Armenia", "number": "051"},
{"code": "AW", "code3": "ABW", "name": "Aruba", "number": "533"},
{"code": "AU", "code3": "AUS", "name": "Australia", "number": "036"},
{"code": "AT", "code3": "AUT", "name": "Austria", "number": "040"},
{"code": "AZ", "code3": "AZE", "name": "Azerbaijan", "number": "031"},
{"code": "BS", "code3": "BHS", "name": "Bahamas (the)", "number": "044"},
{"code": "BH", "code3": "BHR", "name": "Bahrain", "number": "048"},
{"code": "BD", "code3": "BGD", "name": "Bangladesh", "number": "050"},
{"code": "BB", "code3": "BRB", "name": "Barbados", "number": "052"},
{"code": "BY", "code3": "BLR", "name": "Belarus", "number": "112"},
{"code": "BE", "code3": "BEL", "name": "Belgium", "number": "056"},
{"code": "BZ", "code3": "BLZ", "name": "Belize", "number": "084"},
{"code": "BJ", "code3": "BEN", "name": "Benin", "number": "204"},
{"code": "BM", "code3": "BMU", "name": "Bermuda", "number": "060"},
{"code": "BT", "code3": "BTN", "name": "Bhutan", "number": "064"},
{"code": "BO", "code3": "BOL", "name": "Bolivia (Plurinational State of)", "number": "068"},
{"code": "BQ", "code3": "BES", "name": "Bonaire, Sint Eustatius and Saba", "number": "535"},
{"code": "BA", "code3": "BIH", "name": "Bosnia and Herzegovina", "number": "070"},
{"code": "BW", "code3": "BWA", "name": "Botswana", "number": "072"},
{"code": "BV", "code3": "BVT", "name": "Bouvet Island", "number": "074"},
{"code": "BR", "code3": "BRA", "name": "Brazil", "number": "076"},
{"code": "IO", "code3": "IOT", "name": "British Indian Ocean Territory (the)", "number": "086"},
{"code": "BN", "code3": "BRN", "name": "Brunei Darussalam", "number": "096"},
{"code": "BG", "code3": "BGR", "name": "Bulgaria", "number": "100"},
{"code": "BF", "code3": "BFA", "name": "Burkina Faso", "number": "854"},
{"code": "BI", "code3": "BDI", "name": "Burundi", "number": "108"},
{"code": "CV", "code3": "CPV", "name": "Cabo Verde", "number": "132"},
{"code": "KH", "code3": "KHM", "name": "Cambodia", "number": "116"},
{"code": "CM", "code3": "CMR", "name": "Cameroon", "number": "120"},
{"code": "CA", "code3": "CAN", "name": "Canada", "number": "124"},
{"code": "KY", "code3": "CYM", "name": "Cayman Islands (the)", "number": "136"},
{"code": "CF", "code3": "CAF", "name": "Central African Republic (the)", "number": "140"},
{"code": "TD", "code3": "TCD", "name": "Chad", "number": "148"},
{"code": "CL", "code3": "CHL", "name": "Chile", "number": "152"},
{"code": "CN", "code3": "CHN", "name": "China", "number": "156"},
{"code": "CX", "code3": "CXR", "name": "Christmas Island", "number": "162"},
{"code": "CC", "code3": "CCK", "name": "Cocos (Keeling) Islands (the)", "number": "166"},
{"code": "CO", "code3": "COL", "name": "Colombia", "number": "170"},
{"code": "KM", "code3": "COM", "name": "Comoros (the)", "number": "174"},
{"code": "CD", "code3": "COD", "name": "Congo (the Democratic Republic of the)", "number": "180"},
{"code": "CG", "code3": "COG", "name": "Congo (the)", "number": "178"},
{"code": "CK", "code3": "COK", "name": "Cook Islands (the)", "number": "184"},
{"code": "CR", "code3": "CRI", "name": "Costa Rica", "number": "188"},
{"code": "HR", "code3": "HRV", "name": "Croatia", "number": "191"},
{"code": "CU", "code3": "CUB", "name": "Cuba", "number": "192"},
{"code": "CW", "code3": "CUW", "name": "Curaรงao", "number": "531"},
{"code": "CY", "code3": "CYP", "name": "Cyprus", "number": "196"},
{"code": "CZ", "code3": "CZE", "name": "Czechia", "number": "203"},
{"code": "CI", "code3": "CIV", "name": "Cรดte d'Ivoire", "number": "384"},
{"code": "DK", "code3": "DNK", "name": "Denmark", "number": "208"},
{"code": "DJ", "code3": "DJI", "name": "Djibouti", "number": "262"},
{"code": "DM", "code3": "DMA", "name": "Dominica", "number": "212"},
{"code": "DO", "code3": "DOM", "name": "Dominican Republic (the)", "number": "214"},
{"code": "EC", "code3": "ECU", "name": "Ecuador", "number": "218"},
{"code": "EG", "code3": "EGY", "name": "Egypt", "number": "818"},
{"code": "SV", "code3": "SLV", "name": "El Salvador", "number": "222"},
{"code": "GQ", "code3": "GNQ", "name": "Equatorial Guinea", "number": "226"},
{"code": "ER", "code3": "ERI", "name": "Eritrea", "number": "232"},
{"code": "EE", "code3": "EST", "name": "Estonia", "number": "233"},
{"code": "SZ", "code3": "SWZ", "name": "Eswatini", "number": "748"},
{"code": "ET", "code3": "ETH", "name": "Ethiopia", "number": "231"},
{"code": "FK", "code3": "FLK", "name": "Falkland Islands (the) [Malvinas]", "number": "238"},
{"code": "FO", "code3": "FRO", "name": "Faroe Islands (the)", "number": "234"},
{"code": "FJ", "code3": "FJI", "name": "Fiji", "number": "242"},
{"code": "FI", "code3": "FIN", "name": "Finland", "number": "246"},
{"code": "FR", "code3": "FRA", "name": "France", "number": "250"},
{"code": "GF", "code3": "GUF", "name": "French Guiana", "number": "254"},
{"code": "PF", "code3": "PYF", "name": "French Polynesia", "number": "258"},
{"code": "TF", "code3": "ATF", "name": "French Southern Territories (the)", "number": "260"},
{"code": "GA", "code3": "GAB", "name": "Gabon", "number": "266"},
{"code": "GM", "code3": "GMB", "name": "Gambia (the)", "number": "270"},
{"code": "GE", "code3": "GEO", "name": "Georgia", "number": "268"},
{"code": "DE", "code3": "DEU", "name": "Germany", "number": "276"},
{"code": "GH", "code3": "GHA", "name": "Ghana", "number": "288"},
{"code": "GI", "code3": "GIB", "name": "Gibraltar", "number": "292"},
{"code": "GR", "code3": "GRC", "name": "Greece", "number": "300"},
{"code": "GL", "code3": "GRL", "name": "Greenland", "number": "304"},
{"code": "GD", "code3": "GRD", "name": "Grenada", "number": "308"},
{"code": "GP", "code3": "GLP", "name": "Guadeloupe", "number": "312"},
{"code": "GU", "code3": "GUM", "name": "Guam", "number": "316"},
{"code": "GT", "code3": "GTM", "name": "Guatemala", "number": "320"},
{"code": "GG", "code3": "GGY", "name": "Guernsey", "number": "831"},
{"code": "GN", "code3": "GIN", "name": "Guinea", "number": "324"},
{"code": "GW", "code3": "GNB", "name": "Guinea-Bissau", "number": "624"},
{"code": "GY", "code3": "GUY", "name": "Guyana", "number": "328"},
{"code": "HT", "code3": "HTI", "name": "Haiti", "number": "332"},
{"code": "HM", "code3": "HMD", "name": "Heard Island and McDonald Islands", "number": "334"},
{"code": "VA", "code3": "VAT", "name": "Holy See (the)", "number": "336"},
{"code": "HN", "code3": "HND", "name": "Honduras", "number": "340"},
{"code": "HK", "code3": "HKG", "name": "Hong Kong", "number": "344"},
{"code": "HU", "code3": "HUN", "name": "Hungary", "number": "348"},
{"code": "IS", "code3": "ISL", "name": "Iceland", "number": "352"},
{"code": "IN", "code3": "IND", "name": "India", "number": "356"},
{"code": "ID", "code3": "IDN", "name": "Indonesia", "number": "360"},
{"code": "IR", "code3": "IRN", "name": "Iran (Islamic Republic of)", "number": "364"},
{"code": "IQ", "code3": "IRQ", "name": "Iraq", "number": "368"},
{"code": "IE", "code3": "IRL", "name": "Ireland", "number": "372"},
{"code": "IM", "code3": "IMN", "name": "Isle of Man", "number": "833"},
{"code": "IL", "code3": "ISR", "name": "Israel", "number": "376"},
{"code": "IT", "code3": "ITA", "name": "Italy", "number": "380"},
{"code": "JM", "code3": "JAM", "name": "Jamaica", "number": "388"},
{"code": "JP", "code3": "JPN", "name": "Japan", "number": "392"},
{"code": "JE", "code3": "JEY", "name": "Jersey", "number": "832"},
{"code": "JO", "code3": "JOR", "name": "Jordan", "number": "400"},
{"code": "KZ", "code3": "KAZ", "name": "Kazakhstan", "number": "398"},
{"code": "KE", "code3": "KEN", "name": "Kenya", "number": "404"},
{"code": "KI", "code3": "KIR", "name": "Kiribati", "number": "296"},
{"code": "KP", "code3": "PRK", "name": "Korea (the Democratic People's Republic of)", "number": "408"},
{"code": "KR", "code3": "KOR", "name": "Korea (the Republic of)", "number": "410"},
{"code": "KW", "code3": "KWT", "name": "Kuwait", "number": "414"},
{"code": "KG", "code3": "KGZ", "name": "Kyrgyzstan", "number": "417"},
{"code": "LA", "code3": "LAO", "name": "Lao People's Democratic Republic (the)", "number": "418"},
{"code": "LV", "code3": "LVA", "name": "Latvia", "number": "428"},
{"code": "LB", "code3": "LBN", "name": "Lebanon", "number": "422"},
{"code": "LS", "code3": "LSO", "name": "Lesotho", "number": "426"},
{"code": "LR", "code3": "LBR", "name": "Liberia", "number": "430"},
{"code": "LY", "code3": "LBY", "name": "Libya", "number": "434"},
{"code": "LI", "code3": "LIE", "name": "Liechtenstein", "number": "438"},
{"code": "LT", "code3": "LTU", "name": "Lithuania", "number": "440"},
{"code": "LU", "code3": "LUX", "name": "Luxembourg", "number": "442"},
{"code": "MO", "code3": "MAC", "name": "Macao", "number": "446"},
{"code": "MG", "code3": "MDG", "name": "Madagascar", "number": "450"},
{"code": "MW", "code3": "MWI", "name": "Malawi", "number": "454"},
{"code": "MY", "code3": "MYS", "name": "Malaysia", "number": "458"},
{"code": "MV", "code3": "MDV", "name": "Maldives", "number": "462"},
{"code": "ML", "code3": "MLI", "name": "Mali", "number": "466"},
{"code": "MT", "code3": "MLT", "name": "Malta", "number": "470"},
{"code": "MH", "code3": "MHL", "name": "Marshall Islands (the)", "number": "584"},
{"code": "MQ", "code3": "MTQ", "name": "Martinique", "number": "474"},
{"code": "MR", "code3": "MRT", "name": "Mauritania", "number": "478"},
{"code": "MU", "code3": "MUS", "name": "Mauritius", "number": "480"},
{"code": "YT", "code3": "MYT", "name": "Mayotte", "number": "175"},
{"code": "MX", "code3": "MEX", "name": "Mexico", "number": "484"},
{"code": "FM", "code3": "FSM", "name": "Micronesia (Federated States of)", "number": "583"},
{"code": "MD", "code3": "MDA", "name": "Moldova (the Republic of)", "number": "498"},
{"code": "MC", "code3": "MCO", "name": "Monaco", "number": "492"},
{"code": "MN", "code3": "MNG", "name": "Mongolia", "number": "496"},
{"code": "ME", "code3": "MNE", "name": "Montenegro", "number": "499"},
{"code": "MS", "code3": "MSR", "name": "Montserrat", "number": "500"},
{"code": "MA", "code3": "MAR", "name": "Morocco", "number": "504"},
{"code": "MZ", "code3": "MOZ", "name": "Mozambique", "number": "508"},
{"code": "MM", "code3": "MMR", "name": "Myanmar", "number": "104"},
{"code": "NA", "code3": "NAM", "name": "Namibia", "number": "516"},
{"code": "NR", "code3": "NRU", "name": "Nauru", "number": "520"},
{"code": "NP", "code3": "NPL", "name": "Nepal", "number": "524"},
{"code": "NL", "code3": "NLD", "name": "Netherlands (the)", "number": "528"},
{"code": "NC", "code3": "NCL", "name": "New Caledonia", "number": "540"},
{"code": "NZ", "code3": "NZL", "name": "New Zealand", "number": "554"},
{"code": "NI", "code3": "NIC", "name": "Nicaragua", "number": "558"},
{"code": "NE", "code3": "NER", "name": "Niger (the)", "number": "562"},
{"code": "NG", "code3": "NGA", "name": "Nigeria", "number": "566"},
{"code": "NU", "code3": "NIU", "name": "Niue", "number": "570"},
{"code": "NF", "code3": "NFK", "name": "Norfolk Island", "number": "574"},
{"code": "MP", "code3": "MNP", "name": "Northern Mariana Islands (the)", "number": "580"},
{"code": "NO", "code3": "NOR", "name": "Norway", "number": "578"},
{"code": "OM", "code3": "OMN", "name": "Oman", "number": "512"},
{"code": "PK", "code3": "PAK", "name": "Pakistan", "number": "586"},
{"code": "PW", "code3": "PLW", "name": "Palau", "number": "585"},
{"code": "PS", "code3": "PSE", "name": "Palestine, State of", "number": "275"},
{"code": "PA", "code3": "PAN", "name": "Panama", "number": "591"},
{"code": "PG", "code3": "PNG", "name": "Papua New Guinea", "number": "598"},
{"code": "PY", "code3": "PRY", "name": "Paraguay", "number": "600"},
{"code": "PE", "code3": "PER", "name": "Peru", "number": "604"},
{"code": "PH", "code3": "PHL", "name": "Philippines (the)", "number": "608"},
{"code": "PN", "code3": "PCN", "name": "Pitcairn", "number": "612"},
{"code": "PL", "code3": "POL", "name": "Poland", "number": "616"},
{"code": "PT", "code3": "PRT", "name": "Portugal", "number": "620"},
{"code": "PR", "code3": "PRI", "name": "Puerto Rico", "number": "630"},
{"code": "QA", "code3": "QAT", "name": "Qatar", "number": "634"},
{"code": "MK", "code3": "MKD", "name": "Republic of North Macedonia", "number": "807"},
{"code": "RO", "code3": "ROU", "name": "Romania", "number": "642"},
{"code": "RU", "code3": "RUS", "name": "Russian Federation (the)", "number": "643"},
{"code": "RW", "code3": "RWA", "name": "Rwanda", "number": "646"},
{"code": "RE", "code3": "REU", "name": "Rรฉunion", "number": "638"},
{"code": "BL", "code3": "BLM", "name": "Saint Barthรฉlemy", "number": "652"},
{"code": "SH", "code3": "SHN", "name": "Saint Helena, Ascension and Tristan da Cunha", "number": "654"},
{"code": "KN", "code3": "KNA", "name": "Saint Kitts and Nevis", "number": "659"},
{"code": "LC", "code3": "LCA", "name": "Saint Lucia", "number": "662"},
{"code": "MF", "code3": "MAF", "name": "Saint Martin (French part)", "number": "663"},
{"code": "PM", "code3": "SPM", "name": "Saint Pierre and Miquelon", "number": "666"},
{"code": "VC", "code3": "VCT", "name": "Saint Vincent and the Grenadines", "number": "670"},
{"code": "WS", "code3": "WSM", "name": "Samoa", "number": "882"},
{"code": "SM", "code3": "SMR", "name": "San Marino", "number": "674"},
{"code": "ST", "code3": "STP", "name": "Sao Tome and Principe", "number": "678"},
{"code": "SA", "code3": "SAU", "name": "Saudi Arabia", "number": "682"},
{"code": "SN", "code3": "SEN", "name": "Senegal", "number": "686"},
{"code": "RS", "code3": "SRB", "name": "Serbia", "number": "688"},
{"code": "SC", "code3": "SYC", "name": "Seychelles", "number": "690"},
{"code": "SL", "code3": "SLE", "name": "Sierra Leone", "number": "694"},
{"code": "SG", "code3": "SGP", "name": "Singapore", "number": "702"},
{"code": "SX", "code3": "SXM", "name": "Sint Maarten (Dutch part)", "number": "534"},
{"code": "SK", "code3": "SVK", "name": "Slovakia", "number": "703"},
{"code": "SI", "code3": "SVN", "name": "Slovenia", "number": "705"},
{"code": "SB", "code3": "SLB", "name": "Solomon Islands", "number": "090"},
{"code": "SO", "code3": "SOM", "name": "Somalia", "number": "706"},
{"code": "ZA", "code3": "ZAF", "name": "South Africa", "number": "710"},
{"code": "GS", "code3": "SGS", "name": "South Georgia and the South Sandwich Islands", "number": "239"},
{"code": "SS", "code3": "SSD", "name": "South Sudan", "number": "728"},
{"code": "ES", "code3": "ESP", "name": "Spain", "number": "724"},
{"code": "LK", "code3": "LKA", "name": "Sri Lanka", "number": "144"},
{"code": "SD", "code3": "SDN", "name": "Sudan (the)", "number": "729"},
{"code": "SR", "code3": "SUR", "name": "Suriname", "number": "740"},
{"code": "SJ", "code3": "SJM", "name": "Svalbard and Jan Mayen", "number": "744"},
{"code": "SE", "code3": "SWE", "name": "Sweden", "number": "752"},
{"code": "CH", "code3": "CHE", "name": "Switzerland", "number": "756"},
{"code": "SY", "code3": "SYR", "name": "Syrian Arab Republic", "number": "760"},
{"code": "TW", "code3": "TWN", "name": "Taiwan", "number": "158"},
{"code": "TJ", "code3": "TJK", "name": "Tajikistan", "number": "762"},
{"code": "TZ", "code3": "TZA", "name": "Tanzania, United Republic of", "number": "834"},
{"code": "TH", "code3": "THA", "name": "Thailand", "number": "764"},
{"code": "TL", "code3": "TLS", "name": "Timor-Leste", "number": "626"},
{"code": "TG", "code3": "TGO", "name": "Togo", "number": "768"},
{"code": "TK", "code3": "TKL", "name": "Tokelau", "number": "772"},
{"code": "TO", "code3": "TON", "name": "Tonga", "number": "776"},
{"code": "TT", "code3": "TTO", "name": "Trinidad and Tobago", "number": "780"},
{"code": "TN", "code3": "TUN", "name": "Tunisia", "number": "788"},
{"code": "TR", "code3": "TUR", "name": "Turkey", "number": "792"},
{"code": "TM", "code3": "TKM", "name": "Turkmenistan", "number": "795"},
{"code": "TC", "code3": "TCA", "name": "Turks and Caicos Islands (the)", "number": "796"},
{"code": "TV", "code3": "TUV", "name": "Tuvalu", "number": "798"},
{"code": "UG", "code3": "UGA", "name": "Uganda", "number": "800"},
{"code": "UA", "code3": "UKR", "name": "Ukraine", "number": "804"},
{"code": "AE", "code3": "ARE", "name": "United Arab Emirates (the)", "number": "784"},
{"code": "GB", "code3": "GBR", "name": "United Kingdom of Great Britain and Northern Ireland (the)", "number": "826"},
{"code": "UM", "code3": "UMI", "name": "United States Minor Outlying Islands (the)", "number": "581"},
{"code": "US", "code3": "USA", "name": "United States of America (the)", "number": "840"},
{"code": "UY", "code3": "URY", "name": "Uruguay", "number": "858"},
{"code": "UZ", "code3": "UZB", "name": "Uzbekistan", "number": "860"},
{"code": "VU", "code3": "VUT", "name": "Vanuatu", "number": "548"},
{"code": "VE", "code3": "VEN", "name": "Venezuela (Bolivarian Republic of)", "number": "862"},
{"code": "VN", "code3": "VNM", "name": "Viet Nam", "number": "704"},
{"code": "VG", "code3": "VGB", "name": "Virgin Islands (British)", "number": "092"},
{"code": "VI", "code3": "VIR", "name": "Virgin Islands (U.S.)", "number": "850"},
{"code": "WF", "code3": "WLF", "name": "Wallis and Futuna", "number": "876"},
{"code": "EH", "code3": "ESH", "name": "Western Sahara", "number": "732"},
{"code": "YE", "code3": "YEM", "name": "Yemen", "number": "887"},
{"code": "ZM", "code3": "ZMB", "name": "Zambia", "number": "894"},
{"code": "ZW", "code3": "ZWE", "name": "Zimbabwe", "number": "716"},
{"code": "AX", "code3": "ALA", "name": "ร…land Islands", "number": "248"}
];
@dinh-khuong
Copy link

[
{
"name": "Afghanistan",
"code": "AF",
"timezone": "Afghanistan Standard Time",
"utc": "UTC+04:30",
"mobileCode": "+93",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ซ"
},
{
"name": "ร…land Islands",
"code": "AX",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+358-18",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ฝ"
},
{
"name": "Albania",
"code": "AL",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+355",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ฑ"
},
{
"name": "Algeria",
"code": "DZ",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+213",
"flag": "๐Ÿ‡ฉ๐Ÿ‡ฟ"
},
{
"name": "American Samoa",
"code": "AS",
"timezone": "UTC-11",
"utc": "UTC-11:00",
"mobileCode": "+1-684",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ธ"
},
{
"name": "Andorra",
"code": "AD",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+376",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ฉ"
},
{
"name": "Angola",
"code": "AO",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+244",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ด"
},
{
"name": "Anguilla",
"code": "AI",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-264",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ฎ"
},
{
"name": "Antarctica",
"code": "AQ",
"timezone": "Pacific SA Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ถ"
},
{
"name": "Antigua and Barbuda",
"code": "AG",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-268",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ฌ"
},
{
"name": "Argentina",
"code": "AR",
"timezone": "Argentina Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+54",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ท"
},
{
"name": "Armenia",
"code": "AM",
"timezone": "Caucasus Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+374",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ฒ"
},
{
"name": "Aruba",
"code": "AW",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+297",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ผ"
},
{
"name": "Australia",
"code": "AU",
"timezone": "AUS Eastern Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+61",
"flag": "๐Ÿ‡ฆ๐Ÿ‡บ"
},
{
"name": "Austria",
"code": "AT",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+43",
"flag": "๐Ÿ‡ฆ๐Ÿ‡น"
},
{
"name": "Azerbaijan",
"code": "AZ",
"timezone": "Azerbaijan Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+994",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ฟ"
},
{
"name": "Bahamas, The",
"code": "BS",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-242",
"flag": "๐Ÿ‡ง๐Ÿ‡ธ"
},
{
"name": "Bahrain",
"code": "BH",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+973",
"flag": "๐Ÿ‡ง๐Ÿ‡ญ"
},
{
"name": "Bangladesh",
"code": "BD",
"timezone": "Bangladesh Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+880",
"flag": "๐Ÿ‡ง๐Ÿ‡ฉ"
},
{
"name": "Barbados",
"code": "BB",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-246",
"flag": "๐Ÿ‡ง๐Ÿ‡ง"
},
{
"name": "Belarus",
"code": "BY",
"timezone": "Belarus Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+375",
"flag": "๐Ÿ‡ง๐Ÿ‡พ"
},
{
"name": "Belgium",
"code": "BE",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+32",
"flag": "๐Ÿ‡ง๐Ÿ‡ช"
},
{
"name": "Belize",
"code": "BZ",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+501",
"flag": "๐Ÿ‡ง๐Ÿ‡ฟ"
},
{
"name": "Benin",
"code": "BJ",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+229",
"flag": "๐Ÿ‡ง๐Ÿ‡ฏ"
},
{
"name": "Bermuda",
"code": "BM",
"timezone": "Atlantic Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-441",
"flag": "๐Ÿ‡ง๐Ÿ‡ฒ"
},
{
"name": "Bhutan",
"code": "BT",
"timezone": "Bangladesh Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+975",
"flag": "๐Ÿ‡ง๐Ÿ‡น"
},
{
"name": "Bolivarian Republic of Venezuela",
"code": "VE",
"timezone": "Venezuela Standard Time",
"utc": "UTC-04:30",
"mobileCode": "+58",
"flag": "๐Ÿ‡ป๐Ÿ‡ช"
},
{
"name": "Bolivia",
"code": "BO",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+591",
"flag": "๐Ÿ‡ง๐Ÿ‡ด"
},
{
"name": "Bonaire, Sint Eustatius and Saba",
"code": "BQ",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+599",
"flag": "๐Ÿ‡ง๐Ÿ‡ถ"
},
{
"name": "Bosnia and Herzegovina",
"code": "BA",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+387",
"flag": "๐Ÿ‡ง๐Ÿ‡ฆ"
},
{
"name": "Botswana",
"code": "BW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+267",
"flag": "๐Ÿ‡ง๐Ÿ‡ผ"
},
{
"name": "Bouvet Island",
"code": "BV",
"timezone": "UTC",
"utc": "UTC",
"mobileCode": "+",
"flag": "๐Ÿ‡ง๐Ÿ‡ป"
},
{
"name": "Brazil",
"code": "BR",
"timezone": "E. South America Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+55",
"flag": "๐Ÿ‡ง๐Ÿ‡ท"
},
{
"name": "British Indian Ocean Territory",
"code": "IO",
"timezone": "Central Asia Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+246",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ด"
},
{
"name": "Brunei",
"code": "BN",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+673",
"flag": "๐Ÿ‡ง๐Ÿ‡ณ"
},
{
"name": "Bulgaria",
"code": "BG",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+359",
"flag": "๐Ÿ‡ง๐Ÿ‡ฌ"
},
{
"name": "Burkina Faso",
"code": "BF",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+226",
"flag": "๐Ÿ‡ง๐Ÿ‡ซ"
},
{
"name": "Burundi",
"code": "BI",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+257",
"flag": "๐Ÿ‡ง๐Ÿ‡ฎ"
},
{
"name": "Cabo Verde",
"code": "CV",
"timezone": "Cape Verde Standard Time",
"utc": "UTC-01:00",
"mobileCode": "+238",
"flag": "๐Ÿ‡จ๐Ÿ‡ป"
},
{
"name": "Cambodia",
"code": "KH",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+855",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ญ"
},
{
"name": "Cameroon",
"code": "CM",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+237",
"flag": "๐Ÿ‡จ๐Ÿ‡ฒ"
},
{
"name": "Canada",
"code": "CA",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1",
"flag": "๐Ÿ‡จ๐Ÿ‡ฆ"
},
{
"name": "Cayman Islands",
"code": "KY",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-345",
"flag": "๐Ÿ‡ฐ๐Ÿ‡พ"
},
{
"name": "Central African Republic",
"code": "CF",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+236",
"flag": "๐Ÿ‡จ๐Ÿ‡ซ"
},
{
"name": "Chad",
"code": "TD",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+235",
"flag": "๐Ÿ‡น๐Ÿ‡ฉ"
},
{
"name": "Chile",
"code": "CL",
"timezone": "Pacific SA Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+56",
"flag": "๐Ÿ‡จ๐Ÿ‡ฑ"
},
{
"name": "China",
"code": "CN",
"timezone": "China Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+86",
"flag": "๐Ÿ‡จ๐Ÿ‡ณ"
},
{
"name": "Christmas Island",
"code": "CX",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+61",
"flag": "๐Ÿ‡จ๐Ÿ‡ฝ"
},
{
"name": "Cocos (Keeling) Islands",
"code": "CC",
"timezone": "Myanmar Standard Time",
"utc": "UTC+06:30",
"mobileCode": "+61",
"flag": "๐Ÿ‡จ๐Ÿ‡จ"
},
{
"name": "Colombia",
"code": "CO",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+57",
"flag": "๐Ÿ‡จ๐Ÿ‡ด"
},
{
"name": "Comoros",
"code": "KM",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+269",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ฒ"
},
{
"name": "Congo",
"code": "CG",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+242",
"flag": "๐Ÿ‡จ๐Ÿ‡ฌ"
},
{
"name": "Congo (DRC)",
"code": "CD",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+243",
"flag": "๐Ÿ‡จ๐Ÿ‡ฉ"
},
{
"name": "Cook Islands",
"code": "CK",
"timezone": "Hawaiian Standard Time",
"utc": "UTC-10:00",
"mobileCode": "+682",
"flag": "๐Ÿ‡จ๐Ÿ‡ฐ"
},
{
"name": "Costa Rica",
"code": "CR",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+506",
"flag": "๐Ÿ‡จ๐Ÿ‡ท"
},
{
"name": "Cรดte d'Ivoire",
"code": "CI",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+225",
"flag": "๐Ÿ‡จ๐Ÿ‡ฎ"
},
{
"name": "Croatia",
"code": "HR",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+385",
"flag": "๐Ÿ‡ญ๐Ÿ‡ท"
},
{
"name": "Cuba",
"code": "CU",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+53",
"flag": "๐Ÿ‡จ๐Ÿ‡บ"
},
{
"name": "Curaรงao",
"code": "CW",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+599",
"flag": "๐Ÿ‡จ๐Ÿ‡ผ"
},
{
"name": "Cyprus",
"code": "CY",
"timezone": "E. Europe Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+357",
"flag": "๐Ÿ‡จ๐Ÿ‡พ"
},
{
"name": "Czech Republic",
"code": "CZ",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+420",
"flag": "๐Ÿ‡จ๐Ÿ‡ฟ"
},
{
"name": "Democratic Republic of Timor-Leste",
"code": "TL",
"timezone": "Tokyo Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+670",
"flag": "๐Ÿ‡น๐Ÿ‡ฑ"
},
{
"name": "Denmark",
"code": "DK",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+45",
"flag": "๐Ÿ‡ฉ๐Ÿ‡ฐ"
},
{
"name": "Djibouti",
"code": "DJ",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+253",
"flag": "๐Ÿ‡ฉ๐Ÿ‡ฏ"
},
{
"name": "Dominica",
"code": "DM",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-767",
"flag": "๐Ÿ‡ฉ๐Ÿ‡ฒ"
},
{
"name": "Dominican Republic",
"code": "DO",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-809 and 1-829",
"flag": "๐Ÿ‡ฉ๐Ÿ‡ด"
},
{
"name": "Ecuador",
"code": "EC",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+593",
"flag": "๐Ÿ‡ช๐Ÿ‡จ"
},
{
"name": "Egypt",
"code": "EG",
"timezone": "Egypt Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+20",
"flag": "๐Ÿ‡ช๐Ÿ‡ฌ"
},
{
"name": "El Salvador",
"code": "SV",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+503",
"flag": "๐Ÿ‡ธ๐Ÿ‡ป"
},
{
"name": "Equatorial Guinea",
"code": "GQ",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+240",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ถ"
},
{
"name": "Eritrea",
"code": "ER",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+291",
"flag": "๐Ÿ‡ช๐Ÿ‡ท"
},
{
"name": "Estonia",
"code": "EE",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+372",
"flag": "๐Ÿ‡ช๐Ÿ‡ช"
},
{
"name": "Ethiopia",
"code": "ET",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+251",
"flag": "๐Ÿ‡ช๐Ÿ‡น"
},
{
"name": "Falkland Islands (Islas Malvinas)",
"code": "FK",
"timezone": "SA Eastern Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+500",
"flag": "๐Ÿ‡ซ๐Ÿ‡ฐ"
},
{
"name": "Faroe Islands",
"code": "FO",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+298",
"flag": "๐Ÿ‡ซ๐Ÿ‡ด"
},
{
"name": "Fiji Islands",
"code": "FJ",
"timezone": "Fiji Standard Time",
"utc": "UTC+12:00",
"mobileCode": "+679",
"flag": "๐Ÿ‡ซ๐Ÿ‡ฏ"
},
{
"name": "Finland",
"code": "FI",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+358",
"flag": "๐Ÿ‡ซ๐Ÿ‡ฎ"
},
{
"name": "France",
"code": "FR",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+33",
"flag": "๐Ÿ‡ซ๐Ÿ‡ท"
},
{
"name": "French Guiana",
"code": "GF",
"timezone": "SA Eastern Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+594",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ซ"
},
{
"name": "French Polynesia",
"code": "PF",
"timezone": "Hawaiian Standard Time",
"utc": "UTC-10:00",
"mobileCode": "+689",
"flag": "๐Ÿ‡ต๐Ÿ‡ซ"
},
{
"name": "French Southern and Antarctic Lands",
"code": "TF",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+",
"flag": "๐Ÿ‡น๐Ÿ‡ซ"
},
{
"name": "Gabon",
"code": "GA",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+241",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ฆ"
},
{
"name": "Gambia, The",
"code": "GM",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+220",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ฒ"
},
{
"name": "Georgia",
"code": "GE",
"timezone": "Georgian Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+995",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ช"
},
{
"name": "Germany",
"code": "DE",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+49",
"flag": "๐Ÿ‡ฉ๐Ÿ‡ช"
},
{
"name": "Ghana",
"code": "GH",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+233",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ญ"
},
{
"name": "Gibraltar",
"code": "GI",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+350",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ฎ"
},
{
"name": "Greece",
"code": "GR",
"timezone": "GTB Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+30",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ท"
},
{
"name": "Greenland",
"code": "GL",
"timezone": "Greenland Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+299",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ฑ"
},
{
"name": "Grenada",
"code": "GD",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-473",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ฉ"
},
{
"name": "Guadeloupe",
"code": "GP",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+590",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ต"
},
{
"name": "Guam",
"code": "GU",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+1-671",
"flag": "๐Ÿ‡ฌ๐Ÿ‡บ"
},
{
"name": "Guatemala",
"code": "GT",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+502",
"flag": "๐Ÿ‡ฌ๐Ÿ‡น"
},
{
"name": "Guernsey",
"code": "GG",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44-1481",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ฌ"
},
{
"name": "Guinea",
"code": "GN",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+224",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ณ"
},
{
"name": "Guinea-Bissau",
"code": "GW",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+245",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ผ"
},
{
"name": "Guyana",
"code": "GY",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+592",
"flag": "๐Ÿ‡ฌ๐Ÿ‡พ"
},
{
"name": "Haiti",
"code": "HT",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+509",
"flag": "๐Ÿ‡ญ๐Ÿ‡น"
},
{
"name": "Heard Island and McDonald Islands",
"code": "HM",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+ ",
"flag": "๐Ÿ‡ญ๐Ÿ‡ฒ"
},
{
"name": "Honduras",
"code": "HN",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+504",
"flag": "๐Ÿ‡ญ๐Ÿ‡ณ"
},
{
"name": "Hong Kong SAR",
"code": "HK",
"timezone": "China Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+852",
"flag": "๐Ÿ‡ญ๐Ÿ‡ฐ"
},
{
"name": "Hungary",
"code": "HU",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+36",
"flag": "๐Ÿ‡ญ๐Ÿ‡บ"
},
{
"name": "Iceland",
"code": "IS",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+354",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ธ"
},
{
"name": "India",
"code": "IN",
"timezone": "India Standard Time",
"utc": "UTC+05:30",
"mobileCode": "+91",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ณ"
},
{
"name": "Indonesia",
"code": "ID",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+62",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ฉ"
},
{
"name": "Iran",
"code": "IR",
"timezone": "Iran Standard Time",
"utc": "UTC+03:30",
"mobileCode": "+98",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ท"
},
{
"name": "Iraq",
"code": "IQ",
"timezone": "Arabic Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+964",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ถ"
},
{
"name": "Ireland",
"code": "IE",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+353",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ช"
},
{
"name": "Israel",
"code": "IL",
"timezone": "Israel Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+972",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ฑ"
},
{
"name": "Italy",
"code": "IT",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+39",
"flag": "๐Ÿ‡ฎ๐Ÿ‡น"
},
{
"name": "Jamaica",
"code": "JM",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-876",
"flag": "๐Ÿ‡ฏ๐Ÿ‡ฒ"
},
{
"name": "Jan Mayen",
"code": "SJ",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+47",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฏ"
},
{
"name": "Japan",
"code": "JP",
"timezone": "Tokyo Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+81",
"flag": "๐Ÿ‡ฏ๐Ÿ‡ต"
},
{
"name": "Jersey",
"code": "JE",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44-1534",
"flag": "๐Ÿ‡ฏ๐Ÿ‡ช"
},
{
"name": "Jordan",
"code": "JO",
"timezone": "Jordan Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+962",
"flag": "๐Ÿ‡ฏ๐Ÿ‡ด"
},
{
"name": "Kazakhstan",
"code": "KZ",
"timezone": "Central Asia Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+7",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ฟ"
},
{
"name": "Kenya",
"code": "KE",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+254",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ช"
},
{
"name": "Kiribati",
"code": "KI",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+686",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ฎ"
},
{
"name": "Korea",
"code": "KR",
"timezone": "Korea Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+82",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ท"
},
{
"name": "Kosovo",
"code": "XK",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+",
"flag": "๐Ÿ‡ฝ๐Ÿ‡ฐ"
},
{
"name": "Kuwait",
"code": "KW",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+965",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ผ"
},
{
"name": "Kyrgyzstan",
"code": "KG",
"timezone": "Central Asia Standard Time",
"utc": "UTC+06:00",
"mobileCode": "+996",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ฌ"
},
{
"name": "Laos",
"code": "LA",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+856",
"flag": "๐Ÿ‡ฑ๐Ÿ‡ฆ"
},
{
"name": "Latvia",
"code": "LV",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+371",
"flag": "๐Ÿ‡ฑ๐Ÿ‡ป"
},
{
"name": "Lebanon",
"code": "LB",
"timezone": "Middle East Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+961",
"flag": "๐Ÿ‡ฑ๐Ÿ‡ง"
},
{
"name": "Lesotho",
"code": "LS",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+266",
"flag": "๐Ÿ‡ฑ๐Ÿ‡ธ"
},
{
"name": "Liberia",
"code": "LR",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+231",
"flag": "๐Ÿ‡ฑ๐Ÿ‡ท"
},
{
"name": "Libya",
"code": "LY",
"timezone": "E. Europe Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+218",
"flag": "๐Ÿ‡ฑ๐Ÿ‡พ"
},
{
"name": "Liechtenstein",
"code": "LI",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+423",
"flag": "๐Ÿ‡ฑ๐Ÿ‡ฎ"
},
{
"name": "Lithuania",
"code": "LT",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+370",
"flag": "๐Ÿ‡ฑ๐Ÿ‡น"
},
{
"name": "Luxembourg",
"code": "LU",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+352",
"flag": "๐Ÿ‡ฑ๐Ÿ‡บ"
},
{
"name": "Macao SAR",
"code": "MO",
"timezone": "China Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+853",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ด"
},
{
"name": "Macedonia, Former Yugoslav Republic of",
"code": "MK",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+389",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฐ"
},
{
"name": "Madagascar",
"code": "MG",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+261",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฌ"
},
{
"name": "Malawi",
"code": "MW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+265",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ผ"
},
{
"name": "Malaysia",
"code": "MY",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+60",
"flag": "๐Ÿ‡ฒ๐Ÿ‡พ"
},
{
"name": "Maldives",
"code": "MV",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+960",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ป"
},
{
"name": "Mali",
"code": "ML",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+223",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฑ"
},
{
"name": "Malta",
"code": "MT",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+356",
"flag": "๐Ÿ‡ฒ๐Ÿ‡น"
},
{
"name": "Man, Isle of",
"code": "IM",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44-1624",
"flag": "๐Ÿ‡ฎ๐Ÿ‡ฒ"
},
{
"name": "Marshall Islands",
"code": "MH",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+692",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ญ"
},
{
"name": "Martinique",
"code": "MQ",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+596",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ถ"
},
{
"name": "Mauritania",
"code": "MR",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+222",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ท"
},
{
"name": "Mauritius",
"code": "MU",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+230",
"flag": "๐Ÿ‡ฒ๐Ÿ‡บ"
},
{
"name": "Mayotte",
"code": "YT",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+262",
"flag": "๐Ÿ‡พ๐Ÿ‡น"
},
{
"name": "Mexico",
"code": "MX",
"timezone": "Central Standard Time (Mexico)",
"utc": "UTC-06:00",
"mobileCode": "+52",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฝ"
},
{
"name": "Micronesia",
"code": "FM",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+691",
"flag": "๐Ÿ‡ซ๐Ÿ‡ฒ"
},
{
"name": "Moldova",
"code": "MD",
"timezone": "GTB Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+373",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฉ"
},
{
"name": "Monaco",
"code": "MC",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+377",
"flag": "๐Ÿ‡ฒ๐Ÿ‡จ"
},
{
"name": "Mongolia",
"code": "MN",
"timezone": "Ulaanbaatar Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+976",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ณ"
},
{
"name": "Montenegro",
"code": "ME",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+382",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ช"
},
{
"name": "Montserrat",
"code": "MS",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-664",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ธ"
},
{
"name": "Morocco",
"code": "MA",
"timezone": "Morocco Standard Time",
"utc": "UTC",
"mobileCode": "+212",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฆ"
},
{
"name": "Mozambique",
"code": "MZ",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+258",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฟ"
},
{
"name": "Myanmar",
"code": "MM",
"timezone": "Myanmar Standard Time",
"utc": "UTC+06:30",
"mobileCode": "+95",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ฒ"
},
{
"name": "Namibia",
"code": "NA",
"timezone": "Namibia Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+264",
"flag": "๐Ÿ‡ณ๐Ÿ‡ฆ"
},
{
"name": "Nauru",
"code": "NR",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+674",
"flag": "๐Ÿ‡ณ๐Ÿ‡ท"
},
{
"name": "Nepal",
"code": "NP",
"timezone": "Nepal Standard Time",
"utc": "UTC+05:45",
"mobileCode": "+977",
"flag": "๐Ÿ‡ณ๐Ÿ‡ต"
},
{
"name": "Netherlands",
"code": "NL",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+31",
"flag": "๐Ÿ‡ณ๐Ÿ‡ฑ"
},
{
"name": "New Caledonia",
"code": "NC",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+687",
"flag": "๐Ÿ‡ณ๐Ÿ‡จ"
},
{
"name": "New Zealand",
"code": "NZ",
"timezone": "New Zealand Standard Time",
"utc": "UTC+12:00",
"mobileCode": "+64",
"flag": "๐Ÿ‡ณ๐Ÿ‡ฟ"
},
{
"name": "Nicaragua",
"code": "NI",
"timezone": "Central America Standard Time",
"utc": "UTC-06:00",
"mobileCode": "+505",
"flag": "๐Ÿ‡ณ๐Ÿ‡ฎ"
},
{
"name": "Niger",
"code": "NE",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+227",
"flag": "๐Ÿ‡ณ๐Ÿ‡ช"
},
{
"name": "Nigeria",
"code": "NG",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+234",
"flag": "๐Ÿ‡ณ๐Ÿ‡ฌ"
},
{
"name": "Niue",
"code": "NU",
"timezone": "UTC-11",
"utc": "UTC-11:00",
"mobileCode": "+683",
"flag": "๐Ÿ‡ณ๐Ÿ‡บ"
},
{
"name": "Norfolk Island",
"code": "NF",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+672",
"flag": "๐Ÿ‡ณ๐Ÿ‡ซ"
},
{
"name": "North Korea",
"code": "KP",
"timezone": "Korea Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+850",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ต"
},
{
"name": "Northern Mariana Islands",
"code": "MP",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+1-670",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ต"
},
{
"name": "Norway",
"code": "NO",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+47",
"flag": "๐Ÿ‡ณ๐Ÿ‡ด"
},
{
"name": "Oman",
"code": "OM",
"timezone": "Arabian Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+968",
"flag": "๐Ÿ‡ด๐Ÿ‡ฒ"
},
{
"name": "Pakistan",
"code": "PK",
"timezone": "Pakistan Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+92",
"flag": "๐Ÿ‡ต๐Ÿ‡ฐ"
},
{
"name": "Palau",
"code": "PW",
"timezone": "Tokyo Standard Time",
"utc": "UTC+09:00",
"mobileCode": "+680",
"flag": "๐Ÿ‡ต๐Ÿ‡ผ"
},
{
"name": "Palestinian Authority",
"code": "PS",
"timezone": "Egypt Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+970",
"flag": "๐Ÿ‡ต๐Ÿ‡ธ"
},
{
"name": "Panama",
"code": "PA",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+507",
"flag": "๐Ÿ‡ต๐Ÿ‡ฆ"
},
{
"name": "Papua New Guinea",
"code": "PG",
"timezone": "West Pacific Standard Time",
"utc": "UTC+10:00",
"mobileCode": "+675",
"flag": "๐Ÿ‡ต๐Ÿ‡ฌ"
},
{
"name": "Paraguay",
"code": "PY",
"timezone": "Paraguay Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+595",
"flag": "๐Ÿ‡ต๐Ÿ‡พ"
},
{
"name": "Peru",
"code": "PE",
"timezone": "SA Pacific Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+51",
"flag": "๐Ÿ‡ต๐Ÿ‡ช"
},
{
"name": "Philippines",
"code": "PH",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+63",
"flag": "๐Ÿ‡ต๐Ÿ‡ญ"
},
{
"name": "Pitcairn Islands",
"code": "PN",
"timezone": "Pacific Standard Time",
"utc": "UTC-08:00",
"mobileCode": "+870",
"flag": "๐Ÿ‡ต๐Ÿ‡ณ"
},
{
"name": "Poland",
"code": "PL",
"timezone": "Central European Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+48",
"flag": "๐Ÿ‡ต๐Ÿ‡ฑ"
},
{
"name": "Portugal",
"code": "PT",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+351",
"flag": "๐Ÿ‡ต๐Ÿ‡น"
},
{
"name": "Puerto Rico",
"code": "PR",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-787 and 1-939",
"flag": "๐Ÿ‡ต๐Ÿ‡ท"
},
{
"name": "Qatar",
"code": "QA",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+974",
"flag": "๐Ÿ‡ถ๐Ÿ‡ฆ"
},
{
"name": "Reunion",
"code": "RE",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+262",
"flag": "๐Ÿ‡ท๐Ÿ‡ช"
},
{
"name": "Romania",
"code": "RO",
"timezone": "GTB Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+40",
"flag": "๐Ÿ‡ท๐Ÿ‡ด"
},
{
"name": "Russia",
"code": "RU",
"timezone": "Russian Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+7",
"flag": "๐Ÿ‡ท๐Ÿ‡บ"
},
{
"name": "Rwanda",
"code": "RW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+250",
"flag": "๐Ÿ‡ท๐Ÿ‡ผ"
},
{
"name": "Saint Barthรฉlemy",
"code": "BL",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+590",
"flag": "๐Ÿ‡ง๐Ÿ‡ฑ"
},
{
"name": "Saint Helena, Ascension and Tristan da Cunha",
"code": "SH",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+290",
"flag": "๐Ÿ‡ธ๐Ÿ‡ญ"
},
{
"name": "Saint Kitts and Nevis",
"code": "KN",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-869",
"flag": "๐Ÿ‡ฐ๐Ÿ‡ณ"
},
{
"name": "Saint Lucia",
"code": "LC",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-758",
"flag": "๐Ÿ‡ฑ๐Ÿ‡จ"
},
{
"name": "Saint Martin (French part)",
"code": "MF",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+590",
"flag": "๐Ÿ‡ฒ๐Ÿ‡ซ"
},
{
"name": "Saint Pierre and Miquelon",
"code": "PM",
"timezone": "Greenland Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+508",
"flag": "๐Ÿ‡ต๐Ÿ‡ฒ"
},
{
"name": "Saint Vincent and the Grenadines",
"code": "VC",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-784",
"flag": "๐Ÿ‡ป๐Ÿ‡จ"
},
{
"name": "Samoa",
"code": "WS",
"timezone": "Samoa Standard Time",
"utc": "UTC+13:00",
"mobileCode": "+685",
"flag": "๐Ÿ‡ผ๐Ÿ‡ธ"
},
{
"name": "San Marino",
"code": "SM",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+378",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฒ"
},
{
"name": "Sรฃo Tomรฉ and Prรญncipe",
"code": "ST",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+239",
"flag": "๐Ÿ‡ธ๐Ÿ‡น"
},
{
"name": "Saudi Arabia",
"code": "SA",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+966",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฆ"
},
{
"name": "Senegal",
"code": "SN",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+221",
"flag": "๐Ÿ‡ธ๐Ÿ‡ณ"
},
{
"name": "Serbia",
"code": "RS",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+381",
"flag": "๐Ÿ‡ท๐Ÿ‡ธ"
},
{
"name": "Seychelles",
"code": "SC",
"timezone": "Mauritius Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+248",
"flag": "๐Ÿ‡ธ๐Ÿ‡จ"
},
{
"name": "Sierra Leone",
"code": "SL",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+232",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฑ"
},
{
"name": "Singapore",
"code": "SG",
"timezone": "Singapore Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+65",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฌ"
},
{
"name": "Sint Maarten (Dutch part)",
"code": "SX",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+599",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฝ"
},
{
"name": "Slovakia",
"code": "SK",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+421",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฐ"
},
{
"name": "Slovenia",
"code": "SI",
"timezone": "Central Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+386",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฎ"
},
{
"name": "Solomon Islands",
"code": "SB",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+677",
"flag": "๐Ÿ‡ธ๐Ÿ‡ง"
},
{
"name": "Somalia",
"code": "SO",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+252",
"flag": "๐Ÿ‡ธ๐Ÿ‡ด"
},
{
"name": "South Africa",
"code": "ZA",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+27",
"flag": "๐Ÿ‡ฟ๐Ÿ‡ฆ"
},
{
"name": "South Georgia and the South Sandwich Islands",
"code": "GS",
"timezone": "UTC-02",
"utc": "UTC-02:00",
"mobileCode": "+",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ธ"
},
{
"name": "South Sudan",
"code": "SS",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+211",
"flag": "๐Ÿ‡ธ๐Ÿ‡ธ"
},
{
"name": "Spain",
"code": "ES",
"timezone": "Romance Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+34",
"flag": "๐Ÿ‡ช๐Ÿ‡ธ"
},
{
"name": "Sri Lanka",
"code": "LK",
"timezone": "Sri Lanka Standard Time",
"utc": "UTC+05:30",
"mobileCode": "+94",
"flag": "๐Ÿ‡ฑ๐Ÿ‡ฐ"
},
{
"name": "Sudan",
"code": "SD",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+249",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฉ"
},
{
"name": "Suriname",
"code": "SR",
"timezone": "SA Eastern Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+597",
"flag": "๐Ÿ‡ธ๐Ÿ‡ท"
},
{
"name": "Svalbard",
"code": "SJ",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+47",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฏ"
},
{
"name": "Swaziland",
"code": "SZ",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+268",
"flag": "๐Ÿ‡ธ๐Ÿ‡ฟ"
},
{
"name": "Sweden",
"code": "SE",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+46",
"flag": "๐Ÿ‡ธ๐Ÿ‡ช"
},
{
"name": "Switzerland",
"code": "CH",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+41",
"flag": "๐Ÿ‡จ๐Ÿ‡ญ"
},
{
"name": "Syria",
"code": "SY",
"timezone": "Syria Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+963",
"flag": "๐Ÿ‡ธ๐Ÿ‡พ"
},
{
"name": "Taiwan",
"code": "TW",
"timezone": "Taipei Standard Time",
"utc": "UTC+08:00",
"mobileCode": "+886",
"flag": "๐Ÿ‡น๐Ÿ‡ผ"
},
{
"name": "Tajikistan",
"code": "TJ",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+992",
"flag": "๐Ÿ‡น๐Ÿ‡ฏ"
},
{
"name": "Tanzania",
"code": "TZ",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+255",
"flag": "๐Ÿ‡น๐Ÿ‡ฟ"
},
{
"name": "Thailand",
"code": "TH",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+66",
"flag": "๐Ÿ‡น๐Ÿ‡ญ"
},
{
"name": "Togo",
"code": "TG",
"timezone": "Greenwich Standard Time",
"utc": "UTC",
"mobileCode": "+228",
"flag": "๐Ÿ‡น๐Ÿ‡ฌ"
},
{
"name": "Tokelau",
"code": "TK",
"timezone": "Tonga Standard Time",
"utc": "UTC+13:00",
"mobileCode": "+690",
"flag": "๐Ÿ‡น๐Ÿ‡ฐ"
},
{
"name": "Tonga",
"code": "TO",
"timezone": "Tonga Standard Time",
"utc": "UTC+13:00",
"mobileCode": "+676",
"flag": "๐Ÿ‡น๐Ÿ‡ด"
},
{
"name": "Trinidad and Tobago",
"code": "TT",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-868",
"flag": "๐Ÿ‡น๐Ÿ‡น"
},
{
"name": "Tunisia",
"code": "TN",
"timezone": "W. Central Africa Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+216",
"flag": "๐Ÿ‡น๐Ÿ‡ณ"
},
{
"name": "Turkey",
"code": "TR",
"timezone": "Turkey Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+90",
"flag": "๐Ÿ‡น๐Ÿ‡ท"
},
{
"name": "Turkmenistan",
"code": "TM",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+993",
"flag": "๐Ÿ‡น๐Ÿ‡ฒ"
},
{
"name": "Turks and Caicos Islands",
"code": "TC",
"timezone": "Eastern Standard Time",
"utc": "UTC-05:00",
"mobileCode": "+1-649",
"flag": "๐Ÿ‡น๐Ÿ‡จ"
},
{
"name": "Tuvalu",
"code": "TV",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+688",
"flag": "๐Ÿ‡น๐Ÿ‡ป"
},
{
"name": "U.S. Minor Outlying Islands",
"code": "UM",
"timezone": "UTC-11",
"utc": "UTC-11:00",
"mobileCode": "+1",
"flag": "๐Ÿ‡บ๐Ÿ‡ฒ"
},
{
"name": "Uganda",
"code": "UG",
"timezone": "E. Africa Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+256",
"flag": "๐Ÿ‡บ๐Ÿ‡ฌ"
},
{
"name": "Ukraine",
"code": "UA",
"timezone": "FLE Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+380",
"flag": "๐Ÿ‡บ๐Ÿ‡ฆ"
},
{
"name": "United Arab Emirates",
"code": "AE",
"timezone": "Arabian Standard Time",
"utc": "UTC+04:00",
"mobileCode": "+971",
"flag": "๐Ÿ‡ฆ๐Ÿ‡ช"
},
{
"name": "United Kingdom",
"code": "GB",
"timezone": "GMT Standard Time",
"utc": "UTC",
"mobileCode": "+44",
"flag": "๐Ÿ‡ฌ๐Ÿ‡ง"
},
{
"name": "United States",
"code": "US",
"timezone": "Pacific Standard Time",
"utc": "UTC-08:00",
"mobileCode": "+1",
"flag": "๐Ÿ‡บ๐Ÿ‡ธ"
},
{
"name": "Uruguay",
"code": "UY",
"timezone": "Montevideo Standard Time",
"utc": "UTC-03:00",
"mobileCode": "+598",
"flag": "๐Ÿ‡บ๐Ÿ‡พ"
},
{
"name": "Uzbekistan",
"code": "UZ",
"timezone": "West Asia Standard Time",
"utc": "UTC+05:00",
"mobileCode": "+998",
"flag": "๐Ÿ‡บ๐Ÿ‡ฟ"
},
{
"name": "Vanuatu",
"code": "VU",
"timezone": "Central Pacific Standard Time",
"utc": "UTC+11:00",
"mobileCode": "+678",
"flag": "๐Ÿ‡ป๐Ÿ‡บ"
},
{
"name": "Vatican City",
"code": "VA",
"timezone": "W. Europe Standard Time",
"utc": "UTC+01:00",
"mobileCode": "+379",
"flag": "๐Ÿ‡ป๐Ÿ‡ฆ"
},
{
"name": "Vietnam",
"code": "VN",
"timezone": "SE Asia Standard Time",
"utc": "UTC+07:00",
"mobileCode": "+84",
"flag": "๐Ÿ‡ป๐Ÿ‡ณ"
},
{
"name": "Virgin Islands, U.S.",
"code": "VI",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-340",
"flag": "๐Ÿ‡ป๐Ÿ‡ฎ"
},
{
"name": "Virgin Islands, British",
"code": "VG",
"timezone": "SA Western Standard Time",
"utc": "UTC-04:00",
"mobileCode": "+1-284",
"flag": "๐Ÿ‡ป๐Ÿ‡ฌ"
},
{
"name": "Wallis and Futuna",
"code": "WF",
"timezone": "UTC+12",
"utc": "UTC+12:00",
"mobileCode": "+681",
"flag": "๐Ÿ‡ผ๐Ÿ‡ซ"
},
{
"name": "Yemen",
"code": "YE",
"timezone": "Arab Standard Time",
"utc": "UTC+03:00",
"mobileCode": "+967",
"flag": "๐Ÿ‡พ๐Ÿ‡ช"
},
{
"name": "Zambia",
"code": "ZM",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+260",
"flag": "๐Ÿ‡ฟ๐Ÿ‡ฒ"
},
{
"name": "Zimbabwe",
"code": "ZW",
"timezone": "South Africa Standard Time",
"utc": "UTC+02:00",
"mobileCode": "+263",
"flag": "๐Ÿ‡ฟ๐Ÿ‡ผ"
}
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment