Last active
December 4, 2024 06:26
-
-
Save sertraline/9f12a783c7ab2e36a92f0a8f8c399516 to your computer and use it in GitHub Desktop.
Typescript alpha2 + alpha3 country codes and phone codes ISO 3166
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Alpha3Country { | |
a2_code: string | |
a3_code: string | |
label: string | |
phone: string | |
} | |
const Countries: Alpha3Country[] = [ | |
{ | |
label: 'Andorra', | |
phone: '376', | |
a3_code: 'AND', | |
a2_code: 'AD', | |
}, | |
{ | |
label: 'United Arab Emirates', | |
phone: '971', | |
a3_code: 'ARE', | |
a2_code: 'AE', | |
}, | |
{ | |
label: 'Afghanistan', | |
phone: '93', | |
a3_code: 'AFG', | |
a2_code: 'AF', | |
}, | |
{ | |
label: 'Antigua and Barbuda', | |
phone: '1-268', | |
a3_code: 'ATG', | |
a2_code: 'AG', | |
}, | |
{ | |
label: 'Anguilla', | |
phone: '1-264', | |
a3_code: 'AIA', | |
a2_code: 'AI', | |
}, | |
{ | |
label: 'Albania', | |
phone: '355', | |
a3_code: 'ALB', | |
a2_code: 'AL', | |
}, | |
{ | |
label: 'Armenia', | |
phone: '374', | |
a3_code: 'ARM', | |
a2_code: 'AM', | |
}, | |
{ | |
label: 'Angola', | |
phone: '244', | |
a3_code: 'AGO', | |
a2_code: 'AO', | |
}, | |
{ | |
label: 'Antarctica', | |
phone: '672', | |
a3_code: 'ATA', | |
a2_code: 'AQ', | |
}, | |
{ | |
label: 'Argentina', | |
phone: '54', | |
a3_code: 'ARG', | |
a2_code: 'AR', | |
}, | |
{ | |
label: 'American Samoa', | |
phone: '1-684', | |
a3_code: 'ASM', | |
a2_code: 'AS', | |
}, | |
{ | |
label: 'Austria', | |
phone: '43', | |
a3_code: 'AUT', | |
a2_code: 'AT', | |
}, | |
{ | |
label: 'Australia', | |
phone: '61', | |
a3_code: 'AUS', | |
a2_code: 'AU', | |
}, | |
{ | |
label: 'Aruba', | |
phone: '297', | |
a3_code: 'ABW', | |
a2_code: 'AW', | |
}, | |
{ | |
label: 'Azerbaijan', | |
phone: '994', | |
a3_code: 'AZE', | |
a2_code: 'AZ', | |
}, | |
{ | |
label: 'Bosnia and Herzegovina', | |
phone: '387', | |
a3_code: 'BIH', | |
a2_code: 'BA', | |
}, | |
{ | |
label: 'Barbados', | |
phone: '1-246', | |
a3_code: 'BRB', | |
a2_code: 'BB', | |
}, | |
{ | |
label: 'Bangladesh', | |
phone: '880', | |
a3_code: 'BGD', | |
a2_code: 'BD', | |
}, | |
{ | |
label: 'Belgium', | |
phone: '32', | |
a3_code: 'BEL', | |
a2_code: 'BE', | |
}, | |
{ | |
label: 'Burkina Faso', | |
phone: '226', | |
a3_code: 'BFA', | |
a2_code: 'BF', | |
}, | |
{ | |
label: 'Bulgaria', | |
phone: '359', | |
a3_code: 'BGR', | |
a2_code: 'BG', | |
}, | |
{ | |
label: 'Bahrain', | |
phone: '973', | |
a3_code: 'BHR', | |
a2_code: 'BH', | |
}, | |
{ | |
label: 'Burundi', | |
phone: '257', | |
a3_code: 'BDI', | |
a2_code: 'BI', | |
}, | |
{ | |
label: 'Benin', | |
phone: '229', | |
a3_code: 'BEN', | |
a2_code: 'BJ', | |
}, | |
{ | |
label: 'Saint Barthelemy', | |
phone: '590', | |
a3_code: 'BLM', | |
a2_code: 'BL', | |
}, | |
{ | |
label: 'Bermuda', | |
phone: '1-441', | |
a3_code: 'BMU', | |
a2_code: 'BM', | |
}, | |
{ | |
label: 'Brunei Darussalam', | |
phone: '673', | |
a3_code: 'BRN', | |
a2_code: 'BN', | |
}, | |
{ | |
label: 'Bolivia', | |
phone: '591', | |
a3_code: 'BOL', | |
a2_code: 'BO', | |
}, | |
{ | |
label: 'Brazil', | |
phone: '55', | |
a3_code: 'BRA', | |
a2_code: 'BR', | |
}, | |
{ | |
label: 'Bahamas', | |
phone: '1-242', | |
a3_code: 'BHS', | |
a2_code: 'BS', | |
}, | |
{ | |
label: 'Bhutan', | |
phone: '975', | |
a3_code: 'BTN', | |
a2_code: 'BT', | |
}, | |
{ | |
label: 'Bouvet Island', | |
phone: '47', | |
a3_code: 'BVT', | |
a2_code: 'BV', | |
}, | |
{ | |
label: 'Botswana', | |
phone: '267', | |
a3_code: 'BWA', | |
a2_code: 'BW', | |
}, | |
{ | |
label: 'Belarus', | |
phone: '375', | |
a3_code: 'BLR', | |
a2_code: 'BY', | |
}, | |
{ | |
label: 'Belize', | |
phone: '501', | |
a3_code: 'BLZ', | |
a2_code: 'BZ', | |
}, | |
{ | |
label: 'Canada', | |
phone: '1', | |
a3_code: 'CAN', | |
a2_code: 'CA', | |
}, | |
{ | |
label: 'Central African Republic', | |
phone: '236', | |
a3_code: 'CAF', | |
a2_code: 'CF', | |
}, | |
{ | |
a2_code: 'CG', | |
a3_code: 'COG', | |
label: 'Congo, Republic of the', | |
phone: '242', | |
}, | |
{ | |
label: 'Switzerland', | |
phone: '41', | |
a3_code: 'CHE', | |
a2_code: 'CH', | |
}, | |
{ | |
a2_code: 'CI', | |
a3_code: 'CIV', | |
label: "Cote d'Ivoire", | |
phone: '225', | |
}, | |
{ | |
label: 'Cook Islands', | |
phone: '682', | |
a3_code: 'COK', | |
a2_code: 'CK', | |
}, | |
{ | |
label: 'Chile', | |
phone: '56', | |
a3_code: 'CHL', | |
a2_code: 'CL', | |
}, | |
{ | |
label: 'Cameroon', | |
phone: '237', | |
a3_code: 'CMR', | |
a2_code: 'CM', | |
}, | |
{ | |
label: 'China', | |
phone: '86', | |
a3_code: 'CHN', | |
a2_code: 'CN', | |
}, | |
{ | |
label: 'Colombia', | |
phone: '57', | |
a3_code: 'COL', | |
a2_code: 'CO', | |
}, | |
{ | |
label: 'Costa Rica', | |
phone: '506', | |
a3_code: 'CRI', | |
a2_code: 'CR', | |
}, | |
{ | |
label: 'Cuba', | |
phone: '53', | |
a3_code: 'CUB', | |
a2_code: 'CU', | |
}, | |
{ | |
label: 'Cape Verde', | |
phone: '238', | |
a3_code: 'CPV', | |
a2_code: 'CV', | |
}, | |
{ | |
a2_code: 'CW', | |
a3_code: 'CUW', | |
label: 'Curacao', | |
phone: '599', | |
}, | |
{ | |
label: 'Christmas Island', | |
phone: '61', | |
a3_code: 'CXR', | |
a2_code: 'CX', | |
}, | |
{ | |
label: 'Cyprus', | |
phone: '357', | |
a3_code: 'CYP', | |
a2_code: 'CY', | |
}, | |
{ | |
a3_code: 'CZE', | |
a2_code: 'CZ', | |
label: 'Czech Republic', | |
phone: '420', | |
}, | |
{ | |
label: 'Germany', | |
phone: '49', | |
a3_code: 'DEU', | |
a2_code: 'DE', | |
}, | |
{ | |
label: 'Djibouti', | |
phone: '253', | |
a3_code: 'DJI', | |
a2_code: 'DJ', | |
}, | |
{ | |
label: 'Denmark', | |
phone: '45', | |
a3_code: 'DNK', | |
a2_code: 'DK', | |
}, | |
{ | |
label: 'Dominica', | |
phone: '1-767', | |
a3_code: 'DMA', | |
a2_code: 'DM', | |
}, | |
{ | |
label: 'Dominican Republic', | |
phone: '1-809', | |
a3_code: 'DOM', | |
a2_code: 'DO', | |
}, | |
{ | |
label: 'Algeria', | |
phone: '213', | |
a3_code: 'DZA', | |
a2_code: 'DZ', | |
}, | |
{ | |
label: 'Ecuador', | |
phone: '593', | |
a3_code: 'ECU', | |
a2_code: 'EC', | |
}, | |
{ | |
label: 'Estonia', | |
phone: '372', | |
a3_code: 'EST', | |
a2_code: 'EE', | |
}, | |
{ | |
label: 'Egypt', | |
phone: '20', | |
a3_code: 'EGY', | |
a2_code: 'EG', | |
}, | |
{ | |
label: 'Western Sahara', | |
phone: '212', | |
a3_code: 'ESH', | |
a2_code: 'EH', | |
}, | |
{ | |
label: 'Eritrea', | |
phone: '291', | |
a3_code: 'ERI', | |
a2_code: 'ER', | |
}, | |
{ | |
label: 'Spain', | |
phone: '34', | |
a3_code: 'ESP', | |
a2_code: 'ES', | |
}, | |
{ | |
label: 'Ethiopia', | |
phone: '251', | |
a3_code: 'ETH', | |
a2_code: 'ET', | |
}, | |
{ | |
label: 'Finland', | |
phone: '358', | |
a3_code: 'FIN', | |
a2_code: 'FI', | |
}, | |
{ | |
label: 'Fiji', | |
phone: '679', | |
a3_code: 'FJI', | |
a2_code: 'FJ', | |
}, | |
{ | |
a2_code: 'FK', | |
a3_code: 'FLK', | |
label: 'Falkland Islands (Malvinas)', | |
phone: '500', | |
}, | |
{ | |
a2_code: 'FM', | |
a3_code: 'FSM', | |
label: 'Micronesia, Federated States of', | |
phone: '691', | |
}, | |
{ | |
label: 'Faroe Islands', | |
phone: '298', | |
a3_code: 'FRO', | |
a2_code: 'FO', | |
}, | |
{ | |
label: 'France', | |
phone: '33', | |
a3_code: 'FRA', | |
a2_code: 'FR', | |
}, | |
{ | |
label: 'Gabon', | |
phone: '241', | |
a3_code: 'GAB', | |
a2_code: 'GA', | |
}, | |
{ | |
label: 'United Kingdom', | |
phone: '44', | |
a3_code: 'GBR', | |
a2_code: 'GB', | |
}, | |
{ | |
label: 'Grenada', | |
phone: '1-473', | |
a3_code: 'GRD', | |
a2_code: 'GD', | |
}, | |
{ | |
label: 'Georgia', | |
phone: '995', | |
a3_code: 'GEO', | |
a2_code: 'GE', | |
}, | |
{ | |
label: 'French Guiana', | |
phone: '594', | |
a3_code: 'GUF', | |
a2_code: 'GF', | |
}, | |
{ | |
label: 'Guernsey', | |
phone: '44', | |
a3_code: 'GGY', | |
a2_code: 'GG', | |
}, | |
{ | |
label: 'Ghana', | |
phone: '233', | |
a3_code: 'GHA', | |
a2_code: 'GH', | |
}, | |
{ | |
label: 'Gibraltar', | |
phone: '350', | |
a3_code: 'GIB', | |
a2_code: 'GI', | |
}, | |
{ | |
label: 'Greenland', | |
phone: '299', | |
a3_code: 'GRL', | |
a2_code: 'GL', | |
}, | |
{ | |
label: 'Gambia', | |
phone: '220', | |
a3_code: 'GMB', | |
a2_code: 'GM', | |
}, | |
{ | |
label: 'Guinea', | |
phone: '224', | |
a3_code: 'GIN', | |
a2_code: 'GN', | |
}, | |
{ | |
label: 'Guadeloupe', | |
phone: '590', | |
a3_code: 'GLP', | |
a2_code: 'GP', | |
}, | |
{ | |
label: 'Equatorial Guinea', | |
phone: '240', | |
a3_code: 'GNQ', | |
a2_code: 'GQ', | |
}, | |
{ | |
label: 'Greece', | |
phone: '30', | |
a3_code: 'GRC', | |
a2_code: 'GR', | |
}, | |
{ | |
a2_code: 'GS', | |
a3_code: 'SGS', | |
label: 'South Georgia and the South Sandwich Islands', | |
phone: '500', | |
}, | |
{ | |
label: 'Guatemala', | |
phone: '502', | |
a3_code: 'GTM', | |
a2_code: 'GT', | |
}, | |
{ | |
label: 'Guam', | |
phone: '1-671', | |
a3_code: 'GUM', | |
a2_code: 'GU', | |
}, | |
{ | |
a2_code: 'GW', | |
a3_code: 'GNB', | |
label: 'Guinea-Bissau', | |
phone: '245', | |
}, | |
{ | |
label: 'Guyana', | |
phone: '592', | |
a3_code: 'GUY', | |
a2_code: 'GY', | |
}, | |
{ | |
a2_code: 'HK', | |
a3_code: 'HKG', | |
label: 'Hong Kong', | |
phone: '852', | |
}, | |
{ | |
a2_code: 'HM', | |
a3_code: 'HMD', | |
label: 'Heard Island and McDonald Islands', | |
phone: '672', | |
}, | |
{ | |
label: 'Honduras', | |
phone: '504', | |
a3_code: 'HND', | |
a2_code: 'HN', | |
}, | |
{ | |
label: 'Croatia', | |
phone: '385', | |
a3_code: 'HRV', | |
a2_code: 'HR', | |
}, | |
{ | |
label: 'Haiti', | |
phone: '509', | |
a3_code: 'HTI', | |
a2_code: 'HT', | |
}, | |
{ | |
label: 'Hungary', | |
phone: '36', | |
a3_code: 'HUN', | |
a2_code: 'HU', | |
}, | |
{ | |
label: 'Indonesia', | |
phone: '62', | |
a3_code: 'IDN', | |
a2_code: 'ID', | |
}, | |
{ | |
label: 'Ireland', | |
phone: '353', | |
a3_code: 'IRL', | |
a2_code: 'IE', | |
}, | |
{ | |
label: 'Israel', | |
phone: '972', | |
a3_code: 'ISR', | |
a2_code: 'IL', | |
}, | |
{ | |
a2_code: 'IM', | |
a3_code: 'IMN', | |
label: 'Isle of Man', | |
phone: '44', | |
}, | |
{ | |
label: 'India', | |
phone: '91', | |
a3_code: 'IND', | |
a2_code: 'IN', | |
}, | |
{ | |
label: 'British Indian Ocean Territory', | |
phone: '246', | |
a3_code: 'IOT', | |
a2_code: 'IO', | |
}, | |
{ | |
label: 'Iraq', | |
phone: '964', | |
a3_code: 'IRQ', | |
a2_code: 'IQ', | |
}, | |
{ | |
a2_code: 'IR', | |
a3_code: 'IRN', | |
label: 'Iran, Islamic Republic of', | |
phone: '98', | |
}, | |
{ | |
label: 'Iceland', | |
phone: '354', | |
a3_code: 'ISL', | |
a2_code: 'IS', | |
}, | |
{ | |
label: 'Italy', | |
phone: '39', | |
a3_code: 'ITA', | |
a2_code: 'IT', | |
}, | |
{ | |
label: 'Jersey', | |
phone: '44', | |
a3_code: 'JEY', | |
a2_code: 'JE', | |
}, | |
{ | |
label: 'Jamaica', | |
phone: '1-876', | |
a3_code: 'JAM', | |
a2_code: 'JM', | |
}, | |
{ | |
label: 'Jordan', | |
phone: '962', | |
a3_code: 'JOR', | |
a2_code: 'JO', | |
}, | |
{ | |
label: 'Japan', | |
phone: '81', | |
a3_code: 'JPN', | |
a2_code: 'JP', | |
}, | |
{ | |
label: 'Kenya', | |
phone: '254', | |
a3_code: 'KEN', | |
a2_code: 'KE', | |
}, | |
{ | |
label: 'Kyrgyzstan', | |
phone: '996', | |
a3_code: 'KGZ', | |
a2_code: 'KG', | |
}, | |
{ | |
label: 'Cambodia', | |
phone: '855', | |
a3_code: 'KHM', | |
a2_code: 'KH', | |
}, | |
{ | |
label: 'Kiribati', | |
phone: '686', | |
a3_code: 'KIR', | |
a2_code: 'KI', | |
}, | |
{ | |
label: 'Comoros', | |
phone: '269', | |
a3_code: 'COM', | |
a2_code: 'KM', | |
}, | |
{ | |
a2_code: 'KN', | |
a3_code: 'KNA', | |
label: 'Saint Kitts and Nevis', | |
phone: '1-869', | |
}, | |
{ | |
a2_code: 'KP', | |
a3_code: 'PRK', | |
label: "Korea, Democratic People's Republic of", | |
phone: '850', | |
}, | |
{ | |
label: 'Korea, Republic of', | |
phone: '82', | |
a3_code: 'KOR', | |
a2_code: 'KR', | |
}, | |
{ | |
label: 'Kuwait', | |
phone: '965', | |
a3_code: 'KWT', | |
a2_code: 'KW', | |
}, | |
{ | |
label: 'Cayman Islands', | |
phone: '1-345', | |
a3_code: 'CYM', | |
a2_code: 'KY', | |
}, | |
{ | |
label: 'Kazakhstan', | |
phone: '7', | |
a3_code: 'KAZ', | |
a2_code: 'KZ', | |
}, | |
{ | |
a2_code: 'LA', | |
a3_code: 'LAO', | |
label: "Lao People's Democratic Republic", | |
phone: '856', | |
}, | |
{ | |
label: 'Lebanon', | |
phone: '961', | |
a3_code: 'LBN', | |
a2_code: 'LB', | |
}, | |
{ | |
label: 'Saint Lucia', | |
phone: '1-758', | |
a3_code: 'LCA', | |
a2_code: 'LC', | |
}, | |
{ | |
label: 'Liechtenstein', | |
phone: '423', | |
a3_code: 'LIE', | |
a2_code: 'LI', | |
}, | |
{ | |
label: 'Sri Lanka', | |
phone: '94', | |
a3_code: 'LKA', | |
a2_code: 'LK', | |
}, | |
{ | |
label: 'Liberia', | |
phone: '231', | |
a3_code: 'LBR', | |
a2_code: 'LR', | |
}, | |
{ | |
label: 'Lesotho', | |
phone: '266', | |
a3_code: 'LSO', | |
a2_code: 'LS', | |
}, | |
{ | |
label: 'Lithuania', | |
phone: '370', | |
a3_code: 'LTU', | |
a2_code: 'LT', | |
}, | |
{ | |
label: 'Luxembourg', | |
phone: '352', | |
a3_code: 'LUX', | |
a2_code: 'LU', | |
}, | |
{ | |
label: 'Latvia', | |
phone: '371', | |
a3_code: 'LVA', | |
a2_code: 'LV', | |
}, | |
{ | |
a2_code: 'LY', | |
a3_code: 'LBY', | |
label: 'Libya', | |
phone: '218', | |
}, | |
{ | |
label: 'Morocco', | |
phone: '212', | |
a3_code: 'MAR', | |
a2_code: 'MA', | |
}, | |
{ | |
label: 'Monaco', | |
phone: '377', | |
a3_code: 'MCO', | |
a2_code: 'MC', | |
}, | |
{ | |
a2_code: 'MD', | |
a3_code: 'MDA', | |
label: 'Moldova, Republic of', | |
phone: '373', | |
}, | |
{ | |
label: 'Montenegro', | |
phone: '382', | |
a3_code: 'MNE', | |
a2_code: 'ME', | |
}, | |
{ | |
a2_code: 'MF', | |
a3_code: 'MAF', | |
label: 'Saint Martin (French part)', | |
phone: '590', | |
}, | |
{ | |
label: 'Madagascar', | |
phone: '261', | |
a3_code: 'MDG', | |
a2_code: 'MG', | |
}, | |
{ | |
label: 'Marshall Islands', | |
phone: '692', | |
a3_code: 'MHL', | |
a2_code: 'MH', | |
}, | |
{ | |
a2_code: 'MK', | |
a3_code: 'MKD', | |
label: 'Macedonia, the Former Yugoslav Republic of', | |
phone: '389', | |
}, | |
{ | |
label: 'Mali', | |
phone: '223', | |
a3_code: 'MLI', | |
a2_code: 'ML', | |
}, | |
{ | |
label: 'Myanmar', | |
phone: '95', | |
a3_code: 'MMR', | |
a2_code: 'MM', | |
}, | |
{ | |
label: 'Mongolia', | |
phone: '976', | |
a3_code: 'MNG', | |
a2_code: 'MN', | |
}, | |
{ | |
label: 'Macao', | |
phone: '853', | |
a3_code: 'MAC', | |
a2_code: 'MO', | |
}, | |
{ | |
label: 'Northern Mariana Islands', | |
phone: '1-670', | |
a3_code: 'MNP', | |
a2_code: 'MP', | |
}, | |
{ | |
label: 'Martinique', | |
phone: '596', | |
a3_code: 'MTQ', | |
a2_code: 'MQ', | |
}, | |
{ | |
label: 'Mauritania', | |
phone: '222', | |
a3_code: 'MRT', | |
a2_code: 'MR', | |
}, | |
{ | |
label: 'Montserrat', | |
phone: '1-664', | |
a3_code: 'MSR', | |
a2_code: 'MS', | |
}, | |
{ | |
label: 'Malta', | |
phone: '356', | |
a3_code: 'MLT', | |
a2_code: 'MT', | |
}, | |
{ | |
label: 'Mauritius', | |
phone: '230', | |
a3_code: 'MUS', | |
a2_code: 'MU', | |
}, | |
{ | |
label: 'Maldives', | |
phone: '960', | |
a3_code: 'MDV', | |
a2_code: 'MV', | |
}, | |
{ | |
label: 'Malawi', | |
phone: '265', | |
a3_code: 'MWI', | |
a2_code: 'MW', | |
}, | |
{ | |
label: 'Mexico', | |
phone: '52', | |
a3_code: 'MEX', | |
a2_code: 'MX', | |
}, | |
{ | |
label: 'Malaysia', | |
phone: '60', | |
a3_code: 'MYS', | |
a2_code: 'MY', | |
}, | |
{ | |
label: 'Mozambique', | |
phone: '258', | |
a3_code: 'MOZ', | |
a2_code: 'MZ', | |
}, | |
{ | |
label: 'Namibia', | |
phone: '264', | |
a3_code: 'NAM', | |
a2_code: 'NA', | |
}, | |
{ | |
label: 'New Caledonia', | |
phone: '687', | |
a3_code: 'NCL', | |
a2_code: 'NC', | |
}, | |
{ | |
label: 'Niger', | |
phone: '227', | |
a3_code: 'NER', | |
a2_code: 'NE', | |
}, | |
{ | |
label: 'Norfolk Island', | |
phone: '672', | |
a3_code: 'NFK', | |
a2_code: 'NF', | |
}, | |
{ | |
label: 'Nigeria', | |
phone: '234', | |
a3_code: 'NGA', | |
a2_code: 'NG', | |
}, | |
{ | |
label: 'Nicaragua', | |
phone: '505', | |
a3_code: 'NIC', | |
a2_code: 'NI', | |
}, | |
{ | |
label: 'Netherlands', | |
phone: '31', | |
a3_code: 'NLD', | |
a2_code: 'NL', | |
}, | |
{ | |
label: 'Norway', | |
phone: '47', | |
a3_code: 'NOR', | |
a2_code: 'NO', | |
}, | |
{ | |
label: 'Nepal', | |
phone: '977', | |
a3_code: 'NPL', | |
a2_code: 'NP', | |
}, | |
{ | |
label: 'Nauru', | |
phone: '674', | |
a3_code: 'NRU', | |
a2_code: 'NR', | |
}, | |
{ | |
label: 'Niue', | |
phone: '683', | |
a3_code: 'NIU', | |
a2_code: 'NU', | |
}, | |
{ | |
label: 'New Zealand', | |
phone: '64', | |
a3_code: 'NZL', | |
a2_code: 'NZ', | |
}, | |
{ | |
label: 'Oman', | |
phone: '968', | |
a3_code: 'OMN', | |
a2_code: 'OM', | |
}, | |
{ | |
label: 'Panama', | |
phone: '507', | |
a3_code: 'PAN', | |
a2_code: 'PA', | |
}, | |
{ | |
label: 'Peru', | |
phone: '51', | |
a3_code: 'PER', | |
a2_code: 'PE', | |
}, | |
{ | |
label: 'French Polynesia', | |
phone: '689', | |
a3_code: 'PYF', | |
a2_code: 'PF', | |
}, | |
{ | |
label: 'Papua New Guinea', | |
phone: '675', | |
a3_code: 'PNG', | |
a2_code: 'PG', | |
}, | |
{ | |
label: 'Philippines', | |
phone: '63', | |
a3_code: 'PHL', | |
a2_code: 'PH', | |
}, | |
{ | |
label: 'Pakistan', | |
phone: '92', | |
a3_code: 'PAK', | |
a2_code: 'PK', | |
}, | |
{ | |
label: 'Poland', | |
phone: '48', | |
a3_code: 'POL', | |
a2_code: 'PL', | |
}, | |
{ | |
a2_code: 'PM', | |
a3_code: 'SPM', | |
label: 'Saint Pierre and Miquelon', | |
phone: '508', | |
}, | |
{ | |
label: 'Pitcairn', | |
phone: '870', | |
a3_code: 'PCN', | |
a2_code: 'PN', | |
}, | |
{ | |
label: 'Puerto Rico', | |
phone: '1', | |
a3_code: 'PRI', | |
a2_code: 'PR', | |
}, | |
{ | |
a2_code: 'PS', | |
a3_code: 'PSE', | |
label: 'Palestine, State of', | |
phone: '970', | |
}, | |
{ | |
label: 'Portugal', | |
phone: '351', | |
a3_code: 'PRT', | |
a2_code: 'PT', | |
}, | |
{ | |
label: 'Palau', | |
phone: '680', | |
a3_code: 'PLW', | |
a2_code: 'PW', | |
}, | |
{ | |
label: 'Paraguay', | |
phone: '595', | |
a3_code: 'PRY', | |
a2_code: 'PY', | |
}, | |
{ | |
label: 'Qatar', | |
phone: '974', | |
a3_code: 'QAT', | |
a2_code: 'QA', | |
}, | |
{ | |
a2_code: 'RE', | |
a3_code: 'REU', | |
label: 'Reunion', | |
phone: '262', | |
}, | |
{ | |
label: 'Romania', | |
phone: '40', | |
a3_code: 'ROU', | |
a2_code: 'RO', | |
}, | |
{ | |
label: 'Serbia', | |
phone: '381', | |
a3_code: 'SRB', | |
a2_code: 'RS', | |
}, | |
{ | |
label: 'Russian Federation', | |
phone: '7', | |
a3_code: 'RUS', | |
a2_code: 'RU', | |
}, | |
{ | |
label: 'Rwanda', | |
phone: '250', | |
a3_code: 'RWA', | |
a2_code: 'RW', | |
}, | |
{ | |
label: 'Saudi Arabia', | |
phone: '966', | |
a3_code: 'SAU', | |
a2_code: 'SA', | |
}, | |
{ | |
label: 'Solomon Islands', | |
phone: '677', | |
a3_code: 'SLB', | |
a2_code: 'SB', | |
}, | |
{ | |
label: 'Seychelles', | |
phone: '248', | |
a3_code: 'SYC', | |
a2_code: 'SC', | |
}, | |
{ | |
label: 'Sudan', | |
phone: '249', | |
a3_code: 'SDN', | |
a2_code: 'SD', | |
}, | |
{ | |
label: 'Sweden', | |
phone: '46', | |
a3_code: 'SWE', | |
a2_code: 'SE', | |
}, | |
{ | |
label: 'Singapore', | |
phone: '65', | |
a3_code: 'SGP', | |
a2_code: 'SG', | |
}, | |
{ | |
label: 'Saint Helena', | |
phone: '290', | |
a3_code: 'SHN', | |
a2_code: 'SH', | |
}, | |
{ | |
label: 'Slovenia', | |
phone: '386', | |
a3_code: 'SVN', | |
a2_code: 'SI', | |
}, | |
{ | |
a2_code: 'SJ', | |
a3_code: 'SJM', | |
label: 'Svalbard and Jan Mayen', | |
phone: '47', | |
}, | |
{ | |
label: 'Slovakia', | |
phone: '421', | |
a3_code: 'SVK', | |
a2_code: 'SK', | |
}, | |
{ | |
label: 'Sierra Leone', | |
phone: '232', | |
a3_code: 'SLE', | |
a2_code: 'SL', | |
}, | |
{ | |
label: 'San Marino', | |
phone: '378', | |
a3_code: 'SMR', | |
a2_code: 'SM', | |
}, | |
{ | |
label: 'Senegal', | |
phone: '221', | |
a3_code: 'SEN', | |
a2_code: 'SN', | |
}, | |
{ | |
label: 'Somalia', | |
phone: '252', | |
a3_code: 'SOM', | |
a2_code: 'SO', | |
}, | |
{ | |
label: 'Suriname', | |
phone: '597', | |
a3_code: 'SUR', | |
a2_code: 'SR', | |
}, | |
{ | |
label: 'South Sudan', | |
phone: '211', | |
a3_code: 'SSD', | |
a2_code: 'SS', | |
}, | |
{ | |
a2_code: 'ST', | |
a3_code: 'STP', | |
label: 'Sao Tome and Principe', | |
phone: '239', | |
}, | |
{ | |
label: 'El Salvador', | |
phone: '503', | |
a3_code: 'SLV', | |
a2_code: 'SV', | |
}, | |
{ | |
label: 'Sint Maarten (Dutch part)', | |
phone: '1-721', | |
a3_code: 'SXM', | |
a2_code: 'SX', | |
}, | |
{ | |
label: 'Syrian Arab Republic', | |
phone: '963', | |
a3_code: 'SYR', | |
a2_code: 'SY', | |
}, | |
{ | |
label: 'Swaziland', | |
phone: '268', | |
a3_code: 'SWZ', | |
a2_code: 'SZ', | |
}, | |
{ | |
a2_code: 'TC', | |
a3_code: 'TCA', | |
label: 'Turks and Caicos Islands', | |
phone: '1-649', | |
}, | |
{ | |
label: 'Chad', | |
phone: '235', | |
a3_code: 'TCD', | |
a2_code: 'TD', | |
}, | |
{ | |
label: 'French Southern Territories', | |
phone: '262', | |
a3_code: 'ATF', | |
a2_code: 'TF', | |
}, | |
{ | |
label: 'Togo', | |
phone: '228', | |
a3_code: 'TGO', | |
a2_code: 'TG', | |
}, | |
{ | |
label: 'Thailand', | |
phone: '66', | |
a3_code: 'THA', | |
a2_code: 'TH', | |
}, | |
{ | |
label: 'Tajikistan', | |
phone: '992', | |
a3_code: 'TJK', | |
a2_code: 'TJ', | |
}, | |
{ | |
label: 'Tokelau', | |
phone: '690', | |
a3_code: 'TKL', | |
a2_code: 'TK', | |
}, | |
{ | |
label: 'Timor-Leste', | |
phone: '670', | |
a3_code: 'TLS', | |
a2_code: 'TL', | |
}, | |
{ | |
label: 'Turkmenistan', | |
phone: '993', | |
a3_code: 'TKM', | |
a2_code: 'TM', | |
}, | |
{ | |
label: 'Tunisia', | |
phone: '216', | |
a3_code: 'TUN', | |
a2_code: 'TN', | |
}, | |
{ | |
label: 'Tonga', | |
phone: '676', | |
a3_code: 'TON', | |
a2_code: 'TO', | |
}, | |
{ | |
label: 'Turkey', | |
phone: '90', | |
a3_code: 'TUR', | |
a2_code: 'TR', | |
}, | |
{ | |
a2_code: 'TT', | |
a3_code: 'TTO', | |
label: 'Trinidad and Tobago', | |
phone: '1-868', | |
}, | |
{ | |
label: 'Tuvalu', | |
phone: '688', | |
a3_code: 'TUV', | |
a2_code: 'TV', | |
}, | |
{ | |
label: 'Taiwan', | |
phone: '886', | |
a3_code: 'TWN', | |
a2_code: 'TW', | |
}, | |
{ | |
a2_code: 'TZ', | |
a3_code: 'TZA', | |
label: 'United Republic of Tanzania', | |
phone: '255', | |
}, | |
{ | |
label: 'Ukraine', | |
phone: '380', | |
a3_code: 'UKR', | |
a2_code: 'UA', | |
}, | |
{ | |
label: 'Uganda', | |
phone: '256', | |
a3_code: 'UGA', | |
a2_code: 'UG', | |
}, | |
{ | |
label: 'United States', | |
phone: '1', | |
a3_code: 'USA', | |
a2_code: 'US', | |
}, | |
{ | |
label: 'Uruguay', | |
phone: '598', | |
a3_code: 'URY', | |
a2_code: 'UY', | |
}, | |
{ | |
label: 'Uzbekistan', | |
phone: '998', | |
a3_code: 'UZB', | |
a2_code: 'UZ', | |
}, | |
{ | |
a2_code: 'VA', | |
a3_code: 'VAT', | |
label: 'Holy See (Vatican City State)', | |
phone: '379', | |
}, | |
{ | |
a2_code: 'VC', | |
a3_code: 'VCT', | |
label: 'Saint Vincent and the Grenadines', | |
phone: '1-784', | |
}, | |
{ | |
label: 'Venezuela', | |
phone: '58', | |
a3_code: 'VEN', | |
a2_code: 'VE', | |
}, | |
{ | |
a2_code: 'VG', | |
a3_code: 'VGB', | |
label: 'British Virgin Islands', | |
phone: '1-284', | |
}, | |
{ | |
a2_code: 'VI', | |
a3_code: 'VIR', | |
label: 'US Virgin Islands', | |
phone: '1-340', | |
}, | |
{ | |
label: 'Vietnam', | |
phone: '84', | |
a3_code: 'VNM', | |
a2_code: 'VN', | |
}, | |
{ | |
label: 'Vanuatu', | |
phone: '678', | |
a3_code: 'VUT', | |
a2_code: 'VU', | |
}, | |
{ | |
a2_code: 'WF', | |
a3_code: 'WLF', | |
label: 'Wallis and Futuna', | |
phone: '681', | |
}, | |
{ | |
label: 'Samoa', | |
phone: '685', | |
a3_code: 'WSM', | |
a2_code: 'WS', | |
}, | |
{ | |
a2_code: 'XK', | |
a3_code: 'KOS', | |
label: 'Kosovo', | |
phone: '383', | |
}, | |
{ | |
label: 'Yemen', | |
phone: '967', | |
a3_code: 'YEM', | |
a2_code: 'YE', | |
}, | |
{ | |
label: 'Mayotte', | |
phone: '262', | |
a3_code: 'MYT', | |
a2_code: 'YT', | |
}, | |
{ | |
label: 'South Africa', | |
phone: '27', | |
a3_code: 'ZAF', | |
a2_code: 'ZA', | |
}, | |
{ | |
label: 'Zambia', | |
phone: '260', | |
a3_code: 'ZMB', | |
a2_code: 'ZM', | |
}, | |
{ | |
label: 'Zimbabwe', | |
phone: '263', | |
a3_code: 'ZWE', | |
a2_code: 'ZW', | |
}, | |
] | |
export default Countries |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment