Skip to content

Instantly share code, notes, and snippets.

@FlipperPA
Last active July 17, 2021 23:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FlipperPA/5797bcd7d4656d1ac6f295b4f093f74c to your computer and use it in GitHub Desktop.
Save FlipperPA/5797bcd7d4656d1ac6f295b4f093f74c to your computer and use it in GitHub Desktop.
Countries Listed by the International Dialing Country Code, as a Python Dict.
country_dialing_codes_by_code = {
1: ["Canada", "Caribbean Nations", "USA"],
7: ["Kazakhstan", "Russia", "Tajikistan", "Uzbekistan"],
20: ["Egypt"],
27: ["South Africa"],
30: ["Greece"],
31: ["Netherlands"],
32: ["Belgium"],
33: ["France", "Monaco"],
34: ["Spain"],
36: ["Hungary"],
39: ["Italy", "Vatican City"],
40: ["Romania"],
41: ["Switzerland"],
43: ["Austria"],
44: ["United Kingdom"],
45: ["Denmark"],
46: ["Sweden"],
47: ["Norway"],
48: ["Poland"],
49: ["Germany"],
51: ["Peru"],
52: ["Mexico"],
53: ["Cuba"],
54: ["Argentina"],
55: ["Brazil"],
56: ["Chile"],
57: ["Colombia"],
58: ["Venezuela"],
60: ["Malaysia"],
61: ["Australia"],
62: ["Indonesia"],
63: ["Philippines"],
64: ["New Zealand"],
65: ["Singapore"],
66: ["Thailand"],
81: ["Japan"],
82: ["Korea, Republic of (South Korea)"],
84: ["Viet Nam"],
86: ["China (People's Republic)"],
90: ["Turkey"],
91: ["India"],
92: ["Pakistan"],
93: ["Afghanistan"],
94: ["Sri Lanka"],
95: ["Myanmar (former Burma)"],
98: ["Iran"],
212: ["Morocco"],
213: ["Algeria"],
216: ["Tunisia"],
218: ["Libya"],
220: ["Gambia"],
221: ["Senegal"],
222: ["Mauritania"],
223: ["Mali"],
224: ["Guinea"],
225: ["Ivory Coast (La Cote d'Ivoire)"],
226: ["Burkina Faso"],
227: ["Niger"],
228: ["Togo (Togolese Republic)"],
229: ["Benin"],
230: ["Mauritius"],
231: ["Liberia"],
232: ["Sierra Leone"],
233: ["Ghana"],
234: ["Nigeria"],
235: ["Chad"],
236: ["Central African Republic"],
237: ["Cameroon"],
238: ["CapeVerde Islands", "Cape Verdi"],
239: ["Sao Tome and Principe"],
240: ["Equatorial Guinea"],
241: ["Gabon (Gabonese Republic)"],
242: ["Bahamas", "Congo"],
243: ["Zaire"],
244: ["Angola"],
245: ["Guinea-Bissau"],
246: ["Barbados", "Diego Garcia"],
247: ["Ascension Island"],
248: ["Seychelles"],
249: ["Sudan"],
250: ["Rwanda (Rwandese Republic)"],
251: ["Ethiopia"],
252: ["Somalia"],
253: ["Djibouti"],
254: ["Kenya"],
255: ["Tanzania (includes Zanzibar)"],
256: ["Uganda"],
257: ["Burundi"],
258: ["Mozambique"],
260: ["Zambia"],
261: ["Madagascar"],
262: ["Reunion (France)"],
263: ["Zimbabwe"],
264: ["Namibia (former South-West Africa)"],
265: ["Malawi"],
266: ["Lesotho"],
267: ["Botswana"],
268: ["Antigua", "Swaziland"],
269: ["Comoros and Mayotte", "Mayolte"],
284: ["British Virgin Islands", "British V.I."],
290: ["St. Helena"],
291: ["Eritrea"],
297: ["Aruba"],
298: ["Faroe (Faeroe) Islands (Denmark)"],
299: ["Greenland"],
345: ["Cayman Islands"],
350: ["Gibraltar"],
351: ["Portugal (includes Azores)"],
352: ["Luxembourg"],
353: ["Ireland (Irish Republic; Eire)"],
354: ["Iceland"],
355: ["Albania"],
356: ["Malta"],
357: ["Cyprus"],
358: ["Finland"],
359: ["Bulgaria"],
370: ["Lithuania"],
371: ["Latvia"],
372: ["Estonia"],
373: ["Moldova"],
374: ["Armenia"],
375: ["Belarus"],
376: ["Andorra"],
378: ["San Marino"],
380: ["Ukraine"],
381: [
"Serbia and Montenegro",
"Yemen (People's Democratic Republic of)",
"Yugoslavia (discontinued)",
],
385: ["Croatia"],
386: ["Slovenia"],
387: ["Bosnia and Hercegovina"],
389: ["Macedonia"],
420: ["Czech Republic"],
421: ["Slovakia"],
423: ["Liechtenstein"],
473: ["Grenada/Carricou", "Montserrat"],
500: ["Falkland Islands"],
501: ["Belize"],
502: ["Guatemala"],
503: ["El Salvador"],
504: ["Honduras"],
505: ["Nicaragua"],
506: ["Costa Rica"],
507: ["Panama"],
508: ["St. Pierre &(et) Miquelon (France)"],
509: ["Haiti"],
591: ["Bolivia"],
592: ["Guyana"],
593: ["Ecuador"],
594: ["French Guiana"],
595: ["Paraguay"],
596: ["French Antilles", "Martinique (French Antilles)"],
597: ["Suriname"],
598: ["Uruguay"],
599: ["Netherlands Antilles"],
670: ["Saipan"],
671: ["Guam"],
672: ["Australian External Territories"],
673: ["Brunei Darussalm"],
674: ["Nauru"],
675: ["Papua New Guinea"],
676: ["Tonga"],
677: ["Solomon Islands"],
678: ["Vanuatu (New Hebrides)"],
679: ["Fiji"],
680: ["Palau"],
681: ["Wallis and Futuna"],
682: ["Cook Islands"],
683: ["Niue"],
684: ["American Samoa"],
685: ["Western Samoa"],
686: ["Kiribati Republic (Gilbert Islands)"],
687: ["New Caledonia"],
688: ["Tuvalu (Ellice Islands)"],
689: ["Tahiti (French Polynesia)"],
690: ["Tokelau"],
691: ["Micronesia (F.S. of Polynesia)"],
692: ["Marshall Islands"],
767: ["Dominca"],
809: ["Anguilla", "Bermuda", "Dominican Republic"],
850: ["Korea, People's Republic of (North Korea)", "North Korea"],
852: ["Hong Kong"],
853: ["Macao"],
855: ["Cambodia", "Khmer Republic (Cambodia/Kampuchea)"],
856: ["Laos"],
869: ["Nevis", "St. Kitts/Nevis"],
876: ["Jamaica"],
880: ["Bangladesh"],
886: ["China-Taiwan", "Taiwan"],
960: ["Maldives"],
961: ["Lebanon"],
962: ["Jordan"],
963: ["Syrian Arab Republic (Syria)"],
964: ["Iraq"],
965: ["Kuwait"],
966: ["Saudi Arabia"],
967: ["Yemen Arab Republic (North Yemen)"],
968: ["Oman"],
971: ["United Arab Emirates"],
972: ["Israel"],
973: ["Bahrain"],
974: ["Qatar"],
975: ["Bhutan"],
976: ["Mongolia"],
977: ["Nepal"],
993: ["Turkmenistan"],
994: ["Azerbaijan"],
995: ["Georgia"],
996: ["Kyrgyz Republic"],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment