normalize_country 0.1.1 β 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +6 -4
- data/lib/normalize_country.rb +3 -3
- data/lib/normalize_country/countries/en.yml +622 -375
- data/spec/normalize_country_spec.rb +5 -2
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 068ab0dd599a2344330b6d1f26c36877d349e52d
|
4
|
+
data.tar.gz: 25a00e769a54ce95b3423c66f93d9fdc732c1028
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e593e15e8794b8f0669be31602323ddf5b11b895b44643c88f2137ef97d6accc713d7e52423ac9f3e1af6f54981712ecfedc5cb43470b817560170567cfb7260
|
7
|
+
data.tar.gz: eea83cf618945fc89b7018602a378acfafca33256ad00059d4dcab416fbdd94833fa1112d2fcb4a7cb94712eecfd090eee0d70dac5747251e35aabd0cbd77731
|
data/README.rdoc
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
Convert country names and codes to a standard.
|
4
4
|
|
5
|
-
{<img src="https://travis-ci.org/sshaw/normalize_country.
|
6
|
-
{<img src="https://codeclimate.com/github/sshaw/normalize_country.
|
5
|
+
{<img src="https://travis-ci.org/sshaw/normalize_country.svg?branch=master" alt="Build Status" />}[https://travis-ci.org/sshaw/normalize_country]
|
6
|
+
{<img src="https://codeclimate.com/github/sshaw/normalize_country.svg" />}[https://codeclimate.com/github/sshaw/normalize_country]
|
7
7
|
|
8
8
|
=== Overview
|
9
9
|
|
@@ -16,6 +16,7 @@ Convert country names and codes to a standard.
|
|
16
16
|
NormalizeCountry("U.S.", :to => :alpha2) # "US"
|
17
17
|
NormalizeCountry("U.S.", :to => :numeric) # "840"
|
18
18
|
NormalizeCountry("US", :to => :fifa) # "USA"
|
19
|
+
NormalizeCountry("US", :to => :emoji) # "πΊπΈ"
|
19
20
|
NormalizeCountry("Iran", :to => :alpha3) # "IRN"
|
20
21
|
NormalizeCountry("Iran", :to => :ioc) # "IRI"
|
21
22
|
NormalizeCountry("DPRK", :to => :short) # "North Korea"
|
@@ -33,7 +34,7 @@ Convert country names and codes to a standard.
|
|
33
34
|
|
34
35
|
Rubygems ({part of Ruby}[https://www.ruby-lang.org]):
|
35
36
|
|
36
|
-
|
37
|
+
gem install normalize_country
|
37
38
|
|
38
39
|
{Bundler}[http://bundler.io]:
|
39
40
|
|
@@ -46,11 +47,12 @@ will convert to/from the following:
|
|
46
47
|
|
47
48
|
[:alpha2] ISO 3166-1 alpha-2
|
48
49
|
[:alpha3] ISO 3166-1 alpha-3
|
50
|
+
[:emoji] The country's emoji
|
49
51
|
[:fifa] FIFA (International Federation of Association Football)
|
50
|
-
[:official] The country's official name
|
51
52
|
[:ioc] International Olympic Committee
|
52
53
|
[:iso_name] Country name used by ISO 3166-1
|
53
54
|
[:numeric] ISO 3166-1 numeric code
|
55
|
+
[:official] The country's official name
|
54
56
|
[:short] A shortned version of the country's name, commonly used when speaking and/or writing (US English)
|
55
57
|
|
56
58
|
A list of valid formats can be obtained by calling +NormalizeCountry.formats+.
|
data/lib/normalize_country.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require "yaml"
|
2
2
|
|
3
3
|
module NormalizeCountry
|
4
|
-
VERSION = "0.
|
4
|
+
VERSION = "0.2.0"
|
5
5
|
Countries = {}
|
6
6
|
|
7
7
|
class << self
|
@@ -12,7 +12,7 @@ module NormalizeCountry
|
|
12
12
|
end
|
13
13
|
|
14
14
|
def formats
|
15
|
-
@formats ||= Countries.values.
|
15
|
+
@formats ||= Countries.values.flat_map(&:formats).uniq # format might not be defined for all countries
|
16
16
|
end
|
17
17
|
|
18
18
|
def convert(name, options = {})
|
@@ -80,7 +80,7 @@ module NormalizeCountry
|
|
80
80
|
data = YAML.load_file(path)
|
81
81
|
data.values.each do |mapping|
|
82
82
|
country = Country.new(mapping)
|
83
|
-
country.names.
|
83
|
+
country.names.each { |name| Countries[name.downcase.to_sym] = country }
|
84
84
|
end
|
85
85
|
end
|
86
86
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
---
|
2
|
-
AD:
|
3
|
-
aliases:
|
1
|
+
---
|
2
|
+
AD:
|
3
|
+
aliases:
|
4
4
|
- Principality of the Valleys of Andorra
|
5
5
|
alpha2: AD
|
6
6
|
alpha3: AND
|
@@ -10,8 +10,9 @@ AD:
|
|
10
10
|
numeric: "20"
|
11
11
|
official: Principality of Andorra
|
12
12
|
short: Andorra
|
13
|
-
|
14
|
-
|
13
|
+
emoji: "\U0001F1E6\U0001F1E9"
|
14
|
+
AE:
|
15
|
+
aliases:
|
15
16
|
- Emirates
|
16
17
|
- UAE
|
17
18
|
alpha2: AE
|
@@ -22,7 +23,8 @@ AE:
|
|
22
23
|
numeric: "784"
|
23
24
|
official: United Arab Emirates
|
24
25
|
short: United Arab Emirates
|
25
|
-
|
26
|
+
emoji: "\U0001F1E6\U0001F1EA"
|
27
|
+
AF:
|
26
28
|
alpha2: AF
|
27
29
|
alpha3: AFG
|
28
30
|
fifa: AFG
|
@@ -31,7 +33,8 @@ AF:
|
|
31
33
|
official: Islamic Republic of Afghanistan
|
32
34
|
numeric: "4"
|
33
35
|
short: Afghanistan
|
34
|
-
|
36
|
+
emoji: "\U0001F1E6\U0001F1EB"
|
37
|
+
AG:
|
35
38
|
alpha2: AG
|
36
39
|
alpha3: ATG
|
37
40
|
fifa: ATG
|
@@ -40,16 +43,18 @@ AG:
|
|
40
43
|
numeric: "28"
|
41
44
|
official: Antigua and Barbuda
|
42
45
|
short: Antigua and Barbuda
|
43
|
-
|
46
|
+
emoji: "\U0001F1E6\U0001F1EC"
|
47
|
+
AI:
|
44
48
|
alpha2: AI
|
45
49
|
alpha3: AIA
|
46
|
-
fifa:
|
47
|
-
ioc:
|
50
|
+
fifa:
|
51
|
+
ioc:
|
48
52
|
iso_name: Anguilla
|
49
53
|
numeric: "660"
|
50
54
|
official: Anguilla
|
51
55
|
short: Anguilla
|
52
|
-
|
56
|
+
emoji: "\U0001F1E6\U0001F1EE"
|
57
|
+
AL:
|
53
58
|
alpha2: AL
|
54
59
|
alpha3: ALB
|
55
60
|
fifa: ALB
|
@@ -58,7 +63,8 @@ AL:
|
|
58
63
|
official: Republic of Albania
|
59
64
|
numeric: "8"
|
60
65
|
short: Albania
|
61
|
-
|
66
|
+
emoji: "\U0001F1E6\U0001F1F1"
|
67
|
+
AM:
|
62
68
|
alpha2: AM
|
63
69
|
alpha3: ARM
|
64
70
|
fifa: ARM
|
@@ -67,8 +73,9 @@ AM:
|
|
67
73
|
numeric: "51"
|
68
74
|
official: Republic of Armenia
|
69
75
|
short: Armenia
|
70
|
-
|
71
|
-
|
76
|
+
emoji: "\U0001F1E6\U0001F1F2"
|
77
|
+
AN:
|
78
|
+
aliases:
|
72
79
|
- Dutch Antilles
|
73
80
|
alpha2: AN
|
74
81
|
alpha3: ANT
|
@@ -78,7 +85,8 @@ AN:
|
|
78
85
|
numeric: "530"
|
79
86
|
official: Netherlands Antilles
|
80
87
|
short: Netherlands Antilles
|
81
|
-
|
88
|
+
emoji: "\U0001F1E6\U0001F1F3"
|
89
|
+
AO:
|
82
90
|
alpha2: AO
|
83
91
|
alpha3: AGO
|
84
92
|
fifa: ANG
|
@@ -87,16 +95,18 @@ AO:
|
|
87
95
|
numeric: "24"
|
88
96
|
official: Republic of Angola
|
89
97
|
short: Angola
|
90
|
-
|
98
|
+
emoji: "\U0001F1E6\U0001F1F4"
|
99
|
+
AQ:
|
91
100
|
alpha2: AQ
|
92
101
|
alpha3: ATA
|
93
|
-
fifa:
|
94
|
-
ioc:
|
102
|
+
fifa:
|
103
|
+
ioc:
|
95
104
|
iso_name: Antarctica
|
96
105
|
numeric: "10"
|
97
106
|
official: Antarctica
|
98
107
|
short: Antarctica
|
99
|
-
|
108
|
+
emoji: "\U0001F1E6\U0001F1F6"
|
109
|
+
AR:
|
100
110
|
alpha2: AR
|
101
111
|
alpha3: ARG
|
102
112
|
fifa: ARG
|
@@ -105,7 +115,8 @@ AR:
|
|
105
115
|
numeric: "32"
|
106
116
|
official: Argentine Republic
|
107
117
|
short: Argentina
|
108
|
-
|
118
|
+
emoji: "\U0001F1E6\U0001F1F7"
|
119
|
+
AS:
|
109
120
|
alpha2: AS
|
110
121
|
alpha3: ASM
|
111
122
|
fifa: ASA
|
@@ -114,7 +125,8 @@ AS:
|
|
114
125
|
numeric: "16"
|
115
126
|
official: American Samoa
|
116
127
|
short: American Samoa
|
117
|
-
|
128
|
+
emoji: "\U0001F1E6\U0001F1F8"
|
129
|
+
AT:
|
118
130
|
alpha2: AT
|
119
131
|
alpha3: AUT
|
120
132
|
fifa: AUT
|
@@ -123,7 +135,8 @@ AT:
|
|
123
135
|
numeric: "40"
|
124
136
|
official: Republic of Austria
|
125
137
|
short: Austria
|
126
|
-
|
138
|
+
emoji: "\U0001F1E6\U0001F1F9"
|
139
|
+
AU:
|
127
140
|
alpha2: AU
|
128
141
|
alpha3: AUS
|
129
142
|
fifa: AUS
|
@@ -132,7 +145,8 @@ AU:
|
|
132
145
|
numeric: "36"
|
133
146
|
official: Commonwealth of Australia
|
134
147
|
short: Australia
|
135
|
-
|
148
|
+
emoji: "\U0001F1E6\U0001F1FA"
|
149
|
+
AW:
|
136
150
|
alpha2: AW
|
137
151
|
alpha3: ABW
|
138
152
|
fifa: ARU
|
@@ -141,16 +155,18 @@ AW:
|
|
141
155
|
numeric: "533"
|
142
156
|
official: Aruba
|
143
157
|
short: Aruba
|
144
|
-
|
158
|
+
emoji: "\U0001F1E6\U0001F1FC"
|
159
|
+
AX:
|
145
160
|
alpha2: AX
|
146
161
|
alpha3: ALA
|
147
|
-
fifa:
|
148
|
-
ioc:
|
149
|
-
iso_name: Γ
land Islands
|
162
|
+
fifa:
|
163
|
+
ioc:
|
164
|
+
iso_name: "Γ
land Islands"
|
150
165
|
numeric: "248"
|
151
|
-
official: Γ
land Islands
|
152
|
-
short: Γ
land Islands
|
153
|
-
|
166
|
+
official: "Γ
land Islands"
|
167
|
+
short: "Γ
land Islands"
|
168
|
+
emoji: "\U0001F1E6\U0001F1FD"
|
169
|
+
AZ:
|
154
170
|
alpha2: AZ
|
155
171
|
alpha3: AZE
|
156
172
|
fifa: AZE
|
@@ -159,8 +175,9 @@ AZ:
|
|
159
175
|
numeric: "31"
|
160
176
|
official: Republic of Azerbaijan
|
161
177
|
short: Azerbaijan
|
162
|
-
|
163
|
-
|
178
|
+
emoji: "\U0001F1E6\U0001F1FF"
|
179
|
+
BA:
|
180
|
+
aliases:
|
164
181
|
- Bosnia-Herzegovina
|
165
182
|
alpha2: BA
|
166
183
|
alpha3: BIH
|
@@ -170,7 +187,8 @@ BA:
|
|
170
187
|
numeric: "70"
|
171
188
|
official: Bosnia and Herzegovina
|
172
189
|
short: Bosnia
|
173
|
-
|
190
|
+
emoji: "\U0001F1E7\U0001F1E6"
|
191
|
+
BB:
|
174
192
|
alpha2: BB
|
175
193
|
alpha3: BRB
|
176
194
|
fifa: BRB
|
@@ -179,7 +197,8 @@ BB:
|
|
179
197
|
numeric: "52"
|
180
198
|
official: Barbados
|
181
199
|
short: Barbados
|
182
|
-
|
200
|
+
emoji: "\U0001F1E7\U0001F1E7"
|
201
|
+
BD:
|
183
202
|
alpha2: BD
|
184
203
|
alpha3: BGD
|
185
204
|
fifa: BAN
|
@@ -188,7 +207,8 @@ BD:
|
|
188
207
|
numeric: "50"
|
189
208
|
official: People's Republic of Bangladesh
|
190
209
|
short: Bangladesh
|
191
|
-
|
210
|
+
emoji: "\U0001F1E7\U0001F1E9"
|
211
|
+
BE:
|
192
212
|
alpha2: BE
|
193
213
|
alpha3: BEL
|
194
214
|
fifa: BEL
|
@@ -197,7 +217,8 @@ BE:
|
|
197
217
|
numeric: "56"
|
198
218
|
official: Kingdom of Belgium
|
199
219
|
short: Belgium
|
200
|
-
|
220
|
+
emoji: "\U0001F1E7\U0001F1EA"
|
221
|
+
BF:
|
201
222
|
alpha2: BF
|
202
223
|
alpha3: BFA
|
203
224
|
fifa: BFA
|
@@ -206,7 +227,8 @@ BF:
|
|
206
227
|
numeric: "854"
|
207
228
|
official: Burkina Faso
|
208
229
|
short: Burkina
|
209
|
-
|
230
|
+
emoji: "\U0001F1E7\U0001F1EB"
|
231
|
+
BG:
|
210
232
|
alpha2: BG
|
211
233
|
alpha3: BGR
|
212
234
|
fifa: BUL
|
@@ -215,7 +237,8 @@ BG:
|
|
215
237
|
numeric: "100"
|
216
238
|
official: Republic of Bulgaria
|
217
239
|
short: Bulgaria
|
218
|
-
|
240
|
+
emoji: "\U0001F1E7\U0001F1EC"
|
241
|
+
BH:
|
219
242
|
alpha2: BH
|
220
243
|
alpha3: BHR
|
221
244
|
fifa: BHR
|
@@ -224,7 +247,8 @@ BH:
|
|
224
247
|
numeric: "48"
|
225
248
|
official: Kingdom of Bahrain
|
226
249
|
short: Bahrain
|
227
|
-
|
250
|
+
emoji: "\U0001F1E7\U0001F1ED"
|
251
|
+
BI:
|
228
252
|
alpha2: BI
|
229
253
|
alpha3: BDI
|
230
254
|
fifa: BDI
|
@@ -233,7 +257,8 @@ BI:
|
|
233
257
|
numeric: "108"
|
234
258
|
official: Republic of Burundi
|
235
259
|
short: Burundi
|
236
|
-
|
260
|
+
emoji: "\U0001F1E7\U0001F1EE"
|
261
|
+
BJ:
|
237
262
|
alpha2: BJ
|
238
263
|
alpha3: BEN
|
239
264
|
fifa: BEN
|
@@ -242,21 +267,23 @@ BJ:
|
|
242
267
|
numeric: "204"
|
243
268
|
official: Republic of Benin
|
244
269
|
short: Benin
|
245
|
-
|
246
|
-
|
270
|
+
emoji: "\U0001F1E7\U0001F1EF"
|
271
|
+
BL:
|
272
|
+
aliases:
|
247
273
|
- Saint Barts
|
248
274
|
- St. Barts
|
249
275
|
- St. Barths
|
250
276
|
alpha2: BL
|
251
277
|
alpha3: BLM
|
252
|
-
fifa:
|
253
|
-
ioc:
|
278
|
+
fifa:
|
279
|
+
ioc:
|
254
280
|
iso_name: Saint BarthΓ©lemy
|
255
281
|
numeric: "652"
|
256
282
|
official: Territorial Collectivity of Saint BarthΓ©lemy
|
257
283
|
short: Saint Barths
|
258
|
-
|
259
|
-
|
284
|
+
emoji: "\U0001F1E7\U0001F1F1"
|
285
|
+
BM:
|
286
|
+
aliases:
|
260
287
|
- Bermudas
|
261
288
|
- Somers Isles
|
262
289
|
- The Bermudas
|
@@ -269,7 +296,8 @@ BM:
|
|
269
296
|
numeric: "60"
|
270
297
|
official: Bermuda
|
271
298
|
short: Bermuda
|
272
|
-
|
299
|
+
emoji: "\U0001F1E7\U0001F1F2"
|
300
|
+
BN:
|
273
301
|
alpha2: BN
|
274
302
|
alpha3: BRN
|
275
303
|
fifa: BRU
|
@@ -278,7 +306,8 @@ BN:
|
|
278
306
|
numeric: "96"
|
279
307
|
official: Nation of Brunei, Abode of Peace
|
280
308
|
short: Brunei
|
281
|
-
|
309
|
+
emoji: "\U0001F1E7\U0001F1F3"
|
310
|
+
BO:
|
282
311
|
alpha2: BO
|
283
312
|
alpha3: BOL
|
284
313
|
fifa: BOL
|
@@ -287,7 +316,8 @@ BO:
|
|
287
316
|
numeric: "68"
|
288
317
|
official: Plurinational State of Bolivia
|
289
318
|
short: Bolivia
|
290
|
-
|
319
|
+
emoji: "\U0001F1E7\U0001F1F4"
|
320
|
+
BR:
|
291
321
|
alpha2: BR
|
292
322
|
alpha3: BRA
|
293
323
|
fifa: BRA
|
@@ -296,7 +326,8 @@ BR:
|
|
296
326
|
numeric: "76"
|
297
327
|
official: Federative Republic of Brazil
|
298
328
|
short: Brazil
|
299
|
-
|
329
|
+
emoji: "\U0001F1E7\U0001F1F7"
|
330
|
+
BS:
|
300
331
|
alpha2: BS
|
301
332
|
alpha3: BHS
|
302
333
|
fifa: BAH
|
@@ -305,7 +336,8 @@ BS:
|
|
305
336
|
numeric: "44"
|
306
337
|
official: Commonwealth of the Bahamas
|
307
338
|
short: Bahamas
|
308
|
-
|
339
|
+
emoji: "\U0001F1E7\U0001F1F8"
|
340
|
+
BT:
|
309
341
|
alpha2: BT
|
310
342
|
alpha3: BTN
|
311
343
|
fifa: BHU
|
@@ -314,16 +346,18 @@ BT:
|
|
314
346
|
numeric: "64"
|
315
347
|
official: Kingdom of Bhutan
|
316
348
|
short: Bhutan
|
317
|
-
|
349
|
+
emoji: "\U0001F1E7\U0001F1F9"
|
350
|
+
BV:
|
318
351
|
alpha2: BV
|
319
352
|
alpha3: BVT
|
320
|
-
fifa:
|
321
|
-
ioc:
|
353
|
+
fifa:
|
354
|
+
ioc:
|
322
355
|
iso_name: Bouvet Island
|
323
356
|
numeric: "74"
|
324
357
|
official: Bouvet Island
|
325
358
|
short: Bouvet Island
|
326
|
-
|
359
|
+
emoji: "\U0001F1E7\U0001F1FB"
|
360
|
+
BW:
|
327
361
|
alpha2: BW
|
328
362
|
alpha3: BWA
|
329
363
|
fifa: BOT
|
@@ -332,7 +366,8 @@ BW:
|
|
332
366
|
numeric: "72"
|
333
367
|
official: Republic of Botswana
|
334
368
|
short: Botswana
|
335
|
-
|
369
|
+
emoji: "\U0001F1E7\U0001F1FC"
|
370
|
+
BY:
|
336
371
|
alpha2: BY
|
337
372
|
alpha3: BLR
|
338
373
|
fifa: BLR
|
@@ -341,7 +376,8 @@ BY:
|
|
341
376
|
numeric: "112"
|
342
377
|
official: Republic of Belarus
|
343
378
|
short: Belarus
|
344
|
-
|
379
|
+
emoji: "\U0001F1E7\U0001F1FE"
|
380
|
+
BZ:
|
345
381
|
alpha2: BZ
|
346
382
|
alpha3: BLZ
|
347
383
|
fifa: BLZ
|
@@ -350,7 +386,8 @@ BZ:
|
|
350
386
|
numeric: "84"
|
351
387
|
official: Belize
|
352
388
|
short: Belize
|
353
|
-
|
389
|
+
emoji: "\U0001F1E7\U0001F1FF"
|
390
|
+
CA:
|
354
391
|
alpha2: CA
|
355
392
|
alpha3: CAN
|
356
393
|
fifa: CAN
|
@@ -359,20 +396,22 @@ CA:
|
|
359
396
|
numeric: "124"
|
360
397
|
official: Canada
|
361
398
|
short: Canada
|
362
|
-
|
363
|
-
|
399
|
+
emoji: "\U0001F1E8\U0001F1E6"
|
400
|
+
CC:
|
401
|
+
aliases:
|
364
402
|
- Cocos Islands
|
365
403
|
- Keeling Islands
|
366
404
|
alpha2: CC
|
367
405
|
alpha3: CCK
|
368
|
-
fifa:
|
369
|
-
ioc:
|
406
|
+
fifa:
|
407
|
+
ioc:
|
370
408
|
iso_name: Cocos (Keeling) Islands
|
371
409
|
numeric: "166"
|
372
410
|
official: Territory of the Cocos (Keeling) Islands
|
373
411
|
short: Cocos (Keeling) Islands
|
374
|
-
|
375
|
-
|
412
|
+
emoji: "\U0001F1E8\U0001F1E8"
|
413
|
+
CD:
|
414
|
+
aliases:
|
376
415
|
- Congo-Kinshasa
|
377
416
|
- DRC
|
378
417
|
- DR Congo
|
@@ -384,7 +423,8 @@ CD:
|
|
384
423
|
numeric: "180"
|
385
424
|
official: Democratic Republic of the Congo
|
386
425
|
short: Congo, The Democratic Republic Of The
|
387
|
-
|
426
|
+
emoji: "\U0001F1E8\U0001F1E9"
|
427
|
+
CF:
|
388
428
|
alpha2: CF
|
389
429
|
alpha3: CAF
|
390
430
|
fifa: CTA
|
@@ -393,8 +433,9 @@ CF:
|
|
393
433
|
numeric: "140"
|
394
434
|
official: Central African Republic
|
395
435
|
short: Central African Republic
|
396
|
-
|
397
|
-
|
436
|
+
emoji: "\U0001F1E8\U0001F1EB"
|
437
|
+
CG:
|
438
|
+
aliases:
|
398
439
|
- Congo-Brazzaville
|
399
440
|
alpha2: CG
|
400
441
|
alpha3: COG
|
@@ -404,7 +445,8 @@ CG:
|
|
404
445
|
numeric: "178"
|
405
446
|
official: People's Republic of the Congo
|
406
447
|
short: Congo
|
407
|
-
|
448
|
+
emoji: "\U0001F1E8\U0001F1EC"
|
449
|
+
CH:
|
408
450
|
alpha2: CH
|
409
451
|
alpha3: CHE
|
410
452
|
fifa: SUI
|
@@ -413,7 +455,8 @@ CH:
|
|
413
455
|
numeric: "756"
|
414
456
|
official: Swiss Confederation
|
415
457
|
short: Switzerland
|
416
|
-
|
458
|
+
emoji: "\U0001F1E8\U0001F1ED"
|
459
|
+
CI:
|
417
460
|
alpha2: CI
|
418
461
|
alpha3: CIV
|
419
462
|
fifa: CIV
|
@@ -422,7 +465,8 @@ CI:
|
|
422
465
|
numeric: "384"
|
423
466
|
official: Republic of CΓ΄te D'Ivoire
|
424
467
|
short: Ivory Coast
|
425
|
-
|
468
|
+
emoji: "\U0001F1E8\U0001F1EE"
|
469
|
+
CK:
|
426
470
|
alpha2: CK
|
427
471
|
alpha3: COK
|
428
472
|
fifa: COK
|
@@ -431,7 +475,8 @@ CK:
|
|
431
475
|
numeric: "184"
|
432
476
|
official: Cook Islands
|
433
477
|
short: Cook Islands
|
434
|
-
|
478
|
+
emoji: "\U0001F1E8\U0001F1F0"
|
479
|
+
CL:
|
435
480
|
alpha2: CL
|
436
481
|
alpha3: CHL
|
437
482
|
fifa: CHI
|
@@ -440,7 +485,8 @@ CL:
|
|
440
485
|
numeric: "152"
|
441
486
|
official: Republic of Chile
|
442
487
|
short: Chile
|
443
|
-
|
488
|
+
emoji: "\U0001F1E8\U0001F1F1"
|
489
|
+
CM:
|
444
490
|
alpha2: CM
|
445
491
|
alpha3: CMR
|
446
492
|
fifa: CMR
|
@@ -449,7 +495,8 @@ CM:
|
|
449
495
|
numeric: "120"
|
450
496
|
official: Republic of Cameroon
|
451
497
|
short: Cameroon
|
452
|
-
|
498
|
+
emoji: "\U0001F1E8\U0001F1F2"
|
499
|
+
CN:
|
453
500
|
alpha2: CN
|
454
501
|
alpha3: CHN
|
455
502
|
fifa: CHN
|
@@ -458,7 +505,8 @@ CN:
|
|
458
505
|
numeric: "156"
|
459
506
|
official: People's Republic of China
|
460
507
|
short: China
|
461
|
-
|
508
|
+
emoji: "\U0001F1E8\U0001F1F3"
|
509
|
+
CO:
|
462
510
|
alpha2: CO
|
463
511
|
alpha3: COL
|
464
512
|
fifa: COL
|
@@ -467,7 +515,8 @@ CO:
|
|
467
515
|
numeric: "170"
|
468
516
|
official: Republic of Colombia
|
469
517
|
short: Colombia
|
470
|
-
|
518
|
+
emoji: "\U0001F1E8\U0001F1F4"
|
519
|
+
CR:
|
471
520
|
alpha2: CR
|
472
521
|
alpha3: CRI
|
473
522
|
fifa: CRC
|
@@ -476,7 +525,8 @@ CR:
|
|
476
525
|
numeric: "188"
|
477
526
|
official: Republic of Costa Rica
|
478
527
|
short: Costa Rica
|
479
|
-
|
528
|
+
emoji: "\U0001F1E8\U0001F1F7"
|
529
|
+
CU:
|
480
530
|
alpha2: CU
|
481
531
|
alpha3: CUB
|
482
532
|
fifa: CUB
|
@@ -485,7 +535,8 @@ CU:
|
|
485
535
|
numeric: "192"
|
486
536
|
official: Republic of Cuba
|
487
537
|
short: Cuba
|
488
|
-
|
538
|
+
emoji: "\U0001F1E8\U0001F1FA"
|
539
|
+
CV:
|
489
540
|
alpha2: CV
|
490
541
|
alpha3: CPV
|
491
542
|
fifa: CPV
|
@@ -494,16 +545,18 @@ CV:
|
|
494
545
|
numeric: "132"
|
495
546
|
official: Republic of Cape Verde
|
496
547
|
short: Cape Verde
|
497
|
-
|
548
|
+
emoji: "\U0001F1E8\U0001F1FB"
|
549
|
+
CX:
|
498
550
|
alpha2: CX
|
499
551
|
alpha3: CXR
|
500
|
-
fifa:
|
501
|
-
ioc:
|
552
|
+
fifa:
|
553
|
+
ioc:
|
502
554
|
iso_name: Christmas Island
|
503
555
|
numeric: "162"
|
504
556
|
official: Territory of Christmas Island
|
505
557
|
short: Christmas Island
|
506
|
-
|
558
|
+
emoji: "\U0001F1E8\U0001F1FD"
|
559
|
+
CY:
|
507
560
|
alpha2: CY
|
508
561
|
alpha3: CYP
|
509
562
|
fifa: CYP
|
@@ -512,7 +565,8 @@ CY:
|
|
512
565
|
numeric: "196"
|
513
566
|
official: Republic of Cyprus
|
514
567
|
short: Cyprus
|
515
|
-
|
568
|
+
emoji: "\U0001F1E8\U0001F1FE"
|
569
|
+
CZ:
|
516
570
|
alpha2: CZ
|
517
571
|
alpha3: CZE
|
518
572
|
fifa: CZE
|
@@ -521,7 +575,8 @@ CZ:
|
|
521
575
|
numeric: "203"
|
522
576
|
official: Czech Republic
|
523
577
|
short: Czech Republic
|
524
|
-
|
578
|
+
emoji: "\U0001F1E8\U0001F1FF"
|
579
|
+
DE:
|
525
580
|
alpha2: DE
|
526
581
|
alpha3: DEU
|
527
582
|
fifa: GER
|
@@ -530,7 +585,8 @@ DE:
|
|
530
585
|
numeric: "276"
|
531
586
|
official: Federal Republic of Germany
|
532
587
|
short: Germany
|
533
|
-
|
588
|
+
emoji: "\U0001F1E9\U0001F1EA"
|
589
|
+
DJ:
|
534
590
|
alpha2: DJ
|
535
591
|
alpha3: DJI
|
536
592
|
fifa: DJI
|
@@ -539,7 +595,8 @@ DJ:
|
|
539
595
|
numeric: "262"
|
540
596
|
official: Republic of Djibouti
|
541
597
|
short: Djibouti
|
542
|
-
|
598
|
+
emoji: "\U0001F1E9\U0001F1EF"
|
599
|
+
DK:
|
543
600
|
alpha2: DK
|
544
601
|
alpha3: DNK
|
545
602
|
fifa: DEN
|
@@ -548,7 +605,8 @@ DK:
|
|
548
605
|
numeric: "208"
|
549
606
|
official: Kingdom of Denmark
|
550
607
|
short: Denmark
|
551
|
-
|
608
|
+
emoji: "\U0001F1E9\U0001F1F0"
|
609
|
+
DM:
|
552
610
|
alpha2: DM
|
553
611
|
alpha3: DMA
|
554
612
|
fifa: DMA
|
@@ -557,7 +615,8 @@ DM:
|
|
557
615
|
numeric: "212"
|
558
616
|
official: Commonwealth of Dominica
|
559
617
|
short: Dominica
|
560
|
-
|
618
|
+
emoji: "\U0001F1E9\U0001F1F2"
|
619
|
+
DO:
|
561
620
|
alpha2: DO
|
562
621
|
alpha3: DOM
|
563
622
|
fifa: DOM
|
@@ -566,7 +625,8 @@ DO:
|
|
566
625
|
numeric: "214"
|
567
626
|
official: Dominican Republic
|
568
627
|
short: Dominican Republic
|
569
|
-
|
628
|
+
emoji: "\U0001F1E9\U0001F1F4"
|
629
|
+
DZ:
|
570
630
|
alpha2: DZ
|
571
631
|
alpha3: DZA
|
572
632
|
fifa: ALG
|
@@ -575,7 +635,8 @@ DZ:
|
|
575
635
|
numeric: "12"
|
576
636
|
official: People's Democratic Republic of Algeria
|
577
637
|
short: Algeria
|
578
|
-
|
638
|
+
emoji: "\U0001F1E9\U0001F1FF"
|
639
|
+
EC:
|
579
640
|
alpha2: EC
|
580
641
|
alpha3: ECU
|
581
642
|
fifa: ECU
|
@@ -584,7 +645,8 @@ EC:
|
|
584
645
|
numeric: "218"
|
585
646
|
official: Republic of Ecuador
|
586
647
|
short: Ecuador
|
587
|
-
|
648
|
+
emoji: "\U0001F1EA\U0001F1E8"
|
649
|
+
EE:
|
588
650
|
alpha2: EE
|
589
651
|
alpha3: EST
|
590
652
|
fifa: EST
|
@@ -593,7 +655,8 @@ EE:
|
|
593
655
|
numeric: "233"
|
594
656
|
official: Republic of Estonia
|
595
657
|
short: Estonia
|
596
|
-
|
658
|
+
emoji: "\U0001F1EA\U0001F1EA"
|
659
|
+
EG:
|
597
660
|
alpha2: EG
|
598
661
|
alpha3: EGY
|
599
662
|
fifa: EGY
|
@@ -602,16 +665,18 @@ EG:
|
|
602
665
|
numeric: "818"
|
603
666
|
official: Arab Republic of Egypt
|
604
667
|
short: Egypt
|
605
|
-
|
668
|
+
emoji: "\U0001F1EA\U0001F1EC"
|
669
|
+
EH:
|
606
670
|
alpha2: EH
|
607
671
|
alpha3: ESH
|
608
|
-
fifa:
|
609
|
-
ioc:
|
672
|
+
fifa:
|
673
|
+
ioc:
|
610
674
|
iso_name: Western Sahara
|
611
675
|
numeric: "732"
|
612
676
|
official: Western Sahara
|
613
677
|
short: Western Sahara
|
614
|
-
|
678
|
+
emoji: "\U0001F1EA\U0001F1ED"
|
679
|
+
ER:
|
615
680
|
alpha2: ER
|
616
681
|
alpha3: ERI
|
617
682
|
fifa: ERI
|
@@ -620,7 +685,8 @@ ER:
|
|
620
685
|
numeric: "232"
|
621
686
|
official: State of Eritrea
|
622
687
|
short: Eritrea
|
623
|
-
|
688
|
+
emoji: "\U0001F1EA\U0001F1F7"
|
689
|
+
ES:
|
624
690
|
alpha2: ES
|
625
691
|
alpha3: ESP
|
626
692
|
fifa: ESP
|
@@ -629,7 +695,8 @@ ES:
|
|
629
695
|
numeric: "724"
|
630
696
|
official: Kingdom of Spain
|
631
697
|
short: Spain
|
632
|
-
|
698
|
+
emoji: "\U0001F1EA\U0001F1F8"
|
699
|
+
ET:
|
633
700
|
alpha2: ET
|
634
701
|
alpha3: ETH
|
635
702
|
fifa: ETH
|
@@ -638,7 +705,8 @@ ET:
|
|
638
705
|
numeric: "231"
|
639
706
|
official: Federal Democratic Republic of Ethiopia
|
640
707
|
short: Ethiopia
|
641
|
-
|
708
|
+
emoji: "\U0001F1EA\U0001F1F9"
|
709
|
+
FI:
|
642
710
|
alpha2: FI
|
643
711
|
alpha3: FIN
|
644
712
|
fifa: FIN
|
@@ -647,7 +715,8 @@ FI:
|
|
647
715
|
numeric: "246"
|
648
716
|
official: Republic of Finland
|
649
717
|
short: Finland
|
650
|
-
|
718
|
+
emoji: "\U0001F1EB\U0001F1EE"
|
719
|
+
FJ:
|
651
720
|
alpha2: FJ
|
652
721
|
alpha3: FJI
|
653
722
|
fifa: FIJ
|
@@ -656,18 +725,20 @@ FJ:
|
|
656
725
|
numeric: "242"
|
657
726
|
official: Republic of Fiji
|
658
727
|
short: Fiji
|
659
|
-
|
660
|
-
|
728
|
+
emoji: "\U0001F1EB\U0001F1EF"
|
729
|
+
FK:
|
730
|
+
aliases:
|
661
731
|
- The Falklands
|
662
732
|
alpha2: FK
|
663
733
|
alpha3: FLK
|
664
|
-
fifa:
|
665
|
-
ioc:
|
734
|
+
fifa:
|
735
|
+
ioc:
|
666
736
|
iso_name: Falkland Islands (Malvinas)
|
667
737
|
numeric: "238"
|
668
738
|
official: Falkland Islands
|
669
739
|
short: Falkland Islands (Malvinas)
|
670
|
-
|
740
|
+
emoji: "\U0001F1EB\U0001F1F0"
|
741
|
+
FM:
|
671
742
|
alpha2: FM
|
672
743
|
alpha3: FSM
|
673
744
|
fifa: FSM
|
@@ -676,7 +747,8 @@ FM:
|
|
676
747
|
numeric: "583"
|
677
748
|
official: Federated States of Micronesia
|
678
749
|
short: Micronesia, Federated States Of
|
679
|
-
|
750
|
+
emoji: "\U0001F1EB\U0001F1F2"
|
751
|
+
FO:
|
680
752
|
alpha2: FO
|
681
753
|
alpha3: FRO
|
682
754
|
fifa: FRO
|
@@ -685,7 +757,8 @@ FO:
|
|
685
757
|
numeric: "234"
|
686
758
|
official: Faroe Islands
|
687
759
|
short: Faroe Islands
|
688
|
-
|
760
|
+
emoji: "\U0001F1EB\U0001F1F4"
|
761
|
+
FR:
|
689
762
|
alpha2: FR
|
690
763
|
alpha3: FRA
|
691
764
|
fifa: FRA
|
@@ -694,7 +767,8 @@ FR:
|
|
694
767
|
numeric: "250"
|
695
768
|
official: French Republic
|
696
769
|
short: France
|
697
|
-
|
770
|
+
emoji: "\U0001F1EB\U0001F1F7"
|
771
|
+
GA:
|
698
772
|
alpha2: GA
|
699
773
|
alpha3: GAB
|
700
774
|
fifa: GAB
|
@@ -703,8 +777,9 @@ GA:
|
|
703
777
|
numeric: "266"
|
704
778
|
official: Gabonese Republic
|
705
779
|
short: Gabon
|
706
|
-
|
707
|
-
|
780
|
+
emoji: "\U0001F1EC\U0001F1E6"
|
781
|
+
GB:
|
782
|
+
aliases:
|
708
783
|
- Britain
|
709
784
|
- U.K.
|
710
785
|
- UK
|
@@ -716,7 +791,8 @@ GB:
|
|
716
791
|
numeric: "826"
|
717
792
|
official: United Kingdom of Great Britain and Northern Ireland
|
718
793
|
short: United Kingdom
|
719
|
-
|
794
|
+
emoji: "\U0001F1EC\U0001F1E7"
|
795
|
+
GD:
|
720
796
|
alpha2: GD
|
721
797
|
alpha3: GRD
|
722
798
|
fifa: GRN
|
@@ -725,7 +801,8 @@ GD:
|
|
725
801
|
numeric: "308"
|
726
802
|
official: Grenada
|
727
803
|
short: Grenada
|
728
|
-
|
804
|
+
emoji: "\U0001F1EC\U0001F1E9"
|
805
|
+
GE:
|
729
806
|
alpha2: GE
|
730
807
|
alpha3: GEO
|
731
808
|
fifa: GEO
|
@@ -734,25 +811,28 @@ GE:
|
|
734
811
|
numeric: "268"
|
735
812
|
official: Georgia
|
736
813
|
short: Georgia
|
737
|
-
|
814
|
+
emoji: "\U0001F1EC\U0001F1EA"
|
815
|
+
GF:
|
738
816
|
alpha2: GF
|
739
817
|
alpha3: GUF
|
740
|
-
fifa:
|
741
|
-
ioc:
|
818
|
+
fifa:
|
819
|
+
ioc:
|
742
820
|
iso_name: French Guiana
|
743
821
|
numeric: "254"
|
744
822
|
official: French Guiana
|
745
823
|
short: French Guiana
|
746
|
-
|
824
|
+
emoji: "\U0001F1EC\U0001F1EB"
|
825
|
+
GG:
|
747
826
|
alpha2: GG
|
748
827
|
alpha3: GGY
|
749
|
-
fifa:
|
750
|
-
ioc:
|
828
|
+
fifa:
|
829
|
+
ioc:
|
751
830
|
iso_name: Guernsey
|
752
831
|
numeric: "831"
|
753
832
|
official: Bailiwick of Guernsey
|
754
833
|
short: Guernsey
|
755
|
-
|
834
|
+
emoji: "\U0001F1EC\U0001F1EC"
|
835
|
+
GH:
|
756
836
|
alpha2: GH
|
757
837
|
alpha3: GHA
|
758
838
|
fifa: GHA
|
@@ -761,25 +841,28 @@ GH:
|
|
761
841
|
numeric: "288"
|
762
842
|
official: Republic of Ghana
|
763
843
|
short: Ghana
|
764
|
-
|
844
|
+
emoji: "\U0001F1EC\U0001F1ED"
|
845
|
+
GI:
|
765
846
|
alpha2: GI
|
766
847
|
alpha3: GIB
|
767
|
-
fifa:
|
768
|
-
ioc:
|
848
|
+
fifa:
|
849
|
+
ioc:
|
769
850
|
iso_name: Gibraltar
|
770
851
|
numeric: "292"
|
771
852
|
official: Gibraltar
|
772
853
|
short: Gibraltar
|
773
|
-
|
854
|
+
emoji: "\U0001F1EC\U0001F1EE"
|
855
|
+
GL:
|
774
856
|
alpha2: GL
|
775
857
|
alpha3: GRL
|
776
|
-
fifa:
|
777
|
-
ioc:
|
858
|
+
fifa:
|
859
|
+
ioc:
|
778
860
|
iso_name: Greenland
|
779
861
|
numeric: "304"
|
780
862
|
official: Greenland
|
781
863
|
short: Greenland
|
782
|
-
|
864
|
+
emoji: "\U0001F1EC\U0001F1F1"
|
865
|
+
GM:
|
783
866
|
alpha2: GM
|
784
867
|
alpha3: GMB
|
785
868
|
fifa: GAM
|
@@ -788,7 +871,8 @@ GM:
|
|
788
871
|
numeric: "270"
|
789
872
|
official: Republic of the Gambia
|
790
873
|
short: Gambia
|
791
|
-
|
874
|
+
emoji: "\U0001F1EC\U0001F1F2"
|
875
|
+
GN:
|
792
876
|
alpha2: GN
|
793
877
|
alpha3: GIN
|
794
878
|
fifa: GUI
|
@@ -797,16 +881,18 @@ GN:
|
|
797
881
|
numeric: "324"
|
798
882
|
official: Republic of Guinea
|
799
883
|
short: Guinea
|
800
|
-
|
884
|
+
emoji: "\U0001F1EC\U0001F1F3"
|
885
|
+
GP:
|
801
886
|
alpha2: GP
|
802
887
|
alpha3: GLP
|
803
|
-
fifa:
|
804
|
-
ioc:
|
888
|
+
fifa:
|
889
|
+
ioc:
|
805
890
|
iso_name: Guadeloupe
|
806
891
|
numeric: "312"
|
807
892
|
official: Guadeloupe
|
808
893
|
short: Guadeloupe
|
809
|
-
|
894
|
+
emoji: "\U0001F1EC\U0001F1F5"
|
895
|
+
GQ:
|
810
896
|
alpha2: GQ
|
811
897
|
alpha3: GNQ
|
812
898
|
fifa: EQG
|
@@ -815,7 +901,8 @@ GQ:
|
|
815
901
|
numeric: "226"
|
816
902
|
official: Republic of Equatorial Guinea
|
817
903
|
short: Equatorial Guinea
|
818
|
-
|
904
|
+
emoji: "\U0001F1EC\U0001F1F6"
|
905
|
+
GR:
|
819
906
|
alpha2: GR
|
820
907
|
alpha3: GRC
|
821
908
|
fifa: GRE
|
@@ -824,16 +911,18 @@ GR:
|
|
824
911
|
numeric: "300"
|
825
912
|
official: Hellenic Republic
|
826
913
|
short: Greece
|
827
|
-
|
914
|
+
emoji: "\U0001F1EC\U0001F1F7"
|
915
|
+
GS:
|
828
916
|
alpha2: GS
|
829
917
|
alpha3: SGS
|
830
|
-
fifa:
|
831
|
-
ioc:
|
918
|
+
fifa:
|
919
|
+
ioc:
|
832
920
|
iso_name: South Georgia and the South Sandwich Islands
|
833
921
|
numeric: "239"
|
834
922
|
official: South Georgia and the South Sandwich Islands
|
835
923
|
short: South Georgia and the South Sandwich Islands
|
836
|
-
|
924
|
+
emoji: "\U0001F1EC\U0001F1F8"
|
925
|
+
GT:
|
837
926
|
alpha2: GT
|
838
927
|
alpha3: GTM
|
839
928
|
fifa: GUA
|
@@ -842,7 +931,8 @@ GT:
|
|
842
931
|
numeric: "320"
|
843
932
|
official: Republic of Guatemala
|
844
933
|
short: Guatemala
|
845
|
-
|
934
|
+
emoji: "\U0001F1EC\U0001F1F9"
|
935
|
+
GU:
|
846
936
|
alpha2: GU
|
847
937
|
alpha3: GUM
|
848
938
|
fifa: GUM
|
@@ -851,7 +941,8 @@ GU:
|
|
851
941
|
numeric: "316"
|
852
942
|
official: Guam
|
853
943
|
short: Guam
|
854
|
-
|
944
|
+
emoji: "\U0001F1EC\U0001F1FA"
|
945
|
+
GW:
|
855
946
|
alpha2: GW
|
856
947
|
alpha3: GNB
|
857
948
|
fifa: GNB
|
@@ -860,7 +951,8 @@ GW:
|
|
860
951
|
numeric: "624"
|
861
952
|
official: Republic of Guinea-Bissau
|
862
953
|
short: Guinea-Bissau
|
863
|
-
|
954
|
+
emoji: "\U0001F1EC\U0001F1FC"
|
955
|
+
GY:
|
864
956
|
alpha2: GY
|
865
957
|
alpha3: GUY
|
866
958
|
fifa: GUY
|
@@ -869,8 +961,9 @@ GY:
|
|
869
961
|
numeric: "328"
|
870
962
|
official: Co-operative Republic of Guyana
|
871
963
|
short: Guyana
|
872
|
-
|
873
|
-
|
964
|
+
emoji: "\U0001F1EC\U0001F1FE"
|
965
|
+
HK:
|
966
|
+
aliases:
|
874
967
|
- Hong Kong Special Administrative Region
|
875
968
|
alpha2: HK
|
876
969
|
alpha3: HKG
|
@@ -880,18 +973,20 @@ HK:
|
|
880
973
|
numeric: "344"
|
881
974
|
official: Hong Kong Special Administrative Region of the People's Republic of China
|
882
975
|
short: Hong Kong
|
883
|
-
|
884
|
-
|
976
|
+
emoji: "\U0001F1ED\U0001F1F0"
|
977
|
+
HM:
|
978
|
+
aliases:
|
885
979
|
- HIMI
|
886
980
|
alpha2: HM
|
887
981
|
alpha3: HMD
|
888
|
-
fifa:
|
889
|
-
ioc:
|
982
|
+
fifa:
|
983
|
+
ioc:
|
890
984
|
iso_name: Heard and McDonald Islands
|
891
985
|
numeric: "334"
|
892
986
|
official: Heard and McDonald Islands
|
893
987
|
short: Heard and McDonald Islands
|
894
|
-
|
988
|
+
emoji: "\U0001F1ED\U0001F1F2"
|
989
|
+
HN:
|
895
990
|
alpha2: HN
|
896
991
|
alpha3: HND
|
897
992
|
fifa: HON
|
@@ -900,7 +995,8 @@ HN:
|
|
900
995
|
numeric: "340"
|
901
996
|
official: Republic of Honduras
|
902
997
|
short: Honduras
|
903
|
-
|
998
|
+
emoji: "\U0001F1ED\U0001F1F3"
|
999
|
+
HR:
|
904
1000
|
alpha2: HR
|
905
1001
|
alpha3: HRV
|
906
1002
|
fifa: CRO
|
@@ -909,7 +1005,8 @@ HR:
|
|
909
1005
|
numeric: "191"
|
910
1006
|
official: Republic of Croatia
|
911
1007
|
short: Croatia
|
912
|
-
|
1008
|
+
emoji: "\U0001F1ED\U0001F1F7"
|
1009
|
+
HT:
|
913
1010
|
alpha2: HT
|
914
1011
|
alpha3: HTI
|
915
1012
|
fifa: HAI
|
@@ -918,7 +1015,8 @@ HT:
|
|
918
1015
|
numeric: "332"
|
919
1016
|
official: Republic of Haiti
|
920
1017
|
short: Haiti
|
921
|
-
|
1018
|
+
emoji: "\U0001F1ED\U0001F1F9"
|
1019
|
+
HU:
|
922
1020
|
alpha2: HU
|
923
1021
|
alpha3: HUN
|
924
1022
|
fifa: HUN
|
@@ -927,7 +1025,8 @@ HU:
|
|
927
1025
|
numeric: "348"
|
928
1026
|
official: Hungary
|
929
1027
|
short: Hungary
|
930
|
-
|
1028
|
+
emoji: "\U0001F1ED\U0001F1FA"
|
1029
|
+
ID:
|
931
1030
|
alpha2: ID
|
932
1031
|
alpha3: IDN
|
933
1032
|
fifa: IDN
|
@@ -936,7 +1035,8 @@ ID:
|
|
936
1035
|
numeric: "360"
|
937
1036
|
official: Republic of Indonesia
|
938
1037
|
short: Indonesia
|
939
|
-
|
1038
|
+
emoji: "\U0001F1EE\U0001F1E9"
|
1039
|
+
IE:
|
940
1040
|
alpha2: IE
|
941
1041
|
alpha3: IRL
|
942
1042
|
fifa: IRL
|
@@ -945,7 +1045,8 @@ IE:
|
|
945
1045
|
numeric: "372"
|
946
1046
|
official: Ireland
|
947
1047
|
short: Ireland
|
948
|
-
|
1048
|
+
emoji: "\U0001F1EE\U0001F1EA"
|
1049
|
+
IL:
|
949
1050
|
alpha2: IL
|
950
1051
|
alpha3: ISR
|
951
1052
|
fifa: ISR
|
@@ -954,18 +1055,20 @@ IL:
|
|
954
1055
|
numeric: "376"
|
955
1056
|
official: State of Israel
|
956
1057
|
short: Israel
|
957
|
-
|
958
|
-
|
1058
|
+
emoji: "\U0001F1EE\U0001F1F1"
|
1059
|
+
IM:
|
1060
|
+
aliases:
|
959
1061
|
- Mann
|
960
1062
|
alpha2: IM
|
961
1063
|
alpha3: IMN
|
962
|
-
fifa:
|
963
|
-
ioc:
|
1064
|
+
fifa:
|
1065
|
+
ioc:
|
964
1066
|
iso_name: Isle of Man
|
965
1067
|
numeric: "833"
|
966
1068
|
official: Isle of Man
|
967
1069
|
short: Isle of Man
|
968
|
-
|
1070
|
+
emoji: "\U0001F1EE\U0001F1F2"
|
1071
|
+
IN:
|
969
1072
|
alpha2: IN
|
970
1073
|
alpha3: IND
|
971
1074
|
fifa: IND
|
@@ -974,19 +1077,21 @@ IN:
|
|
974
1077
|
numeric: "356"
|
975
1078
|
official: Republic of India
|
976
1079
|
short: India
|
977
|
-
|
978
|
-
|
1080
|
+
emoji: "\U0001F1EE\U0001F1F3"
|
1081
|
+
IO:
|
1082
|
+
aliases:
|
979
1083
|
- BIOT
|
980
1084
|
- Chagos Islands
|
981
1085
|
alpha2: IO
|
982
1086
|
alpha3: IOT
|
983
|
-
fifa:
|
984
|
-
ioc:
|
1087
|
+
fifa:
|
1088
|
+
ioc:
|
985
1089
|
iso_name: British Indian Ocean Territory
|
986
1090
|
numeric: "86"
|
987
1091
|
official: British Indian Ocean Territory
|
988
1092
|
short: British Indian Ocean Territory
|
989
|
-
|
1093
|
+
emoji: "\U0001F1EE\U0001F1F4"
|
1094
|
+
IQ:
|
990
1095
|
alpha2: IQ
|
991
1096
|
alpha3: IRQ
|
992
1097
|
fifa: IRQ
|
@@ -995,7 +1100,8 @@ IQ:
|
|
995
1100
|
numeric: "368"
|
996
1101
|
official: Republic of Iraq
|
997
1102
|
short: Iraq
|
998
|
-
|
1103
|
+
emoji: "\U0001F1EE\U0001F1F6"
|
1104
|
+
IR:
|
999
1105
|
alpha2: IR
|
1000
1106
|
alpha3: IRN
|
1001
1107
|
fifa: IRN
|
@@ -1004,7 +1110,8 @@ IR:
|
|
1004
1110
|
numeric: "364"
|
1005
1111
|
official: Islamic Republic of Iran
|
1006
1112
|
short: Iran
|
1007
|
-
|
1113
|
+
emoji: "\U0001F1EE\U0001F1F7"
|
1114
|
+
IS:
|
1008
1115
|
alpha2: IS
|
1009
1116
|
alpha3: ISL
|
1010
1117
|
fifa: ISL
|
@@ -1013,7 +1120,8 @@ IS:
|
|
1013
1120
|
numeric: "352"
|
1014
1121
|
official: Iceland
|
1015
1122
|
short: Iceland
|
1016
|
-
|
1123
|
+
emoji: "\U0001F1EE\U0001F1F8"
|
1124
|
+
IT:
|
1017
1125
|
alpha2: IT
|
1018
1126
|
alpha3: ITA
|
1019
1127
|
fifa: ITA
|
@@ -1022,16 +1130,18 @@ IT:
|
|
1022
1130
|
numeric: "380"
|
1023
1131
|
official: Italian Republic
|
1024
1132
|
short: Italy
|
1025
|
-
|
1133
|
+
emoji: "\U0001F1EE\U0001F1F9"
|
1134
|
+
JE:
|
1026
1135
|
alpha2: JE
|
1027
1136
|
alpha3: JEY
|
1028
|
-
fifa:
|
1029
|
-
ioc:
|
1137
|
+
fifa:
|
1138
|
+
ioc:
|
1030
1139
|
iso_name: Jersey
|
1031
1140
|
numeric: "832"
|
1032
1141
|
official: Bailiwick of Jersey
|
1033
1142
|
short: Jersey
|
1034
|
-
|
1143
|
+
emoji: "\U0001F1EF\U0001F1EA"
|
1144
|
+
JM:
|
1035
1145
|
alpha2: JM
|
1036
1146
|
alpha3: JAM
|
1037
1147
|
fifa: JAM
|
@@ -1040,8 +1150,9 @@ JM:
|
|
1040
1150
|
numeric: "388"
|
1041
1151
|
official: Jamaica
|
1042
1152
|
short: Jamaica
|
1043
|
-
|
1044
|
-
|
1153
|
+
emoji: "\U0001F1EF\U0001F1F2"
|
1154
|
+
JO:
|
1155
|
+
aliases:
|
1045
1156
|
- Kingdom of Jordan
|
1046
1157
|
alpha2: JO
|
1047
1158
|
alpha3: JOR
|
@@ -1051,7 +1162,8 @@ JO:
|
|
1051
1162
|
numeric: "400"
|
1052
1163
|
official: Hashemite Kingdom of Jordan
|
1053
1164
|
short: Jordan
|
1054
|
-
|
1165
|
+
emoji: "\U0001F1EF\U0001F1F4"
|
1166
|
+
JP:
|
1055
1167
|
alpha2: JP
|
1056
1168
|
alpha3: JPN
|
1057
1169
|
fifa: JPN
|
@@ -1060,7 +1172,8 @@ JP:
|
|
1060
1172
|
numeric: "392"
|
1061
1173
|
official: Japan
|
1062
1174
|
short: Japan
|
1063
|
-
|
1175
|
+
emoji: "\U0001F1EF\U0001F1F5"
|
1176
|
+
KE:
|
1064
1177
|
alpha2: KE
|
1065
1178
|
alpha3: KEN
|
1066
1179
|
fifa: KEN
|
@@ -1069,7 +1182,8 @@ KE:
|
|
1069
1182
|
numeric: "404"
|
1070
1183
|
official: Republic of Kenya
|
1071
1184
|
short: Kenya
|
1072
|
-
|
1185
|
+
emoji: "\U0001F1F0\U0001F1EA"
|
1186
|
+
KG:
|
1073
1187
|
alpha2: KG
|
1074
1188
|
alpha3: KGZ
|
1075
1189
|
fifa: KGZ
|
@@ -1078,7 +1192,8 @@ KG:
|
|
1078
1192
|
numeric: "417"
|
1079
1193
|
official: Kyrgyz Republic
|
1080
1194
|
short: Kyrgyzstan
|
1081
|
-
|
1195
|
+
emoji: "\U0001F1F0\U0001F1EC"
|
1196
|
+
KH:
|
1082
1197
|
alpha2: KH
|
1083
1198
|
alpha3: KHM
|
1084
1199
|
fifa: CAM
|
@@ -1087,7 +1202,8 @@ KH:
|
|
1087
1202
|
numeric: "116"
|
1088
1203
|
official: Kingdom of Cambodia
|
1089
1204
|
short: Cambodia
|
1090
|
-
|
1205
|
+
emoji: "\U0001F1F0\U0001F1ED"
|
1206
|
+
KI:
|
1091
1207
|
alpha2: KI
|
1092
1208
|
alpha3: KIR
|
1093
1209
|
fifa: KIR
|
@@ -1096,7 +1212,8 @@ KI:
|
|
1096
1212
|
numeric: "296"
|
1097
1213
|
official: Republic of Kiribati
|
1098
1214
|
short: Kiribati
|
1099
|
-
|
1215
|
+
emoji: "\U0001F1F0\U0001F1EE"
|
1216
|
+
KM:
|
1100
1217
|
alpha2: KM
|
1101
1218
|
alpha3: COM
|
1102
1219
|
fifa: COM
|
@@ -1105,8 +1222,9 @@ KM:
|
|
1105
1222
|
numeric: "174"
|
1106
1223
|
official: Union of the Comoros
|
1107
1224
|
short: Comoros
|
1108
|
-
|
1109
|
-
|
1225
|
+
emoji: "\U0001F1F0\U0001F1F2"
|
1226
|
+
KN:
|
1227
|
+
aliases:
|
1110
1228
|
- Federation of Saint Christopher and Nevi
|
1111
1229
|
alpha2: KN
|
1112
1230
|
alpha3: KNA
|
@@ -1116,8 +1234,9 @@ KN:
|
|
1116
1234
|
numeric: "659"
|
1117
1235
|
official: Federation of Saint Kitts and Nevis
|
1118
1236
|
short: Saint Kitts And Nevis
|
1119
|
-
|
1120
|
-
|
1237
|
+
emoji: "\U0001F1F0\U0001F1F3"
|
1238
|
+
KP:
|
1239
|
+
aliases:
|
1121
1240
|
- DPRK
|
1122
1241
|
- N Korea
|
1123
1242
|
- N. Korea
|
@@ -1129,8 +1248,9 @@ KP:
|
|
1129
1248
|
numeric: "408"
|
1130
1249
|
official: Democratic People's Republic of Korea
|
1131
1250
|
short: North Korea
|
1132
|
-
|
1133
|
-
|
1251
|
+
emoji: "\U0001F1F0\U0001F1F5"
|
1252
|
+
KR:
|
1253
|
+
aliases:
|
1134
1254
|
- S Korea
|
1135
1255
|
- S. Korea
|
1136
1256
|
alpha2: KR
|
@@ -1141,7 +1261,8 @@ KR:
|
|
1141
1261
|
numeric: "410"
|
1142
1262
|
official: Republic of Korea
|
1143
1263
|
short: South Korea
|
1144
|
-
|
1264
|
+
emoji: "\U0001F1F0\U0001F1F7"
|
1265
|
+
KW:
|
1145
1266
|
alpha2: KW
|
1146
1267
|
alpha3: KWT
|
1147
1268
|
fifa: KUW
|
@@ -1150,8 +1271,9 @@ KW:
|
|
1150
1271
|
numeric: "414"
|
1151
1272
|
official: State of Kuwait
|
1152
1273
|
short: Kuwait
|
1153
|
-
|
1154
|
-
|
1274
|
+
emoji: "\U0001F1F0\U0001F1FC"
|
1275
|
+
KY:
|
1276
|
+
aliases:
|
1155
1277
|
- Caymans
|
1156
1278
|
alpha2: KY
|
1157
1279
|
alpha3: CYM
|
@@ -1161,7 +1283,8 @@ KY:
|
|
1161
1283
|
numeric: "136"
|
1162
1284
|
official: Cayman Islands
|
1163
1285
|
short: Cayman Islands
|
1164
|
-
|
1286
|
+
emoji: "\U0001F1F0\U0001F1FE"
|
1287
|
+
KZ:
|
1165
1288
|
alpha2: KZ
|
1166
1289
|
alpha3: KAZ
|
1167
1290
|
fifa: KAZ
|
@@ -1170,7 +1293,8 @@ KZ:
|
|
1170
1293
|
numeric: "398"
|
1171
1294
|
official: Republic of Kazakhstan
|
1172
1295
|
short: Kazakhstan
|
1173
|
-
|
1296
|
+
emoji: "\U0001F1F0\U0001F1FF"
|
1297
|
+
LA:
|
1174
1298
|
alpha2: LA
|
1175
1299
|
alpha3: LAO
|
1176
1300
|
fifa: LAO
|
@@ -1180,7 +1304,8 @@ LA:
|
|
1180
1304
|
official: Lao People's Democratic Republic
|
1181
1305
|
short: Lao People's Democratic Republic
|
1182
1306
|
simple: Laos
|
1183
|
-
|
1307
|
+
emoji: "\U0001F1F1\U0001F1E6"
|
1308
|
+
LB:
|
1184
1309
|
alpha2: LB
|
1185
1310
|
alpha3: LBN
|
1186
1311
|
fifa: LIB
|
@@ -1189,8 +1314,9 @@ LB:
|
|
1189
1314
|
numeric: "422"
|
1190
1315
|
official: Lebanese Republic
|
1191
1316
|
short: Lebanon
|
1192
|
-
|
1193
|
-
|
1317
|
+
emoji: "\U0001F1F1\U0001F1E7"
|
1318
|
+
LC:
|
1319
|
+
aliases:
|
1194
1320
|
- St. Lucia
|
1195
1321
|
alpha2: LC
|
1196
1322
|
alpha3: LCA
|
@@ -1200,7 +1326,8 @@ LC:
|
|
1200
1326
|
numeric: "662"
|
1201
1327
|
official: Saint Lucia
|
1202
1328
|
short: Saint Lucia
|
1203
|
-
|
1329
|
+
emoji: "\U0001F1F1\U0001F1E8"
|
1330
|
+
LI:
|
1204
1331
|
alpha2: LI
|
1205
1332
|
alpha3: LIE
|
1206
1333
|
fifa: LIE
|
@@ -1209,7 +1336,8 @@ LI:
|
|
1209
1336
|
numeric: "438"
|
1210
1337
|
official: Principality of Liechtenstein
|
1211
1338
|
short: Liechtenstein
|
1212
|
-
|
1339
|
+
emoji: "\U0001F1F1\U0001F1EE"
|
1340
|
+
LK:
|
1213
1341
|
alpha2: LK
|
1214
1342
|
alpha3: LKA
|
1215
1343
|
fifa: SRI
|
@@ -1218,7 +1346,8 @@ LK:
|
|
1218
1346
|
numeric: "144"
|
1219
1347
|
official: Democratic Socialist Republic of Sri Lanka
|
1220
1348
|
short: Sri Lanka
|
1221
|
-
|
1349
|
+
emoji: "\U0001F1F1\U0001F1F0"
|
1350
|
+
LR:
|
1222
1351
|
alpha2: LR
|
1223
1352
|
alpha3: LBR
|
1224
1353
|
fifa: LBR
|
@@ -1227,7 +1356,8 @@ LR:
|
|
1227
1356
|
numeric: "430"
|
1228
1357
|
official: Republic of Liberia
|
1229
1358
|
short: Liberia
|
1230
|
-
|
1359
|
+
emoji: "\U0001F1F1\U0001F1F7"
|
1360
|
+
LS:
|
1231
1361
|
alpha2: LS
|
1232
1362
|
alpha3: LSO
|
1233
1363
|
fifa: LES
|
@@ -1236,7 +1366,8 @@ LS:
|
|
1236
1366
|
numeric: "426"
|
1237
1367
|
official: Kingdom of Lesoth
|
1238
1368
|
short: Lesotho
|
1239
|
-
|
1369
|
+
emoji: "\U0001F1F1\U0001F1F8"
|
1370
|
+
LT:
|
1240
1371
|
alpha2: LT
|
1241
1372
|
alpha3: LTU
|
1242
1373
|
fifa: LTU
|
@@ -1245,7 +1376,8 @@ LT:
|
|
1245
1376
|
numeric: "440"
|
1246
1377
|
official: Republic of Lithuania
|
1247
1378
|
short: Lithuania
|
1248
|
-
|
1379
|
+
emoji: "\U0001F1F1\U0001F1F9"
|
1380
|
+
LU:
|
1249
1381
|
alpha2: LU
|
1250
1382
|
alpha3: LUX
|
1251
1383
|
fifa: LUX
|
@@ -1254,7 +1386,8 @@ LU:
|
|
1254
1386
|
numeric: "442"
|
1255
1387
|
official: Grand Duchy of Luxembourg
|
1256
1388
|
short: Luxembourg
|
1257
|
-
|
1389
|
+
emoji: "\U0001F1F1\U0001F1FA"
|
1390
|
+
LV:
|
1258
1391
|
alpha2: LV
|
1259
1392
|
alpha3: LVA
|
1260
1393
|
fifa: LVA
|
@@ -1263,7 +1396,8 @@ LV:
|
|
1263
1396
|
numeric: "428"
|
1264
1397
|
official: Republic of Latvia
|
1265
1398
|
short: Latvia
|
1266
|
-
|
1399
|
+
emoji: "\U0001F1F1\U0001F1FB"
|
1400
|
+
LY:
|
1267
1401
|
alpha2: LY
|
1268
1402
|
alpha3: LBY
|
1269
1403
|
fifa: LBY
|
@@ -1272,7 +1406,8 @@ LY:
|
|
1272
1406
|
numeric: "434"
|
1273
1407
|
official: State of Libya
|
1274
1408
|
short: Libya
|
1275
|
-
|
1409
|
+
emoji: "\U0001F1F1\U0001F1FE"
|
1410
|
+
MA:
|
1276
1411
|
alpha2: MA
|
1277
1412
|
alpha3: MAR
|
1278
1413
|
fifa: MAR
|
@@ -1281,7 +1416,8 @@ MA:
|
|
1281
1416
|
numeric: "504"
|
1282
1417
|
official: Kingdom of Morocco
|
1283
1418
|
short: Morocco
|
1284
|
-
|
1419
|
+
emoji: "\U0001F1F2\U0001F1E6"
|
1420
|
+
MC:
|
1285
1421
|
alpha2: MC
|
1286
1422
|
alpha3: MCO
|
1287
1423
|
fifa: MON
|
@@ -1290,7 +1426,8 @@ MC:
|
|
1290
1426
|
numeric: "492"
|
1291
1427
|
official: Principality of Monaco
|
1292
1428
|
short: Monaco
|
1293
|
-
|
1429
|
+
emoji: "\U0001F1F2\U0001F1E8"
|
1430
|
+
MD:
|
1294
1431
|
alpha2: MD
|
1295
1432
|
alpha3: MDA
|
1296
1433
|
fifa: MDA
|
@@ -1299,7 +1436,8 @@ MD:
|
|
1299
1436
|
numeric: "498"
|
1300
1437
|
official: Republic of Moldova
|
1301
1438
|
short: Moldova, Republic of
|
1302
|
-
|
1439
|
+
emoji: "\U0001F1F2\U0001F1E9"
|
1440
|
+
ME:
|
1303
1441
|
alpha2: ME
|
1304
1442
|
alpha3: MNE
|
1305
1443
|
fifa: MNE
|
@@ -1308,18 +1446,20 @@ ME:
|
|
1308
1446
|
numeric: "499"
|
1309
1447
|
official: Montenegro
|
1310
1448
|
short: Montenegro
|
1311
|
-
|
1312
|
-
|
1449
|
+
emoji: "\U0001F1F2\U0001F1EA"
|
1450
|
+
MF:
|
1451
|
+
aliases:
|
1313
1452
|
- St. Martin
|
1314
1453
|
alpha2: MF
|
1315
1454
|
alpha3: MAF
|
1316
|
-
fifa:
|
1317
|
-
ioc:
|
1455
|
+
fifa:
|
1456
|
+
ioc:
|
1318
1457
|
iso_name: Saint Martin
|
1319
1458
|
numeric: "663"
|
1320
1459
|
official: Saint Martin
|
1321
1460
|
short: Saint Martin
|
1322
|
-
|
1461
|
+
emoji: "\U0001F1F2\U0001F1EB"
|
1462
|
+
MG:
|
1323
1463
|
alpha2: MG
|
1324
1464
|
alpha3: MDG
|
1325
1465
|
fifa: MAD
|
@@ -1328,7 +1468,8 @@ MG:
|
|
1328
1468
|
numeric: "450"
|
1329
1469
|
official: Republic of Madagascar
|
1330
1470
|
short: Madagascar
|
1331
|
-
|
1471
|
+
emoji: "\U0001F1F2\U0001F1EC"
|
1472
|
+
MH:
|
1332
1473
|
alpha2: MH
|
1333
1474
|
alpha3: MHL
|
1334
1475
|
fifa: MHL
|
@@ -1337,7 +1478,8 @@ MH:
|
|
1337
1478
|
numeric: "584"
|
1338
1479
|
official: Republic of the Marshall Islands
|
1339
1480
|
short: Marshall Islands
|
1340
|
-
|
1481
|
+
emoji: "\U0001F1F2\U0001F1ED"
|
1482
|
+
MK:
|
1341
1483
|
alpha2: MK
|
1342
1484
|
alpha3: MKD
|
1343
1485
|
fifa: MKD
|
@@ -1346,7 +1488,8 @@ MK:
|
|
1346
1488
|
numeric: "807"
|
1347
1489
|
official: Republic of Macedonia
|
1348
1490
|
short: Macedonia
|
1349
|
-
|
1491
|
+
emoji: "\U0001F1F2\U0001F1F0"
|
1492
|
+
ML:
|
1350
1493
|
alpha2: ML
|
1351
1494
|
alpha3: MLI
|
1352
1495
|
fifa: MLI
|
@@ -1355,8 +1498,9 @@ ML:
|
|
1355
1498
|
numeric: "466"
|
1356
1499
|
official: Republic of Mali
|
1357
1500
|
short: Mali
|
1358
|
-
|
1359
|
-
|
1501
|
+
emoji: "\U0001F1F2\U0001F1F1"
|
1502
|
+
MM:
|
1503
|
+
aliases:
|
1360
1504
|
- Burma
|
1361
1505
|
alpha2: MM
|
1362
1506
|
alpha3: MMR
|
@@ -1366,7 +1510,8 @@ MM:
|
|
1366
1510
|
numeric: "104"
|
1367
1511
|
official: Republic of the Union of Myanmar
|
1368
1512
|
short: Myanmar
|
1369
|
-
|
1513
|
+
emoji: "\U0001F1F2\U0001F1F2"
|
1514
|
+
MN:
|
1370
1515
|
alpha2: MN
|
1371
1516
|
alpha3: MNG
|
1372
1517
|
fifa: MGL
|
@@ -1375,39 +1520,43 @@ MN:
|
|
1375
1520
|
numeric: "496"
|
1376
1521
|
official: Mongolia
|
1377
1522
|
short: Mongolia
|
1378
|
-
|
1379
|
-
|
1523
|
+
emoji: "\U0001F1F2\U0001F1F3"
|
1524
|
+
MO:
|
1525
|
+
aliases:
|
1380
1526
|
- Macao
|
1381
1527
|
- Macao Special Administrative Region
|
1382
1528
|
alpha2: MO
|
1383
1529
|
alpha3: MAC
|
1384
|
-
fifa:
|
1385
|
-
ioc:
|
1530
|
+
fifa:
|
1531
|
+
ioc:
|
1386
1532
|
iso_name: Macao
|
1387
1533
|
numeric: "446"
|
1388
1534
|
official: Macao Special Administrative Region of the People's Republic of China
|
1389
1535
|
short: Macao
|
1390
|
-
|
1391
|
-
|
1536
|
+
emoji: "\U0001F1F2\U0001F1F4"
|
1537
|
+
MP:
|
1538
|
+
aliases:
|
1392
1539
|
- CNMI
|
1393
1540
|
alpha2: MP
|
1394
1541
|
alpha3: MNP
|
1395
|
-
fifa:
|
1396
|
-
ioc:
|
1542
|
+
fifa:
|
1543
|
+
ioc:
|
1397
1544
|
iso_name: Northern Mariana Islands
|
1398
1545
|
numeric: "580"
|
1399
1546
|
official: Commonwealth of the Northern Mariana Islands
|
1400
1547
|
short: Northern Mariana Islands
|
1401
|
-
|
1548
|
+
emoji: "\U0001F1F2\U0001F1F5"
|
1549
|
+
MQ:
|
1402
1550
|
alpha2: MQ
|
1403
1551
|
alpha3: MTQ
|
1404
|
-
fifa:
|
1405
|
-
ioc:
|
1552
|
+
fifa:
|
1553
|
+
ioc:
|
1406
1554
|
iso_name: Martinique
|
1407
1555
|
numeric: "474"
|
1408
1556
|
official: Martinique
|
1409
1557
|
short: Martinique
|
1410
|
-
|
1558
|
+
emoji: "\U0001F1F2\U0001F1F6"
|
1559
|
+
MR:
|
1411
1560
|
alpha2: MR
|
1412
1561
|
alpha3: MRT
|
1413
1562
|
fifa: MTN
|
@@ -1416,16 +1565,18 @@ MR:
|
|
1416
1565
|
numeric: "478"
|
1417
1566
|
official: Islamic Republic of Mauritania
|
1418
1567
|
short: Mauritania
|
1419
|
-
|
1568
|
+
emoji: "\U0001F1F2\U0001F1F7"
|
1569
|
+
MS:
|
1420
1570
|
alpha2: MS
|
1421
1571
|
alpha3: MSR
|
1422
|
-
fifa:
|
1423
|
-
ioc:
|
1572
|
+
fifa:
|
1573
|
+
ioc:
|
1424
1574
|
iso_name: Montserrat
|
1425
1575
|
numeric: "500"
|
1426
1576
|
official: Montserrat
|
1427
1577
|
short: Montserrat
|
1428
|
-
|
1578
|
+
emoji: "\U0001F1F2\U0001F1F8"
|
1579
|
+
MT:
|
1429
1580
|
alpha2: MT
|
1430
1581
|
alpha3: MLT
|
1431
1582
|
fifa: MLT
|
@@ -1434,7 +1585,8 @@ MT:
|
|
1434
1585
|
numeric: "470"
|
1435
1586
|
official: Republic of Malta
|
1436
1587
|
short: Malta
|
1437
|
-
|
1588
|
+
emoji: "\U0001F1F2\U0001F1F9"
|
1589
|
+
MU:
|
1438
1590
|
alpha2: MU
|
1439
1591
|
alpha3: MUS
|
1440
1592
|
fifa: MRI
|
@@ -1443,8 +1595,9 @@ MU:
|
|
1443
1595
|
numeric: "480"
|
1444
1596
|
official: Republic of Mauritius
|
1445
1597
|
short: Mauritius
|
1446
|
-
|
1447
|
-
|
1598
|
+
emoji: "\U0001F1F2\U0001F1FA"
|
1599
|
+
MV:
|
1600
|
+
aliases:
|
1448
1601
|
- Maldive Islands
|
1449
1602
|
alpha2: MV
|
1450
1603
|
alpha3: MDV
|
@@ -1454,7 +1607,8 @@ MV:
|
|
1454
1607
|
numeric: "462"
|
1455
1608
|
official: Republic of the Maldives
|
1456
1609
|
short: Maldives
|
1457
|
-
|
1610
|
+
emoji: "\U0001F1F2\U0001F1FB"
|
1611
|
+
MW:
|
1458
1612
|
alpha2: MW
|
1459
1613
|
alpha3: MWI
|
1460
1614
|
fifa: MWI
|
@@ -1463,7 +1617,8 @@ MW:
|
|
1463
1617
|
numeric: "454"
|
1464
1618
|
official: Republic of Malawi
|
1465
1619
|
short: Malawi
|
1466
|
-
|
1620
|
+
emoji: "\U0001F1F2\U0001F1FC"
|
1621
|
+
MX:
|
1467
1622
|
alpha2: MX
|
1468
1623
|
alpha3: MEX
|
1469
1624
|
fifa: MEX
|
@@ -1472,7 +1627,8 @@ MX:
|
|
1472
1627
|
numeric: "484"
|
1473
1628
|
official: United Mexican States
|
1474
1629
|
short: Mexico
|
1475
|
-
|
1630
|
+
emoji: "\U0001F1F2\U0001F1FD"
|
1631
|
+
MY:
|
1476
1632
|
alpha2: MY
|
1477
1633
|
alpha3: MYS
|
1478
1634
|
fifa: MAS
|
@@ -1481,7 +1637,8 @@ MY:
|
|
1481
1637
|
numeric: "458"
|
1482
1638
|
official: Malaysia
|
1483
1639
|
short: Malaysia
|
1484
|
-
|
1640
|
+
emoji: "\U0001F1F2\U0001F1FE"
|
1641
|
+
MZ:
|
1485
1642
|
alpha2: MZ
|
1486
1643
|
alpha3: MOZ
|
1487
1644
|
fifa: MOZ
|
@@ -1490,7 +1647,8 @@ MZ:
|
|
1490
1647
|
numeric: "508"
|
1491
1648
|
official: Mozambique
|
1492
1649
|
short: Mozambique
|
1493
|
-
|
1650
|
+
emoji: "\U0001F1F2\U0001F1FF"
|
1651
|
+
NA:
|
1494
1652
|
alpha2: NA
|
1495
1653
|
alpha3: NAM
|
1496
1654
|
fifa: NAM
|
@@ -1499,16 +1657,18 @@ NA:
|
|
1499
1657
|
numeric: "516"
|
1500
1658
|
official: Namibia
|
1501
1659
|
short: Namibia
|
1502
|
-
|
1660
|
+
emoji: "\U0001F1F3\U0001F1E6"
|
1661
|
+
NC:
|
1503
1662
|
alpha2: NC
|
1504
1663
|
alpha3: NCL
|
1505
|
-
fifa:
|
1506
|
-
ioc:
|
1664
|
+
fifa:
|
1665
|
+
ioc:
|
1507
1666
|
iso_name: New Caledonia
|
1508
1667
|
numeric: "540"
|
1509
1668
|
official: New Caledonia
|
1510
1669
|
short: New Caledonia
|
1511
|
-
|
1670
|
+
emoji: "\U0001F1F3\U0001F1E8"
|
1671
|
+
NE:
|
1512
1672
|
alpha2: NE
|
1513
1673
|
alpha3: NER
|
1514
1674
|
fifa: NIG
|
@@ -1517,16 +1677,18 @@ NE:
|
|
1517
1677
|
numeric: "562"
|
1518
1678
|
official: Republic of Niger
|
1519
1679
|
short: Niger
|
1520
|
-
|
1680
|
+
emoji: "\U0001F1F3\U0001F1EA"
|
1681
|
+
NF:
|
1521
1682
|
alpha2: NF
|
1522
1683
|
alpha3: NFK
|
1523
|
-
fifa:
|
1524
|
-
ioc:
|
1684
|
+
fifa:
|
1685
|
+
ioc:
|
1525
1686
|
iso_name: Norfolk Island
|
1526
1687
|
numeric: "574"
|
1527
1688
|
official: Territory of Norfolk Island
|
1528
1689
|
short: Norfolk Island
|
1529
|
-
|
1690
|
+
emoji: "\U0001F1F3\U0001F1EB"
|
1691
|
+
NG:
|
1530
1692
|
alpha2: NG
|
1531
1693
|
alpha3: NGA
|
1532
1694
|
fifa: NGA
|
@@ -1535,7 +1697,8 @@ NG:
|
|
1535
1697
|
numeric: "566"
|
1536
1698
|
official: Federal Republic of Nigeria
|
1537
1699
|
short: Nigeria
|
1538
|
-
|
1700
|
+
emoji: "\U0001F1F3\U0001F1EC"
|
1701
|
+
NI:
|
1539
1702
|
alpha2: NI
|
1540
1703
|
alpha3: NIC
|
1541
1704
|
fifa: NCA
|
@@ -1544,7 +1707,8 @@ NI:
|
|
1544
1707
|
numeric: "558"
|
1545
1708
|
official: Republic of Nicaragua
|
1546
1709
|
short: Nicaragua
|
1547
|
-
|
1710
|
+
emoji: "\U0001F1F3\U0001F1EE"
|
1711
|
+
NL:
|
1548
1712
|
alpha2: NL
|
1549
1713
|
alpha3: NLD
|
1550
1714
|
fifa: NED
|
@@ -1553,8 +1717,9 @@ NL:
|
|
1553
1717
|
numeric: "528"
|
1554
1718
|
official: Netherlands
|
1555
1719
|
short: Netherlands
|
1556
|
-
"
|
1557
|
-
|
1720
|
+
emoji: "\U0001F1F3\U0001F1F1"
|
1721
|
+
'NO':
|
1722
|
+
alpha2: 'NO'
|
1558
1723
|
alpha3: NOR
|
1559
1724
|
fifa: NOR
|
1560
1725
|
ioc: NOR
|
@@ -1562,7 +1727,8 @@ NL:
|
|
1562
1727
|
numeric: "578"
|
1563
1728
|
official: Kingdom of Norway
|
1564
1729
|
short: Norway
|
1565
|
-
|
1730
|
+
emoji: "\U0001F1F3\U0001F1F4"
|
1731
|
+
NP:
|
1566
1732
|
alpha2: NP
|
1567
1733
|
alpha3: NPL
|
1568
1734
|
fifa: NEP
|
@@ -1571,7 +1737,8 @@ NP:
|
|
1571
1737
|
numeric: "524"
|
1572
1738
|
official: Federal Democratic Republic of Nepal
|
1573
1739
|
short: Nepal
|
1574
|
-
|
1740
|
+
emoji: "\U0001F1F3\U0001F1F5"
|
1741
|
+
NR:
|
1575
1742
|
alpha2: NR
|
1576
1743
|
alpha3: NRU
|
1577
1744
|
fifa: NRU
|
@@ -1580,16 +1747,18 @@ NR:
|
|
1580
1747
|
numeric: "520"
|
1581
1748
|
official: Republic of Nauru
|
1582
1749
|
short: Nauru
|
1583
|
-
|
1750
|
+
emoji: "\U0001F1F3\U0001F1F7"
|
1751
|
+
NU:
|
1584
1752
|
alpha2: NU
|
1585
1753
|
alpha3: NIU
|
1586
|
-
fifa:
|
1587
|
-
ioc:
|
1754
|
+
fifa:
|
1755
|
+
ioc:
|
1588
1756
|
iso_name: Niue
|
1589
1757
|
numeric: "570"
|
1590
1758
|
official: Niue
|
1591
1759
|
short: Niue
|
1592
|
-
|
1760
|
+
emoji: "\U0001F1F3\U0001F1FA"
|
1761
|
+
NZ:
|
1593
1762
|
alpha2: NZ
|
1594
1763
|
alpha3: NZL
|
1595
1764
|
fifa: NZL
|
@@ -1598,7 +1767,8 @@ NZ:
|
|
1598
1767
|
numeric: "554"
|
1599
1768
|
official: New Zealand
|
1600
1769
|
short: New Zealand
|
1601
|
-
|
1770
|
+
emoji: "\U0001F1F3\U0001F1FF"
|
1771
|
+
OM:
|
1602
1772
|
alpha2: OM
|
1603
1773
|
alpha3: OMN
|
1604
1774
|
fifa: OMA
|
@@ -1607,7 +1777,8 @@ OM:
|
|
1607
1777
|
numeric: "512"
|
1608
1778
|
official: Sultanate of Oman
|
1609
1779
|
short: Oman
|
1610
|
-
|
1780
|
+
emoji: "\U0001F1F4\U0001F1F2"
|
1781
|
+
PA:
|
1611
1782
|
alpha2: PA
|
1612
1783
|
alpha3: PAN
|
1613
1784
|
fifa: PAN
|
@@ -1616,7 +1787,8 @@ PA:
|
|
1616
1787
|
numeric: "591"
|
1617
1788
|
official: Republic of Panama
|
1618
1789
|
short: Panama
|
1619
|
-
|
1790
|
+
emoji: "\U0001F1F5\U0001F1E6"
|
1791
|
+
PE:
|
1620
1792
|
alpha2: PE
|
1621
1793
|
alpha3: PER
|
1622
1794
|
fifa: PER
|
@@ -1625,16 +1797,18 @@ PE:
|
|
1625
1797
|
numeric: "604"
|
1626
1798
|
official: Republic of Peru
|
1627
1799
|
short: Peru
|
1628
|
-
|
1800
|
+
emoji: "\U0001F1F5\U0001F1EA"
|
1801
|
+
PF:
|
1629
1802
|
alpha2: PF
|
1630
1803
|
alpha3: PYF
|
1631
|
-
fifa:
|
1632
|
-
ioc:
|
1804
|
+
fifa:
|
1805
|
+
ioc:
|
1633
1806
|
iso_name: French Polynesia
|
1634
1807
|
numeric: "258"
|
1635
1808
|
official: French Polynesia
|
1636
1809
|
short: French Polynesia
|
1637
|
-
|
1810
|
+
emoji: "\U0001F1F5\U0001F1EB"
|
1811
|
+
PG:
|
1638
1812
|
alpha2: PG
|
1639
1813
|
alpha3: PNG
|
1640
1814
|
fifa: PNG
|
@@ -1643,7 +1817,8 @@ PG:
|
|
1643
1817
|
numeric: "598"
|
1644
1818
|
official: Independent State of Papua New Guinea
|
1645
1819
|
short: Papua New Guinea
|
1646
|
-
|
1820
|
+
emoji: "\U0001F1F5\U0001F1EC"
|
1821
|
+
PH:
|
1647
1822
|
alpha2: PH
|
1648
1823
|
alpha3: PHL
|
1649
1824
|
fifa: PHI
|
@@ -1652,7 +1827,8 @@ PH:
|
|
1652
1827
|
numeric: "608"
|
1653
1828
|
official: Republic of the Philippines
|
1654
1829
|
short: Philippines
|
1655
|
-
|
1830
|
+
emoji: "\U0001F1F5\U0001F1ED"
|
1831
|
+
PK:
|
1656
1832
|
alpha2: PK
|
1657
1833
|
alpha3: PAK
|
1658
1834
|
fifa: PAK
|
@@ -1661,7 +1837,8 @@ PK:
|
|
1661
1837
|
numeric: "586"
|
1662
1838
|
official: Islamic Republic of Pakistan
|
1663
1839
|
short: Pakistan
|
1664
|
-
|
1840
|
+
emoji: "\U0001F1F5\U0001F1F0"
|
1841
|
+
PL:
|
1665
1842
|
alpha2: PL
|
1666
1843
|
alpha3: POL
|
1667
1844
|
fifa: POL
|
@@ -1670,25 +1847,28 @@ PL:
|
|
1670
1847
|
numeric: "616"
|
1671
1848
|
official: Republic of Poland
|
1672
1849
|
short: Poland
|
1673
|
-
|
1850
|
+
emoji: "\U0001F1F5\U0001F1F1"
|
1851
|
+
PM:
|
1674
1852
|
alpha2: PM
|
1675
1853
|
alpha3: SPM
|
1676
|
-
fifa:
|
1677
|
-
ioc:
|
1854
|
+
fifa:
|
1855
|
+
ioc:
|
1678
1856
|
iso_name: Saint Pierre And Miquelon
|
1679
1857
|
numeric: "666"
|
1680
1858
|
official: Saint Pierre And Miquelon
|
1681
1859
|
short: Saint Pierre And Miquelon
|
1682
|
-
|
1860
|
+
emoji: "\U0001F1F5\U0001F1F2"
|
1861
|
+
PN:
|
1683
1862
|
alpha2: PN
|
1684
1863
|
alpha3: PCN
|
1685
|
-
fifa:
|
1686
|
-
ioc:
|
1864
|
+
fifa:
|
1865
|
+
ioc:
|
1687
1866
|
iso_name: Pitcairn
|
1688
1867
|
numeric: "612"
|
1689
1868
|
official: Pitcairn, Henderson, Ducie and Oeno Islands
|
1690
1869
|
short: Pitcairn
|
1691
|
-
|
1870
|
+
emoji: "\U0001F1F5\U0001F1F3"
|
1871
|
+
PR:
|
1692
1872
|
alpha2: PR
|
1693
1873
|
alpha3: PRI
|
1694
1874
|
fifa: PUR
|
@@ -1697,8 +1877,9 @@ PR:
|
|
1697
1877
|
numeric: "630"
|
1698
1878
|
official: Commonwealth of Puerto Rico
|
1699
1879
|
short: Puerto Rico
|
1700
|
-
|
1701
|
-
|
1880
|
+
emoji: "\U0001F1F5\U0001F1F7"
|
1881
|
+
PS:
|
1882
|
+
aliases:
|
1702
1883
|
- Palestinian Territories
|
1703
1884
|
- Palestinian Territory
|
1704
1885
|
alpha2: PS
|
@@ -1709,7 +1890,8 @@ PS:
|
|
1709
1890
|
numeric: "275"
|
1710
1891
|
official: State of Palestine
|
1711
1892
|
short: Palestine
|
1712
|
-
|
1893
|
+
emoji: "\U0001F1F5\U0001F1F8"
|
1894
|
+
PT:
|
1713
1895
|
alpha2: PT
|
1714
1896
|
alpha3: PRT
|
1715
1897
|
fifa: POR
|
@@ -1718,8 +1900,9 @@ PT:
|
|
1718
1900
|
numeric: "620"
|
1719
1901
|
official: Portuguese Republic
|
1720
1902
|
short: Portugal
|
1721
|
-
|
1722
|
-
|
1903
|
+
emoji: "\U0001F1F5\U0001F1F9"
|
1904
|
+
PW:
|
1905
|
+
aliases:
|
1723
1906
|
- Belau
|
1724
1907
|
- Pelew
|
1725
1908
|
alpha2: PW
|
@@ -1730,7 +1913,8 @@ PW:
|
|
1730
1913
|
numeric: "585"
|
1731
1914
|
official: Republic of Palau
|
1732
1915
|
short: Palau
|
1733
|
-
|
1916
|
+
emoji: "\U0001F1F5\U0001F1FC"
|
1917
|
+
PY:
|
1734
1918
|
alpha2: PY
|
1735
1919
|
alpha3: PRY
|
1736
1920
|
fifa: PAR
|
@@ -1739,7 +1923,8 @@ PY:
|
|
1739
1923
|
numeric: "600"
|
1740
1924
|
official: Republic of Paraguay
|
1741
1925
|
short: Paraguay
|
1742
|
-
|
1926
|
+
emoji: "\U0001F1F5\U0001F1FE"
|
1927
|
+
QA:
|
1743
1928
|
alpha2: QA
|
1744
1929
|
alpha3: QAT
|
1745
1930
|
fifa: QAT
|
@@ -1748,16 +1933,18 @@ QA:
|
|
1748
1933
|
numeric: "634"
|
1749
1934
|
official: State of Qatar
|
1750
1935
|
short: Qatar
|
1751
|
-
|
1936
|
+
emoji: "\U0001F1F6\U0001F1E6"
|
1937
|
+
RE:
|
1752
1938
|
alpha2: RE
|
1753
1939
|
alpha3: REU
|
1754
|
-
fifa:
|
1755
|
-
ioc:
|
1940
|
+
fifa:
|
1941
|
+
ioc:
|
1756
1942
|
iso_name: RΓ©union
|
1757
1943
|
numeric: "638"
|
1758
1944
|
official: RΓ©union Island
|
1759
1945
|
short: RΓ©union
|
1760
|
-
|
1946
|
+
emoji: "\U0001F1F7\U0001F1EA"
|
1947
|
+
RO:
|
1761
1948
|
alpha2: RO
|
1762
1949
|
alpha3: ROU
|
1763
1950
|
fifa: ROU
|
@@ -1766,7 +1953,8 @@ RO:
|
|
1766
1953
|
numeric: "642"
|
1767
1954
|
official: Romania
|
1768
1955
|
short: Romania
|
1769
|
-
|
1956
|
+
emoji: "\U0001F1F7\U0001F1F4"
|
1957
|
+
RS:
|
1770
1958
|
alpha2: RS
|
1771
1959
|
alpha3: SRB
|
1772
1960
|
fifa: SRB
|
@@ -1775,7 +1963,8 @@ RS:
|
|
1775
1963
|
numeric: "688"
|
1776
1964
|
official: Republic of Serbia
|
1777
1965
|
short: Serbia
|
1778
|
-
|
1966
|
+
emoji: "\U0001F1F7\U0001F1F8"
|
1967
|
+
RU:
|
1779
1968
|
alpha2: RU
|
1780
1969
|
alpha3: RUS
|
1781
1970
|
fifa: RUS
|
@@ -1784,7 +1973,8 @@ RU:
|
|
1784
1973
|
numeric: "643"
|
1785
1974
|
official: Russian Federation
|
1786
1975
|
short: Russia
|
1787
|
-
|
1976
|
+
emoji: "\U0001F1F7\U0001F1FA"
|
1977
|
+
RW:
|
1788
1978
|
alpha2: RW
|
1789
1979
|
alpha3: RWA
|
1790
1980
|
fifa: RWA
|
@@ -1793,7 +1983,8 @@ RW:
|
|
1793
1983
|
numeric: "646"
|
1794
1984
|
official: Republic of Rwanda
|
1795
1985
|
short: Rwanda
|
1796
|
-
|
1986
|
+
emoji: "\U0001F1F7\U0001F1FC"
|
1987
|
+
SA:
|
1797
1988
|
alpha2: SA
|
1798
1989
|
alpha3: SAU
|
1799
1990
|
fifa: KSA
|
@@ -1802,7 +1993,8 @@ SA:
|
|
1802
1993
|
numeric: "682"
|
1803
1994
|
official: Kingdom of Saudi Arabia
|
1804
1995
|
short: Saudi Arabia
|
1805
|
-
|
1996
|
+
emoji: "\U0001F1F8\U0001F1E6"
|
1997
|
+
SB:
|
1806
1998
|
alpha2: SB
|
1807
1999
|
alpha3: SLB
|
1808
2000
|
fifa: SOL
|
@@ -1811,7 +2003,8 @@ SB:
|
|
1811
2003
|
numeric: "90"
|
1812
2004
|
official: Solomon Islands
|
1813
2005
|
short: Solomon Islands
|
1814
|
-
|
2006
|
+
emoji: "\U0001F1F8\U0001F1E7"
|
2007
|
+
SC:
|
1815
2008
|
alpha2: SC
|
1816
2009
|
alpha3: SYC
|
1817
2010
|
fifa: SEY
|
@@ -1820,7 +2013,8 @@ SC:
|
|
1820
2013
|
numeric: "690"
|
1821
2014
|
official: Republic of Seychelles
|
1822
2015
|
short: Seychelles
|
1823
|
-
|
2016
|
+
emoji: "\U0001F1F8\U0001F1E8"
|
2017
|
+
SD:
|
1824
2018
|
alpha2: SD
|
1825
2019
|
alpha3: SDN
|
1826
2020
|
fifa: SDN
|
@@ -1829,7 +2023,8 @@ SD:
|
|
1829
2023
|
numeric: "729"
|
1830
2024
|
official: Republic of the Sudan
|
1831
2025
|
short: Sudan
|
1832
|
-
|
2026
|
+
emoji: "\U0001F1F8\U0001F1E9"
|
2027
|
+
SE:
|
1833
2028
|
alpha2: SE
|
1834
2029
|
alpha3: SWE
|
1835
2030
|
fifa: SWE
|
@@ -1838,7 +2033,8 @@ SE:
|
|
1838
2033
|
numeric: "752"
|
1839
2034
|
official: Kingdom of Sweden
|
1840
2035
|
short: Sweden
|
1841
|
-
|
2036
|
+
emoji: "\U0001F1F8\U0001F1EA"
|
2037
|
+
SG:
|
1842
2038
|
alpha2: SG
|
1843
2039
|
alpha3: SGP
|
1844
2040
|
fifa: SIN
|
@@ -1847,16 +2043,18 @@ SG:
|
|
1847
2043
|
numeric: "702"
|
1848
2044
|
official: Republic of Singapore
|
1849
2045
|
short: Singapore
|
1850
|
-
|
2046
|
+
emoji: "\U0001F1F8\U0001F1EC"
|
2047
|
+
SH:
|
1851
2048
|
alpha2: SH
|
1852
2049
|
alpha3: SHN
|
1853
|
-
fifa:
|
1854
|
-
ioc:
|
2050
|
+
fifa:
|
2051
|
+
ioc:
|
1855
2052
|
iso_name: Saint Helena
|
1856
2053
|
numeric: "654"
|
1857
2054
|
official: Saint Helena
|
1858
2055
|
short: Saint Helena
|
1859
|
-
|
2056
|
+
emoji: "\U0001F1F8\U0001F1ED"
|
2057
|
+
SI:
|
1860
2058
|
alpha2: SI
|
1861
2059
|
alpha3: SVN
|
1862
2060
|
fifa: SVN
|
@@ -1865,16 +2063,18 @@ SI:
|
|
1865
2063
|
numeric: "705"
|
1866
2064
|
official: Republic of Slovenia
|
1867
2065
|
short: Slovenia
|
1868
|
-
|
2066
|
+
emoji: "\U0001F1F8\U0001F1EE"
|
2067
|
+
SJ:
|
1869
2068
|
alpha2: SJ
|
1870
2069
|
alpha3: SJM
|
1871
|
-
fifa:
|
1872
|
-
ioc:
|
2070
|
+
fifa:
|
2071
|
+
ioc:
|
1873
2072
|
iso_name: Svalbard And Jan Mayen
|
1874
2073
|
numeric: "744"
|
1875
2074
|
official: Svalbard And Jan Mayen
|
1876
2075
|
short: Svalbard And Jan Mayen
|
1877
|
-
|
2076
|
+
emoji: "\U0001F1F8\U0001F1EF"
|
2077
|
+
SK:
|
1878
2078
|
alpha2: SK
|
1879
2079
|
alpha3: SVK
|
1880
2080
|
fifa: SVK
|
@@ -1883,7 +2083,8 @@ SK:
|
|
1883
2083
|
numeric: "703"
|
1884
2084
|
official: Slovak Republic
|
1885
2085
|
short: Slovakia
|
1886
|
-
|
2086
|
+
emoji: "\U0001F1F8\U0001F1F0"
|
2087
|
+
SL:
|
1887
2088
|
alpha2: SL
|
1888
2089
|
alpha3: SLE
|
1889
2090
|
fifa: SLE
|
@@ -1892,8 +2093,9 @@ SL:
|
|
1892
2093
|
numeric: "694"
|
1893
2094
|
official: Republic of Sierra Leone
|
1894
2095
|
short: Sierra Leone
|
1895
|
-
|
1896
|
-
|
2096
|
+
emoji: "\U0001F1F8\U0001F1F1"
|
2097
|
+
SM:
|
2098
|
+
aliases:
|
1897
2099
|
- Most Serene Republic of San Marino
|
1898
2100
|
alpha2: SM
|
1899
2101
|
alpha3: SMR
|
@@ -1903,7 +2105,8 @@ SM:
|
|
1903
2105
|
numeric: "674"
|
1904
2106
|
official: Republic of San Marino
|
1905
2107
|
short: San Marino
|
1906
|
-
|
2108
|
+
emoji: "\U0001F1F8\U0001F1F2"
|
2109
|
+
SN:
|
1907
2110
|
alpha2: SN
|
1908
2111
|
alpha3: SEN
|
1909
2112
|
fifa: SEN
|
@@ -1912,7 +2115,8 @@ SN:
|
|
1912
2115
|
numeric: "686"
|
1913
2116
|
official: Republic of Senegal
|
1914
2117
|
short: Senegal
|
1915
|
-
|
2118
|
+
emoji: "\U0001F1F8\U0001F1F3"
|
2119
|
+
SO:
|
1916
2120
|
alpha2: SO
|
1917
2121
|
alpha3: SOM
|
1918
2122
|
fifa: SOM
|
@@ -1921,8 +2125,9 @@ SO:
|
|
1921
2125
|
numeric: "706"
|
1922
2126
|
official: Federal Republic of Somalia
|
1923
2127
|
short: Somalia
|
1924
|
-
|
1925
|
-
|
2128
|
+
emoji: "\U0001F1F8\U0001F1F4"
|
2129
|
+
SR:
|
2130
|
+
aliases:
|
1926
2131
|
- Surinam
|
1927
2132
|
alpha2: SR
|
1928
2133
|
alpha3: SUR
|
@@ -1932,19 +2137,21 @@ SR:
|
|
1932
2137
|
numeric: "740"
|
1933
2138
|
official: Republic of Suriname
|
1934
2139
|
short: Suriname
|
1935
|
-
|
1936
|
-
|
2140
|
+
emoji: "\U0001F1F8\U0001F1F7"
|
2141
|
+
SS:
|
2142
|
+
aliases:
|
1937
2143
|
- S. Sudan
|
1938
2144
|
alpha2: SS
|
1939
2145
|
alpha3: SSD
|
1940
|
-
fifa:
|
1941
|
-
ioc:
|
2146
|
+
fifa:
|
2147
|
+
ioc:
|
1942
2148
|
iso_name: South Sudan
|
1943
2149
|
numeric: "728"
|
1944
2150
|
official: Republic of South Sudan
|
1945
2151
|
short: South Sudan
|
1946
|
-
|
1947
|
-
|
2152
|
+
emoji: "\U0001F1F8\U0001F1F8"
|
2153
|
+
ST:
|
2154
|
+
aliases:
|
1948
2155
|
- Democratic Republic of Sao Tome and Principe
|
1949
2156
|
- SΓ£o TomΓ© and PrΓncipe
|
1950
2157
|
alpha2: ST
|
@@ -1955,7 +2162,8 @@ ST:
|
|
1955
2162
|
numeric: "678"
|
1956
2163
|
official: Democratic Republic of SΓ£o TomΓ© and PrΓncipe
|
1957
2164
|
short: Sao Tome and Principe
|
1958
|
-
|
2165
|
+
emoji: "\U0001F1F8\U0001F1F9"
|
2166
|
+
SV:
|
1959
2167
|
alpha2: SV
|
1960
2168
|
alpha3: SLV
|
1961
2169
|
fifa: SLV
|
@@ -1964,7 +2172,8 @@ SV:
|
|
1964
2172
|
numeric: "222"
|
1965
2173
|
official: Republic of El Salvador
|
1966
2174
|
short: El Salvador
|
1967
|
-
|
2175
|
+
emoji: "\U0001F1F8\U0001F1FB"
|
2176
|
+
SY:
|
1968
2177
|
alpha2: SY
|
1969
2178
|
alpha3: SYR
|
1970
2179
|
fifa: SYR
|
@@ -1973,8 +2182,9 @@ SY:
|
|
1973
2182
|
numeric: "760"
|
1974
2183
|
official: Syrian Arab Republic
|
1975
2184
|
short: Syria
|
1976
|
-
|
1977
|
-
|
2185
|
+
emoji: "\U0001F1F8\U0001F1FE"
|
2186
|
+
SZ:
|
2187
|
+
aliases:
|
1978
2188
|
- Ngwane
|
1979
2189
|
- Swatini
|
1980
2190
|
alpha2: SZ
|
@@ -1985,18 +2195,20 @@ SZ:
|
|
1985
2195
|
numeric: "748"
|
1986
2196
|
official: Kingdom of Swaziland
|
1987
2197
|
short: Swaziland
|
1988
|
-
|
1989
|
-
|
2198
|
+
emoji: "\U0001F1F8\U0001F1FF"
|
2199
|
+
TC:
|
2200
|
+
aliases:
|
1990
2201
|
- TCI
|
1991
2202
|
alpha2: TC
|
1992
2203
|
alpha3: TCA
|
1993
|
-
fifa:
|
1994
|
-
ioc:
|
2204
|
+
fifa:
|
2205
|
+
ioc:
|
1995
2206
|
iso_name: Turks and Caicos Islands
|
1996
2207
|
numeric: "796"
|
1997
2208
|
official: Turks and Caicos Islands
|
1998
2209
|
short: Turks and Caicos Islands
|
1999
|
-
|
2210
|
+
emoji: "\U0001F1F9\U0001F1E8"
|
2211
|
+
TD:
|
2000
2212
|
alpha2: TD
|
2001
2213
|
alpha3: TCD
|
2002
2214
|
fifa: CHA
|
@@ -2005,18 +2217,20 @@ TD:
|
|
2005
2217
|
numeric: "148"
|
2006
2218
|
official: Republic of Chad
|
2007
2219
|
short: Chad
|
2008
|
-
|
2009
|
-
|
2220
|
+
emoji: "\U0001F1F9\U0001F1E9"
|
2221
|
+
TF:
|
2222
|
+
aliases:
|
2010
2223
|
- French Southern and Antarctic Lands
|
2011
2224
|
alpha2: TF
|
2012
2225
|
alpha3: ATF
|
2013
|
-
fifa:
|
2014
|
-
ioc:
|
2226
|
+
fifa:
|
2227
|
+
ioc:
|
2015
2228
|
iso_name: French Southern Territories
|
2016
2229
|
numeric: "260"
|
2017
2230
|
official: Territory of the French Southern and Antarctic Land
|
2018
2231
|
short: French Southern Territories
|
2019
|
-
|
2232
|
+
emoji: "\U0001F1F9\U0001F1EB"
|
2233
|
+
TG:
|
2020
2234
|
alpha2: TG
|
2021
2235
|
alpha3: TGO
|
2022
2236
|
fifa: TOG
|
@@ -2025,7 +2239,8 @@ TG:
|
|
2025
2239
|
numeric: "768"
|
2026
2240
|
official: Togolese Republic
|
2027
2241
|
short: Togo
|
2028
|
-
|
2242
|
+
emoji: "\U0001F1F9\U0001F1EC"
|
2243
|
+
TH:
|
2029
2244
|
alpha2: TH
|
2030
2245
|
alpha3: THA
|
2031
2246
|
fifa: THA
|
@@ -2034,7 +2249,8 @@ TH:
|
|
2034
2249
|
numeric: "764"
|
2035
2250
|
official: Kingdom of Thailand
|
2036
2251
|
short: Thailand
|
2037
|
-
|
2252
|
+
emoji: "\U0001F1F9\U0001F1ED"
|
2253
|
+
TJ:
|
2038
2254
|
alpha2: TJ
|
2039
2255
|
alpha3: TJK
|
2040
2256
|
fifa: TJK
|
@@ -2043,16 +2259,18 @@ TJ:
|
|
2043
2259
|
numeric: "762"
|
2044
2260
|
official: Republic of Tajikistan
|
2045
2261
|
short: Tajikistan
|
2046
|
-
|
2262
|
+
emoji: "\U0001F1F9\U0001F1EF"
|
2263
|
+
TK:
|
2047
2264
|
alpha2: TK
|
2048
2265
|
alpha3: TKL
|
2049
|
-
fifa:
|
2050
|
-
ioc:
|
2266
|
+
fifa:
|
2267
|
+
ioc:
|
2051
2268
|
iso_name: Tokelau
|
2052
2269
|
numeric: "772"
|
2053
2270
|
official: Tokelau
|
2054
2271
|
short: Tokelau
|
2055
|
-
|
2272
|
+
emoji: "\U0001F1F9\U0001F1F0"
|
2273
|
+
TL:
|
2056
2274
|
alpha2: TL
|
2057
2275
|
alpha3: TLS
|
2058
2276
|
fifa: TLS
|
@@ -2061,7 +2279,8 @@ TL:
|
|
2061
2279
|
numeric: "626"
|
2062
2280
|
official: Democratic Republic of Timor-Leste
|
2063
2281
|
short: East Timor
|
2064
|
-
|
2282
|
+
emoji: "\U0001F1F9\U0001F1F1"
|
2283
|
+
TM:
|
2065
2284
|
alpha2: TM
|
2066
2285
|
alpha3: TKM
|
2067
2286
|
fifa: TKM
|
@@ -2070,7 +2289,8 @@ TM:
|
|
2070
2289
|
numeric: "795"
|
2071
2290
|
official: Turkmenistan
|
2072
2291
|
short: Turkmenistan
|
2073
|
-
|
2292
|
+
emoji: "\U0001F1F9\U0001F1F2"
|
2293
|
+
TN:
|
2074
2294
|
alpha2: TN
|
2075
2295
|
alpha3: TUN
|
2076
2296
|
fifa: TUN
|
@@ -2079,7 +2299,8 @@ TN:
|
|
2079
2299
|
numeric: "788"
|
2080
2300
|
official: Republic of Tunisia
|
2081
2301
|
short: Tunisia
|
2082
|
-
|
2302
|
+
emoji: "\U0001F1F9\U0001F1F3"
|
2303
|
+
TO:
|
2083
2304
|
alpha2: TO
|
2084
2305
|
alpha3: TON
|
2085
2306
|
fifa: TGA
|
@@ -2088,7 +2309,8 @@ TO:
|
|
2088
2309
|
numeric: "776"
|
2089
2310
|
official: Kingdom of Tonga
|
2090
2311
|
short: Tonga
|
2091
|
-
|
2312
|
+
emoji: "\U0001F1F9\U0001F1F4"
|
2313
|
+
TR:
|
2092
2314
|
alpha2: TR
|
2093
2315
|
alpha3: TUR
|
2094
2316
|
fifa: TUR
|
@@ -2097,7 +2319,8 @@ TR:
|
|
2097
2319
|
numeric: "792"
|
2098
2320
|
official: Republic of Turkey
|
2099
2321
|
short: Turkey
|
2100
|
-
|
2322
|
+
emoji: "\U0001F1F9\U0001F1F7"
|
2323
|
+
TT:
|
2101
2324
|
alpha2: TT
|
2102
2325
|
alpha3: TTO
|
2103
2326
|
fifa: TRI
|
@@ -2106,7 +2329,8 @@ TT:
|
|
2106
2329
|
numeric: "780"
|
2107
2330
|
official: Republic of Trinidad and Tobago
|
2108
2331
|
short: Trinidad and Tobago
|
2109
|
-
|
2332
|
+
emoji: "\U0001F1F9\U0001F1F9"
|
2333
|
+
TV:
|
2110
2334
|
alpha2: TV
|
2111
2335
|
alpha3: TUV
|
2112
2336
|
fifa: TUV
|
@@ -2115,8 +2339,9 @@ TV:
|
|
2115
2339
|
numeric: "798"
|
2116
2340
|
official: Tuvalu
|
2117
2341
|
short: Tuvalu
|
2118
|
-
|
2119
|
-
|
2342
|
+
emoji: "\U0001F1F9\U0001F1FB"
|
2343
|
+
TW:
|
2344
|
+
aliases:
|
2120
2345
|
- ROC
|
2121
2346
|
alpha2: TW
|
2122
2347
|
alpha3: TWN
|
@@ -2126,7 +2351,8 @@ TW:
|
|
2126
2351
|
numeric: "158"
|
2127
2352
|
official: Republic of China
|
2128
2353
|
short: Taiwan
|
2129
|
-
|
2354
|
+
emoji: "\U0001F1F9\U0001F1FC"
|
2355
|
+
TZ:
|
2130
2356
|
alpha2: TZ
|
2131
2357
|
alpha3: TZA
|
2132
2358
|
fifa: TAN
|
@@ -2135,7 +2361,8 @@ TZ:
|
|
2135
2361
|
numeric: "834"
|
2136
2362
|
official: United Republic of Tanzania
|
2137
2363
|
short: Tanzania
|
2138
|
-
|
2364
|
+
emoji: "\U0001F1F9\U0001F1FF"
|
2365
|
+
UA:
|
2139
2366
|
alpha2: UA
|
2140
2367
|
alpha3: UKR
|
2141
2368
|
fifa: UKR
|
@@ -2144,7 +2371,8 @@ UA:
|
|
2144
2371
|
numeric: "804"
|
2145
2372
|
official: Ukraine
|
2146
2373
|
short: Ukraine
|
2147
|
-
|
2374
|
+
emoji: "\U0001F1FA\U0001F1E6"
|
2375
|
+
UG:
|
2148
2376
|
alpha2: UG
|
2149
2377
|
alpha3: UGA
|
2150
2378
|
fifa: UGA
|
@@ -2153,17 +2381,19 @@ UG:
|
|
2153
2381
|
numeric: "800"
|
2154
2382
|
official: Republic of Uganda
|
2155
2383
|
short: Uganda
|
2156
|
-
|
2384
|
+
emoji: "\U0001F1FA\U0001F1EC"
|
2385
|
+
UM:
|
2157
2386
|
alpha2: UM
|
2158
2387
|
alpha3: UMI
|
2159
|
-
fifa:
|
2160
|
-
ioc:
|
2388
|
+
fifa:
|
2389
|
+
ioc:
|
2161
2390
|
iso_name: United States Minor Outlying Islands
|
2162
2391
|
numeric: "581"
|
2163
2392
|
official: United States Minor Outlying Islands
|
2164
2393
|
short: United States Minor Outlying Islands
|
2165
|
-
|
2166
|
-
|
2394
|
+
emoji: "\U0001F1FA\U0001F1F2"
|
2395
|
+
US:
|
2396
|
+
aliases:
|
2167
2397
|
- America
|
2168
2398
|
- U.S.
|
2169
2399
|
- U.S.A.
|
@@ -2175,8 +2405,9 @@ US:
|
|
2175
2405
|
numeric: "840"
|
2176
2406
|
official: United States of America
|
2177
2407
|
short: United States
|
2178
|
-
|
2179
|
-
|
2408
|
+
emoji: "\U0001F1FA\U0001F1F8"
|
2409
|
+
UY:
|
2410
|
+
aliases:
|
2180
2411
|
- Eastern Republic of Uruguay
|
2181
2412
|
alpha2: UY
|
2182
2413
|
alpha3: URY
|
@@ -2186,7 +2417,8 @@ UY:
|
|
2186
2417
|
numeric: "858"
|
2187
2418
|
official: Oriental Republic of Uruguay
|
2188
2419
|
short: Uruguay
|
2189
|
-
|
2420
|
+
emoji: "\U0001F1FA\U0001F1FE"
|
2421
|
+
UZ:
|
2190
2422
|
alpha2: UZ
|
2191
2423
|
alpha3: UZB
|
2192
2424
|
fifa: UZB
|
@@ -2195,16 +2427,18 @@ UZ:
|
|
2195
2427
|
numeric: "860"
|
2196
2428
|
official: Republic of Uzbekistan
|
2197
2429
|
short: Uzbekistan
|
2198
|
-
|
2430
|
+
emoji: "\U0001F1FA\U0001F1FF"
|
2431
|
+
VA:
|
2199
2432
|
alpha2: VA
|
2200
2433
|
alpha3: VAT
|
2201
|
-
fifa:
|
2202
|
-
ioc:
|
2434
|
+
fifa:
|
2435
|
+
ioc:
|
2203
2436
|
iso_name: Holy See (Vatican City State)
|
2204
2437
|
numeric: "336"
|
2205
2438
|
official: Vatican City State
|
2206
2439
|
short: Vatican City
|
2207
|
-
|
2440
|
+
emoji: "\U0001F1FB\U0001F1E6"
|
2441
|
+
VC:
|
2208
2442
|
alpha2: VC
|
2209
2443
|
alpha3: VCT
|
2210
2444
|
fifa: VIN
|
@@ -2213,7 +2447,8 @@ VC:
|
|
2213
2447
|
numeric: "670"
|
2214
2448
|
official: Saint Vincent And The Grenadines
|
2215
2449
|
short: Saint Vincent And The Grenadines
|
2216
|
-
|
2450
|
+
emoji: "\U0001F1FB\U0001F1E8"
|
2451
|
+
VE:
|
2217
2452
|
alpha2: VE
|
2218
2453
|
alpha3: VEN
|
2219
2454
|
fifa: VEN
|
@@ -2222,8 +2457,9 @@ VE:
|
|
2222
2457
|
numeric: "862"
|
2223
2458
|
official: Bolivarian Republic of Venezuela
|
2224
2459
|
short: Venezuela
|
2225
|
-
|
2226
|
-
|
2460
|
+
emoji: "\U0001F1FB\U0001F1EA"
|
2461
|
+
VG:
|
2462
|
+
aliases:
|
2227
2463
|
- BVI
|
2228
2464
|
alpha2: VG
|
2229
2465
|
alpha3: VGB
|
@@ -2233,8 +2469,9 @@ VG:
|
|
2233
2469
|
numeric: "92"
|
2234
2470
|
official: Virgin Islands
|
2235
2471
|
short: British Virgin Islands
|
2236
|
-
|
2237
|
-
|
2472
|
+
emoji: "\U0001F1FB\U0001F1EC"
|
2473
|
+
VI:
|
2474
|
+
aliases:
|
2238
2475
|
- USVI
|
2239
2476
|
- US Virgin Islands
|
2240
2477
|
- United States Virgin Islands
|
@@ -2246,8 +2483,9 @@ VI:
|
|
2246
2483
|
numeric: "850"
|
2247
2484
|
official: Virgin Islands of the United States
|
2248
2485
|
short: U.S. Virgin Islands
|
2249
|
-
|
2250
|
-
|
2486
|
+
emoji: "\U0001F1FB\U0001F1EE"
|
2487
|
+
VN:
|
2488
|
+
aliases:
|
2251
2489
|
- Viet Nam
|
2252
2490
|
alpha2: VN
|
2253
2491
|
alpha3: VNM
|
@@ -2257,7 +2495,8 @@ VN:
|
|
2257
2495
|
numeric: "704"
|
2258
2496
|
official: Socialist Republic of Vietnam
|
2259
2497
|
short: Vietnam
|
2260
|
-
|
2498
|
+
emoji: "\U0001F1FB\U0001F1F3"
|
2499
|
+
VU:
|
2261
2500
|
alpha2: VU
|
2262
2501
|
alpha3: VUT
|
2263
2502
|
fifa: VAN
|
@@ -2266,16 +2505,18 @@ VU:
|
|
2266
2505
|
numeric: "548"
|
2267
2506
|
official: Republic of Vanuatu
|
2268
2507
|
short: Vanuatu
|
2269
|
-
|
2508
|
+
emoji: "\U0001F1FB\U0001F1FA"
|
2509
|
+
WF:
|
2270
2510
|
alpha2: WF
|
2271
2511
|
alpha3: WLF
|
2272
|
-
fifa:
|
2273
|
-
ioc:
|
2512
|
+
fifa:
|
2513
|
+
ioc:
|
2274
2514
|
iso_name: Wallis and Futuna
|
2275
2515
|
numeric: "876"
|
2276
2516
|
official: Territory of the Wallis and Futuna Islands
|
2277
2517
|
short: Wallis and Futuna
|
2278
|
-
|
2518
|
+
emoji: "\U0001F1FC\U0001F1EB"
|
2519
|
+
WS:
|
2279
2520
|
alpha2: WS
|
2280
2521
|
alpha3: WSM
|
2281
2522
|
fifa: SAM
|
@@ -2284,7 +2525,8 @@ WS:
|
|
2284
2525
|
numeric: "882"
|
2285
2526
|
official: Independent State of Samoa
|
2286
2527
|
short: Samoa
|
2287
|
-
|
2528
|
+
emoji: "\U0001F1FC\U0001F1F8"
|
2529
|
+
YE:
|
2288
2530
|
alpha2: YE
|
2289
2531
|
alpha3: YEM
|
2290
2532
|
fifa: YEM
|
@@ -2293,16 +2535,18 @@ YE:
|
|
2293
2535
|
numeric: "887"
|
2294
2536
|
official: Republic of Yemen
|
2295
2537
|
short: Yemen
|
2296
|
-
|
2538
|
+
emoji: "\U0001F1FE\U0001F1EA"
|
2539
|
+
YT:
|
2297
2540
|
alpha2: YT
|
2298
2541
|
alpha3: MYT
|
2299
|
-
fifa:
|
2300
|
-
ioc:
|
2542
|
+
fifa:
|
2543
|
+
ioc:
|
2301
2544
|
iso_name: Mayotte
|
2302
2545
|
numeric: "175"
|
2303
2546
|
official: Department of Mayotte
|
2304
2547
|
short: Mayotte
|
2305
|
-
|
2548
|
+
emoji: "\U0001F1FE\U0001F1F9"
|
2549
|
+
ZA:
|
2306
2550
|
alpha2: ZA
|
2307
2551
|
alpha3: ZAF
|
2308
2552
|
fifa: RSA
|
@@ -2311,7 +2555,8 @@ ZA:
|
|
2311
2555
|
numeric: "710"
|
2312
2556
|
official: Republic of South Africa
|
2313
2557
|
short: South Africa
|
2314
|
-
|
2558
|
+
emoji: "\U0001F1FF\U0001F1E6"
|
2559
|
+
ZM:
|
2315
2560
|
alpha2: ZM
|
2316
2561
|
alpha3: ZMB
|
2317
2562
|
fifa: ZAM
|
@@ -2320,7 +2565,8 @@ ZM:
|
|
2320
2565
|
numeric: "894"
|
2321
2566
|
official: Republic of Zambia
|
2322
2567
|
short: Zambia
|
2323
|
-
|
2568
|
+
emoji: "\U0001F1FF\U0001F1F2"
|
2569
|
+
ZW:
|
2324
2570
|
alpha2: ZW
|
2325
2571
|
alpha3: ZWE
|
2326
2572
|
fifa: ZIM
|
@@ -2329,3 +2575,4 @@ ZW:
|
|
2329
2575
|
numeric: "716"
|
2330
2576
|
official: Republic of Zimbabwe
|
2331
2577
|
short: Zimbabwe
|
2578
|
+
emoji: "\U0001F1FF\U0001F1FC"
|