normalize_country 0.2.1 β 0.3.2
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 +5 -5
- data/README.rdoc +6 -0
- data/lib/normalize_country.rb +5 -3
- data/lib/normalize_country/countries/en.yml +341 -11
- data/lib/normalize_country/scanner.rb +120 -0
- data/spec/normalize_country_spec.rb +3 -9
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 30ed876c982459c41915c52728a3e3a9cd6266f685c9d9a80e7bdfc7ef92bbbe
|
4
|
+
data.tar.gz: ebb4bfcb888387f4184ae7172bd3efcea2cc248bed8f68b42ac8e6670b581a43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a46dfb4a4c49bb1d50f0640e7d217640944f66d7d3a55b30b9b8aee4f24baacf2d889c8b9f60fd15aa823cfb0b5b1520932a7a68e47e734ebfdacd6b8482649
|
7
|
+
data.tar.gz: 9bd44a260b08474c3d29501b51c2136c93ccfafe63249da2c4f99428a1b82a7cad65e0eb33548cdc28b4fdc13ee34b1093ea9ad91363af6fc21601ec19bd6afa
|
data/README.rdoc
CHANGED
@@ -17,6 +17,7 @@ Convert country names and codes to a standard.
|
|
17
17
|
NormalizeCountry("U.S.", :to => :numeric) # "840"
|
18
18
|
NormalizeCountry("US", :to => :fifa) # "USA"
|
19
19
|
NormalizeCountry("US", :to => :emoji) # "πΊπΈ"
|
20
|
+
NormalizeCountry("US", :to => :shortcode) # ":flag-us:"
|
20
21
|
NormalizeCountry("Iran", :to => :alpha3) # "IRN"
|
21
22
|
NormalizeCountry("Iran", :to => :ioc) # "IRI"
|
22
23
|
NormalizeCountry("DPRK", :to => :short) # "North Korea"
|
@@ -54,6 +55,7 @@ will convert to/from the following:
|
|
54
55
|
[:numeric] ISO 3166-1 numeric code
|
55
56
|
[:official] The country's official name
|
56
57
|
[:short] A shortned version of the country's name, commonly used when speaking and/or writing (US English)
|
58
|
+
[:shortcode:] Emoji shortcode
|
57
59
|
|
58
60
|
A list of valid formats can be obtained by calling +NormalizeCountry.formats+.
|
59
61
|
|
@@ -121,3 +123,7 @@ Upon further investigation I've found the following:
|
|
121
123
|
* {country_codes}[https://github.com/SunDawg/country_codes] ISO country names and currency data
|
122
124
|
* {i18n_data}[https://github.com/grosser/i18n_data]: ISO country names in different languages, includes alpha codes
|
123
125
|
* {ModelUN}[https://github.com/uhhuhyeah/model_un]: Similar to this gem but with less support for conversion, it does include US states
|
126
|
+
|
127
|
+
=== See Also
|
128
|
+
|
129
|
+
* {National Colors}[https://github.com/sshaw/national_colors]
|
data/lib/normalize_country.rb
CHANGED
@@ -1,11 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "yaml"
|
2
4
|
|
3
5
|
module NormalizeCountry
|
4
|
-
VERSION = "0.2
|
6
|
+
VERSION = "0.3.2"
|
5
7
|
Countries = {}
|
6
8
|
|
7
9
|
class << self
|
8
|
-
|
10
|
+
attr_writer :to
|
9
11
|
|
10
12
|
def to
|
11
13
|
@to ||= :iso_name
|
@@ -44,7 +46,7 @@ module NormalizeCountry
|
|
44
46
|
end
|
45
47
|
end
|
46
48
|
|
47
|
-
class Country
|
49
|
+
class Country # :nodoc: all
|
48
50
|
def initialize(config)
|
49
51
|
raise ArgumentError, "country config must be a hash" unless Hash === config
|
50
52
|
|
@@ -11,6 +11,7 @@ AD:
|
|
11
11
|
official: Principality of Andorra
|
12
12
|
short: Andorra
|
13
13
|
emoji: "\U0001F1E6\U0001F1E9"
|
14
|
+
shortcode: ":flag-ad:"
|
14
15
|
AE:
|
15
16
|
aliases:
|
16
17
|
- Emirates
|
@@ -24,6 +25,7 @@ AE:
|
|
24
25
|
official: United Arab Emirates
|
25
26
|
short: United Arab Emirates
|
26
27
|
emoji: "\U0001F1E6\U0001F1EA"
|
28
|
+
shortcode: ":flag-ae:"
|
27
29
|
AF:
|
28
30
|
alpha2: AF
|
29
31
|
alpha3: AFG
|
@@ -34,6 +36,7 @@ AF:
|
|
34
36
|
numeric: "4"
|
35
37
|
short: Afghanistan
|
36
38
|
emoji: "\U0001F1E6\U0001F1EB"
|
39
|
+
shortcode: ":flag-af:"
|
37
40
|
AG:
|
38
41
|
alpha2: AG
|
39
42
|
alpha3: ATG
|
@@ -44,6 +47,7 @@ AG:
|
|
44
47
|
official: Antigua and Barbuda
|
45
48
|
short: Antigua and Barbuda
|
46
49
|
emoji: "\U0001F1E6\U0001F1EC"
|
50
|
+
shortcode: ":flag-ag:"
|
47
51
|
AI:
|
48
52
|
alpha2: AI
|
49
53
|
alpha3: AIA
|
@@ -54,6 +58,7 @@ AI:
|
|
54
58
|
official: Anguilla
|
55
59
|
short: Anguilla
|
56
60
|
emoji: "\U0001F1E6\U0001F1EE"
|
61
|
+
shortcode: ":flag-ai:"
|
57
62
|
AL:
|
58
63
|
alpha2: AL
|
59
64
|
alpha3: ALB
|
@@ -64,6 +69,7 @@ AL:
|
|
64
69
|
numeric: "8"
|
65
70
|
short: Albania
|
66
71
|
emoji: "\U0001F1E6\U0001F1F1"
|
72
|
+
shortcode: ":flag-al:"
|
67
73
|
AM:
|
68
74
|
alpha2: AM
|
69
75
|
alpha3: ARM
|
@@ -74,6 +80,7 @@ AM:
|
|
74
80
|
official: Republic of Armenia
|
75
81
|
short: Armenia
|
76
82
|
emoji: "\U0001F1E6\U0001F1F2"
|
83
|
+
shortcode: ":flag-am:"
|
77
84
|
AN:
|
78
85
|
aliases:
|
79
86
|
- Dutch Antilles
|
@@ -86,6 +93,7 @@ AN:
|
|
86
93
|
official: Netherlands Antilles
|
87
94
|
short: Netherlands Antilles
|
88
95
|
emoji: "\U0001F1E6\U0001F1F3"
|
96
|
+
shortcode:
|
89
97
|
AO:
|
90
98
|
alpha2: AO
|
91
99
|
alpha3: AGO
|
@@ -96,6 +104,7 @@ AO:
|
|
96
104
|
official: Republic of Angola
|
97
105
|
short: Angola
|
98
106
|
emoji: "\U0001F1E6\U0001F1F4"
|
107
|
+
shortcode: ":flag-ao:"
|
99
108
|
AQ:
|
100
109
|
alpha2: AQ
|
101
110
|
alpha3: ATA
|
@@ -106,6 +115,7 @@ AQ:
|
|
106
115
|
official: Antarctica
|
107
116
|
short: Antarctica
|
108
117
|
emoji: "\U0001F1E6\U0001F1F6"
|
118
|
+
shortcode: ":flag-aq:"
|
109
119
|
AR:
|
110
120
|
alpha2: AR
|
111
121
|
alpha3: ARG
|
@@ -116,6 +126,7 @@ AR:
|
|
116
126
|
official: Argentine Republic
|
117
127
|
short: Argentina
|
118
128
|
emoji: "\U0001F1E6\U0001F1F7"
|
129
|
+
shortcode: ":flag-ar:"
|
119
130
|
AS:
|
120
131
|
alpha2: AS
|
121
132
|
alpha3: ASM
|
@@ -126,6 +137,7 @@ AS:
|
|
126
137
|
official: American Samoa
|
127
138
|
short: American Samoa
|
128
139
|
emoji: "\U0001F1E6\U0001F1F8"
|
140
|
+
shortcode: ":flag-as:"
|
129
141
|
AT:
|
130
142
|
alpha2: AT
|
131
143
|
alpha3: AUT
|
@@ -136,6 +148,7 @@ AT:
|
|
136
148
|
official: Republic of Austria
|
137
149
|
short: Austria
|
138
150
|
emoji: "\U0001F1E6\U0001F1F9"
|
151
|
+
shortcode: ":flag-at:"
|
139
152
|
AU:
|
140
153
|
alpha2: AU
|
141
154
|
alpha3: AUS
|
@@ -146,6 +159,7 @@ AU:
|
|
146
159
|
official: Commonwealth of Australia
|
147
160
|
short: Australia
|
148
161
|
emoji: "\U0001F1E6\U0001F1FA"
|
162
|
+
shortcode: ":flag-au:"
|
149
163
|
AW:
|
150
164
|
alpha2: AW
|
151
165
|
alpha3: ABW
|
@@ -156,7 +170,10 @@ AW:
|
|
156
170
|
official: Aruba
|
157
171
|
short: Aruba
|
158
172
|
emoji: "\U0001F1E6\U0001F1FC"
|
173
|
+
shortcode: ":flag-aw:"
|
159
174
|
AX:
|
175
|
+
aliases:
|
176
|
+
- Aland Islands
|
160
177
|
alpha2: AX
|
161
178
|
alpha3: ALA
|
162
179
|
fifa:
|
@@ -166,6 +183,7 @@ AX:
|
|
166
183
|
official: "Γ
land Islands"
|
167
184
|
short: "Γ
land Islands"
|
168
185
|
emoji: "\U0001F1E6\U0001F1FD"
|
186
|
+
shortcode: ":flag-ax:"
|
169
187
|
AZ:
|
170
188
|
alpha2: AZ
|
171
189
|
alpha3: AZE
|
@@ -176,9 +194,11 @@ AZ:
|
|
176
194
|
official: Republic of Azerbaijan
|
177
195
|
short: Azerbaijan
|
178
196
|
emoji: "\U0001F1E6\U0001F1FF"
|
197
|
+
shortcode: ":flag-az:"
|
179
198
|
BA:
|
180
199
|
aliases:
|
181
200
|
- Bosnia-Herzegovina
|
201
|
+
- Bosnia Herzegovina
|
182
202
|
alpha2: BA
|
183
203
|
alpha3: BIH
|
184
204
|
fifa: BIH
|
@@ -188,6 +208,7 @@ BA:
|
|
188
208
|
official: Bosnia and Herzegovina
|
189
209
|
short: Bosnia
|
190
210
|
emoji: "\U0001F1E7\U0001F1E6"
|
211
|
+
shortcode: ":flag-ba:"
|
191
212
|
BB:
|
192
213
|
alpha2: BB
|
193
214
|
alpha3: BRB
|
@@ -198,6 +219,7 @@ BB:
|
|
198
219
|
official: Barbados
|
199
220
|
short: Barbados
|
200
221
|
emoji: "\U0001F1E7\U0001F1E7"
|
222
|
+
shortcode: ":flag-bb:"
|
201
223
|
BD:
|
202
224
|
alpha2: BD
|
203
225
|
alpha3: BGD
|
@@ -208,6 +230,7 @@ BD:
|
|
208
230
|
official: People's Republic of Bangladesh
|
209
231
|
short: Bangladesh
|
210
232
|
emoji: "\U0001F1E7\U0001F1E9"
|
233
|
+
shortcode: ":flag-bd:"
|
211
234
|
BE:
|
212
235
|
alpha2: BE
|
213
236
|
alpha3: BEL
|
@@ -218,6 +241,7 @@ BE:
|
|
218
241
|
official: Kingdom of Belgium
|
219
242
|
short: Belgium
|
220
243
|
emoji: "\U0001F1E7\U0001F1EA"
|
244
|
+
shortcode: ":flag-be:"
|
221
245
|
BF:
|
222
246
|
alpha2: BF
|
223
247
|
alpha3: BFA
|
@@ -228,6 +252,7 @@ BF:
|
|
228
252
|
official: Burkina Faso
|
229
253
|
short: Burkina
|
230
254
|
emoji: "\U0001F1E7\U0001F1EB"
|
255
|
+
shortcode: ":flag-bf:"
|
231
256
|
BG:
|
232
257
|
alpha2: BG
|
233
258
|
alpha3: BGR
|
@@ -238,6 +263,7 @@ BG:
|
|
238
263
|
official: Republic of Bulgaria
|
239
264
|
short: Bulgaria
|
240
265
|
emoji: "\U0001F1E7\U0001F1EC"
|
266
|
+
shortcode: ":flag-bg:"
|
241
267
|
BH:
|
242
268
|
alpha2: BH
|
243
269
|
alpha3: BHR
|
@@ -248,6 +274,7 @@ BH:
|
|
248
274
|
official: Kingdom of Bahrain
|
249
275
|
short: Bahrain
|
250
276
|
emoji: "\U0001F1E7\U0001F1ED"
|
277
|
+
shortcode: ":flag-bh:"
|
251
278
|
BI:
|
252
279
|
alpha2: BI
|
253
280
|
alpha3: BDI
|
@@ -258,6 +285,7 @@ BI:
|
|
258
285
|
official: Republic of Burundi
|
259
286
|
short: Burundi
|
260
287
|
emoji: "\U0001F1E7\U0001F1EE"
|
288
|
+
shortcode: ":flag-bi:"
|
261
289
|
BJ:
|
262
290
|
alpha2: BJ
|
263
291
|
alpha3: BEN
|
@@ -268,11 +296,15 @@ BJ:
|
|
268
296
|
official: Republic of Benin
|
269
297
|
short: Benin
|
270
298
|
emoji: "\U0001F1E7\U0001F1EF"
|
299
|
+
shortcode: ":flag-bj:"
|
271
300
|
BL:
|
272
301
|
aliases:
|
273
302
|
- Saint Barts
|
274
303
|
- St. Barts
|
275
304
|
- St. Barths
|
305
|
+
- Saint Barthelemy
|
306
|
+
- Saint BarthΓ©lemy
|
307
|
+
- St. BarthΓ©lemy
|
276
308
|
alpha2: BL
|
277
309
|
alpha3: BLM
|
278
310
|
fifa:
|
@@ -282,6 +314,7 @@ BL:
|
|
282
314
|
official: Territorial Collectivity of Saint BarthΓ©lemy
|
283
315
|
short: Saint Barths
|
284
316
|
emoji: "\U0001F1E7\U0001F1F1"
|
317
|
+
shortcode: ":flag-bl:"
|
285
318
|
BM:
|
286
319
|
aliases:
|
287
320
|
- Bermudas
|
@@ -297,6 +330,7 @@ BM:
|
|
297
330
|
official: Bermuda
|
298
331
|
short: Bermuda
|
299
332
|
emoji: "\U0001F1E7\U0001F1F2"
|
333
|
+
shortcode: ":flag-bm:"
|
300
334
|
BN:
|
301
335
|
alpha2: BN
|
302
336
|
alpha3: BRN
|
@@ -307,6 +341,7 @@ BN:
|
|
307
341
|
official: Nation of Brunei, Abode of Peace
|
308
342
|
short: Brunei
|
309
343
|
emoji: "\U0001F1E7\U0001F1F3"
|
344
|
+
shortcode: ":flag-bn:"
|
310
345
|
BO:
|
311
346
|
alpha2: BO
|
312
347
|
alpha3: BOL
|
@@ -317,6 +352,7 @@ BO:
|
|
317
352
|
official: Plurinational State of Bolivia
|
318
353
|
short: Bolivia
|
319
354
|
emoji: "\U0001F1E7\U0001F1F4"
|
355
|
+
shortcode: ":flag-bo:"
|
320
356
|
BR:
|
321
357
|
alpha2: BR
|
322
358
|
alpha3: BRA
|
@@ -327,6 +363,7 @@ BR:
|
|
327
363
|
official: Federative Republic of Brazil
|
328
364
|
short: Brazil
|
329
365
|
emoji: "\U0001F1E7\U0001F1F7"
|
366
|
+
shortcode: ":flag-br:"
|
330
367
|
BS:
|
331
368
|
alpha2: BS
|
332
369
|
alpha3: BHS
|
@@ -337,6 +374,7 @@ BS:
|
|
337
374
|
official: Commonwealth of the Bahamas
|
338
375
|
short: Bahamas
|
339
376
|
emoji: "\U0001F1E7\U0001F1F8"
|
377
|
+
shortcode: ":flag-bs:"
|
340
378
|
BT:
|
341
379
|
alpha2: BT
|
342
380
|
alpha3: BTN
|
@@ -347,6 +385,7 @@ BT:
|
|
347
385
|
official: Kingdom of Bhutan
|
348
386
|
short: Bhutan
|
349
387
|
emoji: "\U0001F1E7\U0001F1F9"
|
388
|
+
shortcode: ":flag-bt:"
|
350
389
|
BV:
|
351
390
|
alpha2: BV
|
352
391
|
alpha3: BVT
|
@@ -357,6 +396,7 @@ BV:
|
|
357
396
|
official: Bouvet Island
|
358
397
|
short: Bouvet Island
|
359
398
|
emoji: "\U0001F1E7\U0001F1FB"
|
399
|
+
shortcode: ":flag-bv:"
|
360
400
|
BW:
|
361
401
|
alpha2: BW
|
362
402
|
alpha3: BWA
|
@@ -367,6 +407,7 @@ BW:
|
|
367
407
|
official: Republic of Botswana
|
368
408
|
short: Botswana
|
369
409
|
emoji: "\U0001F1E7\U0001F1FC"
|
410
|
+
shortcode: ":flag-bw:"
|
370
411
|
BY:
|
371
412
|
alpha2: BY
|
372
413
|
alpha3: BLR
|
@@ -377,6 +418,7 @@ BY:
|
|
377
418
|
official: Republic of Belarus
|
378
419
|
short: Belarus
|
379
420
|
emoji: "\U0001F1E7\U0001F1FE"
|
421
|
+
shortcode: ":flag-by:"
|
380
422
|
BZ:
|
381
423
|
alpha2: BZ
|
382
424
|
alpha3: BLZ
|
@@ -387,6 +429,7 @@ BZ:
|
|
387
429
|
official: Belize
|
388
430
|
short: Belize
|
389
431
|
emoji: "\U0001F1E7\U0001F1FF"
|
432
|
+
shortcode: ":flag-bz:"
|
390
433
|
CA:
|
391
434
|
alpha2: CA
|
392
435
|
alpha3: CAN
|
@@ -397,6 +440,7 @@ CA:
|
|
397
440
|
official: Canada
|
398
441
|
short: Canada
|
399
442
|
emoji: "\U0001F1E8\U0001F1E6"
|
443
|
+
shortcode: ":flag-ca:"
|
400
444
|
CC:
|
401
445
|
aliases:
|
402
446
|
- Cocos Islands
|
@@ -410,20 +454,28 @@ CC:
|
|
410
454
|
official: Territory of the Cocos (Keeling) Islands
|
411
455
|
short: Cocos (Keeling) Islands
|
412
456
|
emoji: "\U0001F1E8\U0001F1E8"
|
457
|
+
shortcode: ":flag-cc:"
|
413
458
|
CD:
|
414
459
|
aliases:
|
460
|
+
- Congo Kinshasa
|
415
461
|
- Congo-Kinshasa
|
416
|
-
-
|
462
|
+
- Congo, The Democratic Republic Of The
|
463
|
+
- Congo, Democratic Republic of
|
464
|
+
- Democratic Republic of Congo
|
417
465
|
- DR Congo
|
466
|
+
- RD Congo
|
467
|
+
- DROC
|
468
|
+
- DRC
|
418
469
|
alpha2: CD
|
419
470
|
alpha3: COD
|
420
471
|
fifa: COD
|
421
472
|
ioc: COD
|
422
|
-
iso_name: Congo,
|
473
|
+
iso_name: Congo, Democratic Republic Of The
|
423
474
|
numeric: "180"
|
424
475
|
official: Democratic Republic of the Congo
|
425
476
|
short: Congo, The Democratic Republic Of The
|
426
477
|
emoji: "\U0001F1E8\U0001F1E9"
|
478
|
+
shortcode: ":flag-cd:"
|
427
479
|
CF:
|
428
480
|
alpha2: CF
|
429
481
|
alpha3: CAF
|
@@ -434,18 +486,23 @@ CF:
|
|
434
486
|
official: Central African Republic
|
435
487
|
short: Central African Republic
|
436
488
|
emoji: "\U0001F1E8\U0001F1EB"
|
489
|
+
shortcode: ":flag-cf:"
|
437
490
|
CG:
|
438
491
|
aliases:
|
439
492
|
- Congo-Brazzaville
|
493
|
+
- Congo Brazzaville
|
494
|
+
- Congo Republic
|
495
|
+
- Congo, Republic of the
|
440
496
|
alpha2: CG
|
441
497
|
alpha3: COG
|
442
498
|
fifa: CGO
|
443
499
|
ioc: CGO
|
444
500
|
iso_name: Congo
|
445
501
|
numeric: "178"
|
446
|
-
official:
|
502
|
+
official: Republic of the Congo
|
447
503
|
short: Congo
|
448
504
|
emoji: "\U0001F1E8\U0001F1EC"
|
505
|
+
shortcode: ":flag-cg:"
|
449
506
|
CH:
|
450
507
|
alpha2: CH
|
451
508
|
alpha3: CHE
|
@@ -456,7 +513,13 @@ CH:
|
|
456
513
|
official: Swiss Confederation
|
457
514
|
short: Switzerland
|
458
515
|
emoji: "\U0001F1E8\U0001F1ED"
|
516
|
+
shortcode: ":flag-ch:"
|
459
517
|
CI:
|
518
|
+
aliases:
|
519
|
+
- CΓ΄te D'Ivoire
|
520
|
+
- CΓ΄te DβIvoire
|
521
|
+
- Cote D'Ivoire
|
522
|
+
- Cote DβIvoire
|
460
523
|
alpha2: CI
|
461
524
|
alpha3: CIV
|
462
525
|
fifa: CIV
|
@@ -466,6 +529,7 @@ CI:
|
|
466
529
|
official: Republic of CΓ΄te D'Ivoire
|
467
530
|
short: Ivory Coast
|
468
531
|
emoji: "\U0001F1E8\U0001F1EE"
|
532
|
+
shortcode: ":flag-ci:"
|
469
533
|
CK:
|
470
534
|
alpha2: CK
|
471
535
|
alpha3: COK
|
@@ -476,6 +540,7 @@ CK:
|
|
476
540
|
official: Cook Islands
|
477
541
|
short: Cook Islands
|
478
542
|
emoji: "\U0001F1E8\U0001F1F0"
|
543
|
+
shortcode: ":flag-ck:"
|
479
544
|
CL:
|
480
545
|
alpha2: CL
|
481
546
|
alpha3: CHL
|
@@ -486,7 +551,11 @@ CL:
|
|
486
551
|
official: Republic of Chile
|
487
552
|
short: Chile
|
488
553
|
emoji: "\U0001F1E8\U0001F1F1"
|
554
|
+
shortcode: ":flag-cl:"
|
489
555
|
CM:
|
556
|
+
aliases:
|
557
|
+
- Cameroun
|
558
|
+
- Cameroon, Republic of
|
490
559
|
alpha2: CM
|
491
560
|
alpha3: CMR
|
492
561
|
fifa: CMR
|
@@ -496,6 +565,7 @@ CM:
|
|
496
565
|
official: Republic of Cameroon
|
497
566
|
short: Cameroon
|
498
567
|
emoji: "\U0001F1E8\U0001F1F2"
|
568
|
+
shortcode: ":flag-cm:"
|
499
569
|
CN:
|
500
570
|
alpha2: CN
|
501
571
|
alpha3: CHN
|
@@ -506,6 +576,7 @@ CN:
|
|
506
576
|
official: People's Republic of China
|
507
577
|
short: China
|
508
578
|
emoji: "\U0001F1E8\U0001F1F3"
|
579
|
+
shortcode: ":flag-cn:"
|
509
580
|
CO:
|
510
581
|
alpha2: CO
|
511
582
|
alpha3: COL
|
@@ -516,6 +587,7 @@ CO:
|
|
516
587
|
official: Republic of Colombia
|
517
588
|
short: Colombia
|
518
589
|
emoji: "\U0001F1E8\U0001F1F4"
|
590
|
+
shortcode: ":flag-co:"
|
519
591
|
CR:
|
520
592
|
alpha2: CR
|
521
593
|
alpha3: CRI
|
@@ -526,6 +598,7 @@ CR:
|
|
526
598
|
official: Republic of Costa Rica
|
527
599
|
short: Costa Rica
|
528
600
|
emoji: "\U0001F1E8\U0001F1F7"
|
601
|
+
shortcode: ":flag-cr:"
|
529
602
|
CU:
|
530
603
|
alpha2: CU
|
531
604
|
alpha3: CUB
|
@@ -536,6 +609,7 @@ CU:
|
|
536
609
|
official: Republic of Cuba
|
537
610
|
short: Cuba
|
538
611
|
emoji: "\U0001F1E8\U0001F1FA"
|
612
|
+
shortcode: ":flag-cu:"
|
539
613
|
CV:
|
540
614
|
alpha2: CV
|
541
615
|
alpha3: CPV
|
@@ -546,6 +620,20 @@ CV:
|
|
546
620
|
official: Republic of Cape Verde
|
547
621
|
short: Cape Verde
|
548
622
|
emoji: "\U0001F1E8\U0001F1FB"
|
623
|
+
shortcode: ":flag-cv:"
|
624
|
+
CW:
|
625
|
+
aliases:
|
626
|
+
- Curacao
|
627
|
+
alpha2: CW
|
628
|
+
alpha3: CUW
|
629
|
+
fifa: CUW
|
630
|
+
ioc:
|
631
|
+
iso_name: "CuraΓ§ao"
|
632
|
+
numeric: "531"
|
633
|
+
official: "CuraΓ§ao"
|
634
|
+
short:
|
635
|
+
emoji: "\U0001F1E8\U0001F1FC"
|
636
|
+
shortcode: ":flag-cw:"
|
549
637
|
CX:
|
550
638
|
alpha2: CX
|
551
639
|
alpha3: CXR
|
@@ -556,6 +644,7 @@ CX:
|
|
556
644
|
official: Territory of Christmas Island
|
557
645
|
short: Christmas Island
|
558
646
|
emoji: "\U0001F1E8\U0001F1FD"
|
647
|
+
shortcode: ":flag-cx:"
|
559
648
|
CY:
|
560
649
|
alpha2: CY
|
561
650
|
alpha3: CYP
|
@@ -566,6 +655,7 @@ CY:
|
|
566
655
|
official: Republic of Cyprus
|
567
656
|
short: Cyprus
|
568
657
|
emoji: "\U0001F1E8\U0001F1FE"
|
658
|
+
shortcode: ":flag-cy:"
|
569
659
|
CZ:
|
570
660
|
alpha2: CZ
|
571
661
|
alpha3: CZE
|
@@ -576,6 +666,7 @@ CZ:
|
|
576
666
|
official: Czech Republic
|
577
667
|
short: Czechia
|
578
668
|
emoji: "\U0001F1E8\U0001F1FF"
|
669
|
+
shortcode: ":flag-cz:"
|
579
670
|
DE:
|
580
671
|
alpha2: DE
|
581
672
|
alpha3: DEU
|
@@ -586,6 +677,7 @@ DE:
|
|
586
677
|
official: Federal Republic of Germany
|
587
678
|
short: Germany
|
588
679
|
emoji: "\U0001F1E9\U0001F1EA"
|
680
|
+
shortcode: ":flag-de:"
|
589
681
|
DJ:
|
590
682
|
alpha2: DJ
|
591
683
|
alpha3: DJI
|
@@ -596,6 +688,7 @@ DJ:
|
|
596
688
|
official: Republic of Djibouti
|
597
689
|
short: Djibouti
|
598
690
|
emoji: "\U0001F1E9\U0001F1EF"
|
691
|
+
shortcode: ":flag-dj:"
|
599
692
|
DK:
|
600
693
|
alpha2: DK
|
601
694
|
alpha3: DNK
|
@@ -606,6 +699,7 @@ DK:
|
|
606
699
|
official: Kingdom of Denmark
|
607
700
|
short: Denmark
|
608
701
|
emoji: "\U0001F1E9\U0001F1F0"
|
702
|
+
shortcode: ":flag-dk:"
|
609
703
|
DM:
|
610
704
|
alpha2: DM
|
611
705
|
alpha3: DMA
|
@@ -616,6 +710,7 @@ DM:
|
|
616
710
|
official: Commonwealth of Dominica
|
617
711
|
short: Dominica
|
618
712
|
emoji: "\U0001F1E9\U0001F1F2"
|
713
|
+
shortcode: ":flag-dm:"
|
619
714
|
DO:
|
620
715
|
alpha2: DO
|
621
716
|
alpha3: DOM
|
@@ -626,6 +721,7 @@ DO:
|
|
626
721
|
official: Dominican Republic
|
627
722
|
short: Dominican Republic
|
628
723
|
emoji: "\U0001F1E9\U0001F1F4"
|
724
|
+
shortcode: ":flag-do:"
|
629
725
|
DZ:
|
630
726
|
alpha2: DZ
|
631
727
|
alpha3: DZA
|
@@ -636,6 +732,7 @@ DZ:
|
|
636
732
|
official: People's Democratic Republic of Algeria
|
637
733
|
short: Algeria
|
638
734
|
emoji: "\U0001F1E9\U0001F1FF"
|
735
|
+
shortcode: ":flag-dz:"
|
639
736
|
EC:
|
640
737
|
alpha2: EC
|
641
738
|
alpha3: ECU
|
@@ -646,6 +743,7 @@ EC:
|
|
646
743
|
official: Republic of Ecuador
|
647
744
|
short: Ecuador
|
648
745
|
emoji: "\U0001F1EA\U0001F1E8"
|
746
|
+
shortcode: ":flag-ec:"
|
649
747
|
EE:
|
650
748
|
alpha2: EE
|
651
749
|
alpha3: EST
|
@@ -656,6 +754,7 @@ EE:
|
|
656
754
|
official: Republic of Estonia
|
657
755
|
short: Estonia
|
658
756
|
emoji: "\U0001F1EA\U0001F1EA"
|
757
|
+
shortcode: ":flag-ee:"
|
659
758
|
EG:
|
660
759
|
alpha2: EG
|
661
760
|
alpha3: EGY
|
@@ -666,6 +765,7 @@ EG:
|
|
666
765
|
official: Arab Republic of Egypt
|
667
766
|
short: Egypt
|
668
767
|
emoji: "\U0001F1EA\U0001F1EC"
|
768
|
+
shortcode: ":flag-eg:"
|
669
769
|
EH:
|
670
770
|
alpha2: EH
|
671
771
|
alpha3: ESH
|
@@ -676,6 +776,7 @@ EH:
|
|
676
776
|
official: Western Sahara
|
677
777
|
short: Western Sahara
|
678
778
|
emoji: "\U0001F1EA\U0001F1ED"
|
779
|
+
shortcode: ":flag-eh:"
|
679
780
|
ER:
|
680
781
|
alpha2: ER
|
681
782
|
alpha3: ERI
|
@@ -686,6 +787,7 @@ ER:
|
|
686
787
|
official: State of Eritrea
|
687
788
|
short: Eritrea
|
688
789
|
emoji: "\U0001F1EA\U0001F1F7"
|
790
|
+
shortcode: ":flag-er:"
|
689
791
|
ES:
|
690
792
|
alpha2: ES
|
691
793
|
alpha3: ESP
|
@@ -696,6 +798,7 @@ ES:
|
|
696
798
|
official: Kingdom of Spain
|
697
799
|
short: Spain
|
698
800
|
emoji: "\U0001F1EA\U0001F1F8"
|
801
|
+
shortcode: ":flag-es:"
|
699
802
|
ET:
|
700
803
|
alpha2: ET
|
701
804
|
alpha3: ETH
|
@@ -706,6 +809,7 @@ ET:
|
|
706
809
|
official: Federal Democratic Republic of Ethiopia
|
707
810
|
short: Ethiopia
|
708
811
|
emoji: "\U0001F1EA\U0001F1F9"
|
812
|
+
shortcode: ":flag-et:"
|
709
813
|
FI:
|
710
814
|
alpha2: FI
|
711
815
|
alpha3: FIN
|
@@ -716,6 +820,7 @@ FI:
|
|
716
820
|
official: Republic of Finland
|
717
821
|
short: Finland
|
718
822
|
emoji: "\U0001F1EB\U0001F1EE"
|
823
|
+
shortcode: ":flag-fi:"
|
719
824
|
FJ:
|
720
825
|
alpha2: FJ
|
721
826
|
alpha3: FJI
|
@@ -726,6 +831,7 @@ FJ:
|
|
726
831
|
official: Republic of Fiji
|
727
832
|
short: Fiji
|
728
833
|
emoji: "\U0001F1EB\U0001F1EF"
|
834
|
+
shortcode: ":flag-fj:"
|
729
835
|
FK:
|
730
836
|
aliases:
|
731
837
|
- The Falklands
|
@@ -738,6 +844,7 @@ FK:
|
|
738
844
|
official: Falkland Islands
|
739
845
|
short: Falkland Islands (Malvinas)
|
740
846
|
emoji: "\U0001F1EB\U0001F1F0"
|
847
|
+
shortcode: ":flag-fk:"
|
741
848
|
FM:
|
742
849
|
alpha2: FM
|
743
850
|
alpha3: FSM
|
@@ -748,7 +855,11 @@ FM:
|
|
748
855
|
official: Federated States of Micronesia
|
749
856
|
short: Micronesia, Federated States Of
|
750
857
|
emoji: "\U0001F1EB\U0001F1F2"
|
858
|
+
shortcode: ":flag-fm:"
|
751
859
|
FO:
|
860
|
+
aliases:
|
861
|
+
- Faroes
|
862
|
+
- Faeroes
|
752
863
|
alpha2: FO
|
753
864
|
alpha3: FRO
|
754
865
|
fifa: FRO
|
@@ -758,6 +869,7 @@ FO:
|
|
758
869
|
official: Faroe Islands
|
759
870
|
short: Faroe Islands
|
760
871
|
emoji: "\U0001F1EB\U0001F1F4"
|
872
|
+
shortcode: ":flag-fo:"
|
761
873
|
FR:
|
762
874
|
alpha2: FR
|
763
875
|
alpha3: FRA
|
@@ -768,6 +880,7 @@ FR:
|
|
768
880
|
official: French Republic
|
769
881
|
short: France
|
770
882
|
emoji: "\U0001F1EB\U0001F1F7"
|
883
|
+
shortcode: ":flag-fr:"
|
771
884
|
GA:
|
772
885
|
alpha2: GA
|
773
886
|
alpha3: GAB
|
@@ -778,6 +891,7 @@ GA:
|
|
778
891
|
official: Gabonese Republic
|
779
892
|
short: Gabon
|
780
893
|
emoji: "\U0001F1EC\U0001F1E6"
|
894
|
+
shortcode: ":flag-ga:"
|
781
895
|
GB:
|
782
896
|
aliases:
|
783
897
|
- Britain
|
@@ -792,6 +906,7 @@ GB:
|
|
792
906
|
official: United Kingdom of Great Britain and Northern Ireland
|
793
907
|
short: United Kingdom
|
794
908
|
emoji: "\U0001F1EC\U0001F1E7"
|
909
|
+
shortcode: ":flag-gb:"
|
795
910
|
GD:
|
796
911
|
alpha2: GD
|
797
912
|
alpha3: GRD
|
@@ -802,6 +917,7 @@ GD:
|
|
802
917
|
official: Grenada
|
803
918
|
short: Grenada
|
804
919
|
emoji: "\U0001F1EC\U0001F1E9"
|
920
|
+
shortcode: ":flag-gd:"
|
805
921
|
GE:
|
806
922
|
alpha2: GE
|
807
923
|
alpha3: GEO
|
@@ -812,6 +928,7 @@ GE:
|
|
812
928
|
official: Georgia
|
813
929
|
short: Georgia
|
814
930
|
emoji: "\U0001F1EC\U0001F1EA"
|
931
|
+
shortcode: ":flag-ge:"
|
815
932
|
GF:
|
816
933
|
alpha2: GF
|
817
934
|
alpha3: GUF
|
@@ -822,6 +939,7 @@ GF:
|
|
822
939
|
official: French Guiana
|
823
940
|
short: French Guiana
|
824
941
|
emoji: "\U0001F1EC\U0001F1EB"
|
942
|
+
shortcode: ":flag-gf:"
|
825
943
|
GG:
|
826
944
|
alpha2: GG
|
827
945
|
alpha3: GGY
|
@@ -832,6 +950,7 @@ GG:
|
|
832
950
|
official: Bailiwick of Guernsey
|
833
951
|
short: Guernsey
|
834
952
|
emoji: "\U0001F1EC\U0001F1EC"
|
953
|
+
shortcode: ":flag-gg:"
|
835
954
|
GH:
|
836
955
|
alpha2: GH
|
837
956
|
alpha3: GHA
|
@@ -842,6 +961,7 @@ GH:
|
|
842
961
|
official: Republic of Ghana
|
843
962
|
short: Ghana
|
844
963
|
emoji: "\U0001F1EC\U0001F1ED"
|
964
|
+
shortcode: ":flag-gh:"
|
845
965
|
GI:
|
846
966
|
alpha2: GI
|
847
967
|
alpha3: GIB
|
@@ -852,6 +972,7 @@ GI:
|
|
852
972
|
official: Gibraltar
|
853
973
|
short: Gibraltar
|
854
974
|
emoji: "\U0001F1EC\U0001F1EE"
|
975
|
+
shortcode: ":flag-gi:"
|
855
976
|
GL:
|
856
977
|
alpha2: GL
|
857
978
|
alpha3: GRL
|
@@ -862,6 +983,7 @@ GL:
|
|
862
983
|
official: Greenland
|
863
984
|
short: Greenland
|
864
985
|
emoji: "\U0001F1EC\U0001F1F1"
|
986
|
+
shortcode: ":flag-gl:"
|
865
987
|
GM:
|
866
988
|
alpha2: GM
|
867
989
|
alpha3: GMB
|
@@ -872,6 +994,7 @@ GM:
|
|
872
994
|
official: Republic of the Gambia
|
873
995
|
short: Gambia
|
874
996
|
emoji: "\U0001F1EC\U0001F1F2"
|
997
|
+
shortcode: ":flag-gm:"
|
875
998
|
GN:
|
876
999
|
alpha2: GN
|
877
1000
|
alpha3: GIN
|
@@ -882,6 +1005,7 @@ GN:
|
|
882
1005
|
official: Republic of Guinea
|
883
1006
|
short: Guinea
|
884
1007
|
emoji: "\U0001F1EC\U0001F1F3"
|
1008
|
+
shortcode: ":flag-gn:"
|
885
1009
|
GP:
|
886
1010
|
alpha2: GP
|
887
1011
|
alpha3: GLP
|
@@ -892,6 +1016,7 @@ GP:
|
|
892
1016
|
official: Guadeloupe
|
893
1017
|
short: Guadeloupe
|
894
1018
|
emoji: "\U0001F1EC\U0001F1F5"
|
1019
|
+
shortcode: ":flag-gp:"
|
895
1020
|
GQ:
|
896
1021
|
alpha2: GQ
|
897
1022
|
alpha3: GNQ
|
@@ -902,6 +1027,7 @@ GQ:
|
|
902
1027
|
official: Republic of Equatorial Guinea
|
903
1028
|
short: Equatorial Guinea
|
904
1029
|
emoji: "\U0001F1EC\U0001F1F6"
|
1030
|
+
shortcode: ":flag-gq:"
|
905
1031
|
GR:
|
906
1032
|
alpha2: GR
|
907
1033
|
alpha3: GRC
|
@@ -912,6 +1038,7 @@ GR:
|
|
912
1038
|
official: Hellenic Republic
|
913
1039
|
short: Greece
|
914
1040
|
emoji: "\U0001F1EC\U0001F1F7"
|
1041
|
+
shortcode: ":flag-gr:"
|
915
1042
|
GS:
|
916
1043
|
alpha2: GS
|
917
1044
|
alpha3: SGS
|
@@ -922,6 +1049,7 @@ GS:
|
|
922
1049
|
official: South Georgia and the South Sandwich Islands
|
923
1050
|
short: South Georgia and the South Sandwich Islands
|
924
1051
|
emoji: "\U0001F1EC\U0001F1F8"
|
1052
|
+
shortcode: ":flag-gs:"
|
925
1053
|
GT:
|
926
1054
|
alpha2: GT
|
927
1055
|
alpha3: GTM
|
@@ -932,6 +1060,7 @@ GT:
|
|
932
1060
|
official: Republic of Guatemala
|
933
1061
|
short: Guatemala
|
934
1062
|
emoji: "\U0001F1EC\U0001F1F9"
|
1063
|
+
shortcode: ":flag-gt:"
|
935
1064
|
GU:
|
936
1065
|
alpha2: GU
|
937
1066
|
alpha3: GUM
|
@@ -942,7 +1071,11 @@ GU:
|
|
942
1071
|
official: Guam
|
943
1072
|
short: Guam
|
944
1073
|
emoji: "\U0001F1EC\U0001F1FA"
|
1074
|
+
shortcode: ":flag-gu:"
|
945
1075
|
GW:
|
1076
|
+
aliases:
|
1077
|
+
- Guinea Bissau
|
1078
|
+
- Republic of Guinea Bissau
|
946
1079
|
alpha2: GW
|
947
1080
|
alpha3: GNB
|
948
1081
|
fifa: GNB
|
@@ -952,6 +1085,7 @@ GW:
|
|
952
1085
|
official: Republic of Guinea-Bissau
|
953
1086
|
short: Guinea-Bissau
|
954
1087
|
emoji: "\U0001F1EC\U0001F1FC"
|
1088
|
+
shortcode: ":flag-gw:"
|
955
1089
|
GY:
|
956
1090
|
alpha2: GY
|
957
1091
|
alpha3: GUY
|
@@ -962,6 +1096,7 @@ GY:
|
|
962
1096
|
official: Co-operative Republic of Guyana
|
963
1097
|
short: Guyana
|
964
1098
|
emoji: "\U0001F1EC\U0001F1FE"
|
1099
|
+
shortcode: ":flag-gy:"
|
965
1100
|
HK:
|
966
1101
|
aliases:
|
967
1102
|
- Hong Kong Special Administrative Region
|
@@ -974,6 +1109,7 @@ HK:
|
|
974
1109
|
official: Hong Kong Special Administrative Region of the People's Republic of China
|
975
1110
|
short: Hong Kong
|
976
1111
|
emoji: "\U0001F1ED\U0001F1F0"
|
1112
|
+
shortcode: ":flag-hk:"
|
977
1113
|
HM:
|
978
1114
|
aliases:
|
979
1115
|
- HIMI
|
@@ -986,6 +1122,7 @@ HM:
|
|
986
1122
|
official: Heard and McDonald Islands
|
987
1123
|
short: Heard and McDonald Islands
|
988
1124
|
emoji: "\U0001F1ED\U0001F1F2"
|
1125
|
+
shortcode: ":flag-hm:"
|
989
1126
|
HN:
|
990
1127
|
alpha2: HN
|
991
1128
|
alpha3: HND
|
@@ -996,6 +1133,7 @@ HN:
|
|
996
1133
|
official: Republic of Honduras
|
997
1134
|
short: Honduras
|
998
1135
|
emoji: "\U0001F1ED\U0001F1F3"
|
1136
|
+
shortcode: ":flag-hn:"
|
999
1137
|
HR:
|
1000
1138
|
alpha2: HR
|
1001
1139
|
alpha3: HRV
|
@@ -1006,6 +1144,7 @@ HR:
|
|
1006
1144
|
official: Republic of Croatia
|
1007
1145
|
short: Croatia
|
1008
1146
|
emoji: "\U0001F1ED\U0001F1F7"
|
1147
|
+
shortcode: ":flag-hr:"
|
1009
1148
|
HT:
|
1010
1149
|
alpha2: HT
|
1011
1150
|
alpha3: HTI
|
@@ -1016,6 +1155,7 @@ HT:
|
|
1016
1155
|
official: Republic of Haiti
|
1017
1156
|
short: Haiti
|
1018
1157
|
emoji: "\U0001F1ED\U0001F1F9"
|
1158
|
+
shortcode: ":flag-ht:"
|
1019
1159
|
HU:
|
1020
1160
|
alpha2: HU
|
1021
1161
|
alpha3: HUN
|
@@ -1026,6 +1166,7 @@ HU:
|
|
1026
1166
|
official: Hungary
|
1027
1167
|
short: Hungary
|
1028
1168
|
emoji: "\U0001F1ED\U0001F1FA"
|
1169
|
+
shortcode: ":flag-hu:"
|
1029
1170
|
ID:
|
1030
1171
|
alpha2: ID
|
1031
1172
|
alpha3: IDN
|
@@ -1036,6 +1177,7 @@ ID:
|
|
1036
1177
|
official: Republic of Indonesia
|
1037
1178
|
short: Indonesia
|
1038
1179
|
emoji: "\U0001F1EE\U0001F1E9"
|
1180
|
+
shortcode: ":flag-id:"
|
1039
1181
|
IE:
|
1040
1182
|
alpha2: IE
|
1041
1183
|
alpha3: IRL
|
@@ -1046,6 +1188,7 @@ IE:
|
|
1046
1188
|
official: Ireland
|
1047
1189
|
short: Ireland
|
1048
1190
|
emoji: "\U0001F1EE\U0001F1EA"
|
1191
|
+
shortcode: ":flag-ie:"
|
1049
1192
|
IL:
|
1050
1193
|
alpha2: IL
|
1051
1194
|
alpha3: ISR
|
@@ -1056,6 +1199,7 @@ IL:
|
|
1056
1199
|
official: State of Israel
|
1057
1200
|
short: Israel
|
1058
1201
|
emoji: "\U0001F1EE\U0001F1F1"
|
1202
|
+
shortcode: ":flag-il:"
|
1059
1203
|
IM:
|
1060
1204
|
aliases:
|
1061
1205
|
- Mann
|
@@ -1068,6 +1212,7 @@ IM:
|
|
1068
1212
|
official: Isle of Man
|
1069
1213
|
short: Isle of Man
|
1070
1214
|
emoji: "\U0001F1EE\U0001F1F2"
|
1215
|
+
shortcode: ":flag-im:"
|
1071
1216
|
IN:
|
1072
1217
|
alpha2: IN
|
1073
1218
|
alpha3: IND
|
@@ -1078,6 +1223,7 @@ IN:
|
|
1078
1223
|
official: Republic of India
|
1079
1224
|
short: India
|
1080
1225
|
emoji: "\U0001F1EE\U0001F1F3"
|
1226
|
+
shortcode: ":flag-in:"
|
1081
1227
|
IO:
|
1082
1228
|
aliases:
|
1083
1229
|
- BIOT
|
@@ -1091,6 +1237,7 @@ IO:
|
|
1091
1237
|
official: British Indian Ocean Territory
|
1092
1238
|
short: British Indian Ocean Territory
|
1093
1239
|
emoji: "\U0001F1EE\U0001F1F4"
|
1240
|
+
shortcode: ":flag-io:"
|
1094
1241
|
IQ:
|
1095
1242
|
alpha2: IQ
|
1096
1243
|
alpha3: IRQ
|
@@ -1101,6 +1248,7 @@ IQ:
|
|
1101
1248
|
official: Republic of Iraq
|
1102
1249
|
short: Iraq
|
1103
1250
|
emoji: "\U0001F1EE\U0001F1F6"
|
1251
|
+
shortcode: ":flag-iq:"
|
1104
1252
|
IR:
|
1105
1253
|
alpha2: IR
|
1106
1254
|
alpha3: IRN
|
@@ -1111,6 +1259,7 @@ IR:
|
|
1111
1259
|
official: Islamic Republic of Iran
|
1112
1260
|
short: Iran
|
1113
1261
|
emoji: "\U0001F1EE\U0001F1F7"
|
1262
|
+
shortcode: ":flag-ir:"
|
1114
1263
|
IS:
|
1115
1264
|
alpha2: IS
|
1116
1265
|
alpha3: ISL
|
@@ -1121,6 +1270,7 @@ IS:
|
|
1121
1270
|
official: Iceland
|
1122
1271
|
short: Iceland
|
1123
1272
|
emoji: "\U0001F1EE\U0001F1F8"
|
1273
|
+
shortcode: ":flag-is:"
|
1124
1274
|
IT:
|
1125
1275
|
alpha2: IT
|
1126
1276
|
alpha3: ITA
|
@@ -1131,6 +1281,7 @@ IT:
|
|
1131
1281
|
official: Italian Republic
|
1132
1282
|
short: Italy
|
1133
1283
|
emoji: "\U0001F1EE\U0001F1F9"
|
1284
|
+
shortcode: ":flag-it:"
|
1134
1285
|
JE:
|
1135
1286
|
alpha2: JE
|
1136
1287
|
alpha3: JEY
|
@@ -1141,6 +1292,7 @@ JE:
|
|
1141
1292
|
official: Bailiwick of Jersey
|
1142
1293
|
short: Jersey
|
1143
1294
|
emoji: "\U0001F1EF\U0001F1EA"
|
1295
|
+
shortcode: ":flag-je:"
|
1144
1296
|
JM:
|
1145
1297
|
alpha2: JM
|
1146
1298
|
alpha3: JAM
|
@@ -1151,6 +1303,7 @@ JM:
|
|
1151
1303
|
official: Jamaica
|
1152
1304
|
short: Jamaica
|
1153
1305
|
emoji: "\U0001F1EF\U0001F1F2"
|
1306
|
+
shortcode: ":flag-jm:"
|
1154
1307
|
JO:
|
1155
1308
|
aliases:
|
1156
1309
|
- Kingdom of Jordan
|
@@ -1163,6 +1316,7 @@ JO:
|
|
1163
1316
|
official: Hashemite Kingdom of Jordan
|
1164
1317
|
short: Jordan
|
1165
1318
|
emoji: "\U0001F1EF\U0001F1F4"
|
1319
|
+
shortcode: ":flag-jo:"
|
1166
1320
|
JP:
|
1167
1321
|
alpha2: JP
|
1168
1322
|
alpha3: JPN
|
@@ -1173,6 +1327,7 @@ JP:
|
|
1173
1327
|
official: Japan
|
1174
1328
|
short: Japan
|
1175
1329
|
emoji: "\U0001F1EF\U0001F1F5"
|
1330
|
+
shortcode: ":flag-jp:"
|
1176
1331
|
KE:
|
1177
1332
|
alpha2: KE
|
1178
1333
|
alpha3: KEN
|
@@ -1183,6 +1338,7 @@ KE:
|
|
1183
1338
|
official: Republic of Kenya
|
1184
1339
|
short: Kenya
|
1185
1340
|
emoji: "\U0001F1F0\U0001F1EA"
|
1341
|
+
shortcode: ":flag-ke:"
|
1186
1342
|
KG:
|
1187
1343
|
alpha2: KG
|
1188
1344
|
alpha3: KGZ
|
@@ -1193,6 +1349,7 @@ KG:
|
|
1193
1349
|
official: Kyrgyz Republic
|
1194
1350
|
short: Kyrgyzstan
|
1195
1351
|
emoji: "\U0001F1F0\U0001F1EC"
|
1352
|
+
shortcode: ":flag-kg:"
|
1196
1353
|
KH:
|
1197
1354
|
alpha2: KH
|
1198
1355
|
alpha3: KHM
|
@@ -1203,6 +1360,7 @@ KH:
|
|
1203
1360
|
official: Kingdom of Cambodia
|
1204
1361
|
short: Cambodia
|
1205
1362
|
emoji: "\U0001F1F0\U0001F1ED"
|
1363
|
+
shortcode: ":flag-kh:"
|
1206
1364
|
KI:
|
1207
1365
|
alpha2: KI
|
1208
1366
|
alpha3: KIR
|
@@ -1213,6 +1371,7 @@ KI:
|
|
1213
1371
|
official: Republic of Kiribati
|
1214
1372
|
short: Kiribati
|
1215
1373
|
emoji: "\U0001F1F0\U0001F1EE"
|
1374
|
+
shortcode: ":flag-ki:"
|
1216
1375
|
KM:
|
1217
1376
|
alpha2: KM
|
1218
1377
|
alpha3: COM
|
@@ -1223,6 +1382,7 @@ KM:
|
|
1223
1382
|
official: Union of the Comoros
|
1224
1383
|
short: Comoros
|
1225
1384
|
emoji: "\U0001F1F0\U0001F1F2"
|
1385
|
+
shortcode: ":flag-km:"
|
1226
1386
|
KN:
|
1227
1387
|
aliases:
|
1228
1388
|
- Federation of Saint Christopher and Nevi
|
@@ -1235,11 +1395,13 @@ KN:
|
|
1235
1395
|
official: Federation of Saint Kitts and Nevis
|
1236
1396
|
short: Saint Kitts And Nevis
|
1237
1397
|
emoji: "\U0001F1F0\U0001F1F3"
|
1398
|
+
shortcode: ":flag-kn:"
|
1238
1399
|
KP:
|
1239
1400
|
aliases:
|
1240
1401
|
- DPRK
|
1241
1402
|
- N Korea
|
1242
1403
|
- N. Korea
|
1404
|
+
- Korea, North
|
1243
1405
|
alpha2: KP
|
1244
1406
|
alpha3: PRK
|
1245
1407
|
fifa: PRK
|
@@ -1249,10 +1411,12 @@ KP:
|
|
1249
1411
|
official: Democratic People's Republic of Korea
|
1250
1412
|
short: North Korea
|
1251
1413
|
emoji: "\U0001F1F0\U0001F1F5"
|
1414
|
+
shortcode: ":flag-kp:"
|
1252
1415
|
KR:
|
1253
1416
|
aliases:
|
1254
1417
|
- S Korea
|
1255
1418
|
- S. Korea
|
1419
|
+
- Korea, South
|
1256
1420
|
alpha2: KR
|
1257
1421
|
alpha3: KOR
|
1258
1422
|
fifa: KOR
|
@@ -1262,6 +1426,7 @@ KR:
|
|
1262
1426
|
official: Republic of Korea
|
1263
1427
|
short: South Korea
|
1264
1428
|
emoji: "\U0001F1F0\U0001F1F7"
|
1429
|
+
shortcode: ":flag-kr:"
|
1265
1430
|
KW:
|
1266
1431
|
alpha2: KW
|
1267
1432
|
alpha3: KWT
|
@@ -1272,6 +1437,7 @@ KW:
|
|
1272
1437
|
official: State of Kuwait
|
1273
1438
|
short: Kuwait
|
1274
1439
|
emoji: "\U0001F1F0\U0001F1FC"
|
1440
|
+
shortcode: ":flag-kw:"
|
1275
1441
|
KY:
|
1276
1442
|
aliases:
|
1277
1443
|
- Caymans
|
@@ -1284,6 +1450,7 @@ KY:
|
|
1284
1450
|
official: Cayman Islands
|
1285
1451
|
short: Cayman Islands
|
1286
1452
|
emoji: "\U0001F1F0\U0001F1FE"
|
1453
|
+
shortcode: ":flag-ky:"
|
1287
1454
|
KZ:
|
1288
1455
|
alpha2: KZ
|
1289
1456
|
alpha3: KAZ
|
@@ -1294,6 +1461,7 @@ KZ:
|
|
1294
1461
|
official: Republic of Kazakhstan
|
1295
1462
|
short: Kazakhstan
|
1296
1463
|
emoji: "\U0001F1F0\U0001F1FF"
|
1464
|
+
shortcode: ":flag-kz:"
|
1297
1465
|
LA:
|
1298
1466
|
alpha2: LA
|
1299
1467
|
alpha3: LAO
|
@@ -1305,6 +1473,7 @@ LA:
|
|
1305
1473
|
short: Lao People's Democratic Republic
|
1306
1474
|
simple: Laos
|
1307
1475
|
emoji: "\U0001F1F1\U0001F1E6"
|
1476
|
+
shortcode: ":flag-la:"
|
1308
1477
|
LB:
|
1309
1478
|
alpha2: LB
|
1310
1479
|
alpha3: LBN
|
@@ -1315,6 +1484,7 @@ LB:
|
|
1315
1484
|
official: Lebanese Republic
|
1316
1485
|
short: Lebanon
|
1317
1486
|
emoji: "\U0001F1F1\U0001F1E7"
|
1487
|
+
shortcode: ":flag-lb:"
|
1318
1488
|
LC:
|
1319
1489
|
aliases:
|
1320
1490
|
- St. Lucia
|
@@ -1327,6 +1497,7 @@ LC:
|
|
1327
1497
|
official: Saint Lucia
|
1328
1498
|
short: Saint Lucia
|
1329
1499
|
emoji: "\U0001F1F1\U0001F1E8"
|
1500
|
+
shortcode: ":flag-lc:"
|
1330
1501
|
LI:
|
1331
1502
|
alpha2: LI
|
1332
1503
|
alpha3: LIE
|
@@ -1337,6 +1508,7 @@ LI:
|
|
1337
1508
|
official: Principality of Liechtenstein
|
1338
1509
|
short: Liechtenstein
|
1339
1510
|
emoji: "\U0001F1F1\U0001F1EE"
|
1511
|
+
shortcode: ":flag-li:"
|
1340
1512
|
LK:
|
1341
1513
|
alpha2: LK
|
1342
1514
|
alpha3: LKA
|
@@ -1347,6 +1519,7 @@ LK:
|
|
1347
1519
|
official: Democratic Socialist Republic of Sri Lanka
|
1348
1520
|
short: Sri Lanka
|
1349
1521
|
emoji: "\U0001F1F1\U0001F1F0"
|
1522
|
+
shortcode: ":flag-lk:"
|
1350
1523
|
LR:
|
1351
1524
|
alpha2: LR
|
1352
1525
|
alpha3: LBR
|
@@ -1357,6 +1530,7 @@ LR:
|
|
1357
1530
|
official: Republic of Liberia
|
1358
1531
|
short: Liberia
|
1359
1532
|
emoji: "\U0001F1F1\U0001F1F7"
|
1533
|
+
shortcode: ":flag-lr:"
|
1360
1534
|
LS:
|
1361
1535
|
alpha2: LS
|
1362
1536
|
alpha3: LSO
|
@@ -1367,6 +1541,7 @@ LS:
|
|
1367
1541
|
official: Kingdom of Lesoth
|
1368
1542
|
short: Lesotho
|
1369
1543
|
emoji: "\U0001F1F1\U0001F1F8"
|
1544
|
+
shortcode: ":flag-ls:"
|
1370
1545
|
LT:
|
1371
1546
|
alpha2: LT
|
1372
1547
|
alpha3: LTU
|
@@ -1377,6 +1552,7 @@ LT:
|
|
1377
1552
|
official: Republic of Lithuania
|
1378
1553
|
short: Lithuania
|
1379
1554
|
emoji: "\U0001F1F1\U0001F1F9"
|
1555
|
+
shortcode: ":flag-lt:"
|
1380
1556
|
LU:
|
1381
1557
|
alpha2: LU
|
1382
1558
|
alpha3: LUX
|
@@ -1387,6 +1563,7 @@ LU:
|
|
1387
1563
|
official: Grand Duchy of Luxembourg
|
1388
1564
|
short: Luxembourg
|
1389
1565
|
emoji: "\U0001F1F1\U0001F1FA"
|
1566
|
+
shortcode: ":flag-lu:"
|
1390
1567
|
LV:
|
1391
1568
|
alpha2: LV
|
1392
1569
|
alpha3: LVA
|
@@ -1397,6 +1574,7 @@ LV:
|
|
1397
1574
|
official: Republic of Latvia
|
1398
1575
|
short: Latvia
|
1399
1576
|
emoji: "\U0001F1F1\U0001F1FB"
|
1577
|
+
shortcode: ":flag-lv:"
|
1400
1578
|
LY:
|
1401
1579
|
alpha2: LY
|
1402
1580
|
alpha3: LBY
|
@@ -1407,6 +1585,7 @@ LY:
|
|
1407
1585
|
official: State of Libya
|
1408
1586
|
short: Libya
|
1409
1587
|
emoji: "\U0001F1F1\U0001F1FE"
|
1588
|
+
shortcode: ":flag-ly:"
|
1410
1589
|
MA:
|
1411
1590
|
alpha2: MA
|
1412
1591
|
alpha3: MAR
|
@@ -1417,6 +1596,7 @@ MA:
|
|
1417
1596
|
official: Kingdom of Morocco
|
1418
1597
|
short: Morocco
|
1419
1598
|
emoji: "\U0001F1F2\U0001F1E6"
|
1599
|
+
shortcode: ":flag-ma:"
|
1420
1600
|
MC:
|
1421
1601
|
alpha2: MC
|
1422
1602
|
alpha3: MCO
|
@@ -1427,7 +1607,10 @@ MC:
|
|
1427
1607
|
official: Principality of Monaco
|
1428
1608
|
short: Monaco
|
1429
1609
|
emoji: "\U0001F1F2\U0001F1E8"
|
1610
|
+
shortcode: ":flag-mc:"
|
1430
1611
|
MD:
|
1612
|
+
aliases:
|
1613
|
+
- Moldova, Republic of
|
1431
1614
|
alpha2: MD
|
1432
1615
|
alpha3: MDA
|
1433
1616
|
fifa: MDA
|
@@ -1435,8 +1618,9 @@ MD:
|
|
1435
1618
|
iso_name: Moldova, Republic of
|
1436
1619
|
numeric: "498"
|
1437
1620
|
official: Republic of Moldova
|
1438
|
-
short: Moldova
|
1621
|
+
short: Moldova
|
1439
1622
|
emoji: "\U0001F1F2\U0001F1E9"
|
1623
|
+
shortcode: ":flag-md:"
|
1440
1624
|
ME:
|
1441
1625
|
alpha2: ME
|
1442
1626
|
alpha3: MNE
|
@@ -1447,18 +1631,21 @@ ME:
|
|
1447
1631
|
official: Montenegro
|
1448
1632
|
short: Montenegro
|
1449
1633
|
emoji: "\U0001F1F2\U0001F1EA"
|
1634
|
+
shortcode: ":flag-me:"
|
1450
1635
|
MF:
|
1451
1636
|
aliases:
|
1452
1637
|
- St. Martin
|
1638
|
+
- Saint-Martin
|
1453
1639
|
alpha2: MF
|
1454
1640
|
alpha3: MAF
|
1455
1641
|
fifa:
|
1456
1642
|
ioc:
|
1457
|
-
iso_name: Saint Martin
|
1643
|
+
iso_name: Saint Martin (French part)
|
1458
1644
|
numeric: "663"
|
1459
|
-
official: Saint Martin
|
1645
|
+
official: Collectivity of Saint Martin
|
1460
1646
|
short: Saint Martin
|
1461
1647
|
emoji: "\U0001F1F2\U0001F1EB"
|
1648
|
+
shortcode: ":flag-mf:"
|
1462
1649
|
MG:
|
1463
1650
|
alpha2: MG
|
1464
1651
|
alpha3: MDG
|
@@ -1469,6 +1656,7 @@ MG:
|
|
1469
1656
|
official: Republic of Madagascar
|
1470
1657
|
short: Madagascar
|
1471
1658
|
emoji: "\U0001F1F2\U0001F1EC"
|
1659
|
+
shortcode: ":flag-mg:"
|
1472
1660
|
MH:
|
1473
1661
|
alpha2: MH
|
1474
1662
|
alpha3: MHL
|
@@ -1479,16 +1667,21 @@ MH:
|
|
1479
1667
|
official: Republic of the Marshall Islands
|
1480
1668
|
short: Marshall Islands
|
1481
1669
|
emoji: "\U0001F1F2\U0001F1ED"
|
1670
|
+
shortcode: ":flag-mh:"
|
1482
1671
|
MK:
|
1672
|
+
aliases:
|
1673
|
+
- Republic of Macedonia
|
1674
|
+
- Macedonia, the Former Yugoslav Republic Of
|
1483
1675
|
alpha2: MK
|
1484
1676
|
alpha3: MKD
|
1485
1677
|
fifa: MKD
|
1486
1678
|
ioc: MKD
|
1487
|
-
iso_name: Macedonia
|
1679
|
+
iso_name: North Macedonia
|
1488
1680
|
numeric: "807"
|
1489
|
-
official: Republic of Macedonia
|
1681
|
+
official: Republic of North Macedonia
|
1490
1682
|
short: Macedonia
|
1491
1683
|
emoji: "\U0001F1F2\U0001F1F0"
|
1684
|
+
shortcode: ":flag-mk:"
|
1492
1685
|
ML:
|
1493
1686
|
alpha2: ML
|
1494
1687
|
alpha3: MLI
|
@@ -1499,6 +1692,7 @@ ML:
|
|
1499
1692
|
official: Republic of Mali
|
1500
1693
|
short: Mali
|
1501
1694
|
emoji: "\U0001F1F2\U0001F1F1"
|
1695
|
+
shortcode: ":flag-ml:"
|
1502
1696
|
MM:
|
1503
1697
|
aliases:
|
1504
1698
|
- Burma
|
@@ -1511,6 +1705,7 @@ MM:
|
|
1511
1705
|
official: Republic of the Union of Myanmar
|
1512
1706
|
short: Myanmar
|
1513
1707
|
emoji: "\U0001F1F2\U0001F1F2"
|
1708
|
+
shortcode: ":flag-mm:"
|
1514
1709
|
MN:
|
1515
1710
|
alpha2: MN
|
1516
1711
|
alpha3: MNG
|
@@ -1521,6 +1716,7 @@ MN:
|
|
1521
1716
|
official: Mongolia
|
1522
1717
|
short: Mongolia
|
1523
1718
|
emoji: "\U0001F1F2\U0001F1F3"
|
1719
|
+
shortcode: ":flag-mn:"
|
1524
1720
|
MO:
|
1525
1721
|
aliases:
|
1526
1722
|
- Macao
|
@@ -1534,6 +1730,7 @@ MO:
|
|
1534
1730
|
official: Macao Special Administrative Region of the People's Republic of China
|
1535
1731
|
short: Macao
|
1536
1732
|
emoji: "\U0001F1F2\U0001F1F4"
|
1733
|
+
shortcode: ":flag-mo:"
|
1537
1734
|
MP:
|
1538
1735
|
aliases:
|
1539
1736
|
- CNMI
|
@@ -1546,6 +1743,7 @@ MP:
|
|
1546
1743
|
official: Commonwealth of the Northern Mariana Islands
|
1547
1744
|
short: Northern Mariana Islands
|
1548
1745
|
emoji: "\U0001F1F2\U0001F1F5"
|
1746
|
+
shortcode: ":flag-mp:"
|
1549
1747
|
MQ:
|
1550
1748
|
alpha2: MQ
|
1551
1749
|
alpha3: MTQ
|
@@ -1556,6 +1754,7 @@ MQ:
|
|
1556
1754
|
official: Martinique
|
1557
1755
|
short: Martinique
|
1558
1756
|
emoji: "\U0001F1F2\U0001F1F6"
|
1757
|
+
shortcode: ":flag-mq:"
|
1559
1758
|
MR:
|
1560
1759
|
alpha2: MR
|
1561
1760
|
alpha3: MRT
|
@@ -1566,6 +1765,7 @@ MR:
|
|
1566
1765
|
official: Islamic Republic of Mauritania
|
1567
1766
|
short: Mauritania
|
1568
1767
|
emoji: "\U0001F1F2\U0001F1F7"
|
1768
|
+
shortcode: ":flag-mr:"
|
1569
1769
|
MS:
|
1570
1770
|
alpha2: MS
|
1571
1771
|
alpha3: MSR
|
@@ -1576,6 +1776,7 @@ MS:
|
|
1576
1776
|
official: Montserrat
|
1577
1777
|
short: Montserrat
|
1578
1778
|
emoji: "\U0001F1F2\U0001F1F8"
|
1779
|
+
shortcode: ":flag-ms:"
|
1579
1780
|
MT:
|
1580
1781
|
alpha2: MT
|
1581
1782
|
alpha3: MLT
|
@@ -1586,6 +1787,7 @@ MT:
|
|
1586
1787
|
official: Republic of Malta
|
1587
1788
|
short: Malta
|
1588
1789
|
emoji: "\U0001F1F2\U0001F1F9"
|
1790
|
+
shortcode: ":flag-mt:"
|
1589
1791
|
MU:
|
1590
1792
|
alpha2: MU
|
1591
1793
|
alpha3: MUS
|
@@ -1596,6 +1798,7 @@ MU:
|
|
1596
1798
|
official: Republic of Mauritius
|
1597
1799
|
short: Mauritius
|
1598
1800
|
emoji: "\U0001F1F2\U0001F1FA"
|
1801
|
+
shortcode: ":flag-mu:"
|
1599
1802
|
MV:
|
1600
1803
|
aliases:
|
1601
1804
|
- Maldive Islands
|
@@ -1608,6 +1811,7 @@ MV:
|
|
1608
1811
|
official: Republic of the Maldives
|
1609
1812
|
short: Maldives
|
1610
1813
|
emoji: "\U0001F1F2\U0001F1FB"
|
1814
|
+
shortcode: ":flag-mv:"
|
1611
1815
|
MW:
|
1612
1816
|
alpha2: MW
|
1613
1817
|
alpha3: MWI
|
@@ -1618,6 +1822,7 @@ MW:
|
|
1618
1822
|
official: Republic of Malawi
|
1619
1823
|
short: Malawi
|
1620
1824
|
emoji: "\U0001F1F2\U0001F1FC"
|
1825
|
+
shortcode: ":flag-mw:"
|
1621
1826
|
MX:
|
1622
1827
|
alpha2: MX
|
1623
1828
|
alpha3: MEX
|
@@ -1628,6 +1833,7 @@ MX:
|
|
1628
1833
|
official: United Mexican States
|
1629
1834
|
short: Mexico
|
1630
1835
|
emoji: "\U0001F1F2\U0001F1FD"
|
1836
|
+
shortcode: ":flag-mx:"
|
1631
1837
|
MY:
|
1632
1838
|
alpha2: MY
|
1633
1839
|
alpha3: MYS
|
@@ -1638,6 +1844,7 @@ MY:
|
|
1638
1844
|
official: Malaysia
|
1639
1845
|
short: Malaysia
|
1640
1846
|
emoji: "\U0001F1F2\U0001F1FE"
|
1847
|
+
shortcode: ":flag-my:"
|
1641
1848
|
MZ:
|
1642
1849
|
alpha2: MZ
|
1643
1850
|
alpha3: MOZ
|
@@ -1648,6 +1855,7 @@ MZ:
|
|
1648
1855
|
official: Mozambique
|
1649
1856
|
short: Mozambique
|
1650
1857
|
emoji: "\U0001F1F2\U0001F1FF"
|
1858
|
+
shortcode: ":flag-mz:"
|
1651
1859
|
NA:
|
1652
1860
|
alpha2: NA
|
1653
1861
|
alpha3: NAM
|
@@ -1658,6 +1866,7 @@ NA:
|
|
1658
1866
|
official: Namibia
|
1659
1867
|
short: Namibia
|
1660
1868
|
emoji: "\U0001F1F3\U0001F1E6"
|
1869
|
+
shortcode: ":flag-na:"
|
1661
1870
|
NC:
|
1662
1871
|
alpha2: NC
|
1663
1872
|
alpha3: NCL
|
@@ -1668,6 +1877,7 @@ NC:
|
|
1668
1877
|
official: New Caledonia
|
1669
1878
|
short: New Caledonia
|
1670
1879
|
emoji: "\U0001F1F3\U0001F1E8"
|
1880
|
+
shortcode: ":flag-nc:"
|
1671
1881
|
NE:
|
1672
1882
|
alpha2: NE
|
1673
1883
|
alpha3: NER
|
@@ -1678,6 +1888,7 @@ NE:
|
|
1678
1888
|
official: Republic of Niger
|
1679
1889
|
short: Niger
|
1680
1890
|
emoji: "\U0001F1F3\U0001F1EA"
|
1891
|
+
shortcode: ":flag-ne:"
|
1681
1892
|
NF:
|
1682
1893
|
alpha2: NF
|
1683
1894
|
alpha3: NFK
|
@@ -1688,6 +1899,7 @@ NF:
|
|
1688
1899
|
official: Territory of Norfolk Island
|
1689
1900
|
short: Norfolk Island
|
1690
1901
|
emoji: "\U0001F1F3\U0001F1EB"
|
1902
|
+
shortcode: ":flag-nf:"
|
1691
1903
|
NG:
|
1692
1904
|
alpha2: NG
|
1693
1905
|
alpha3: NGA
|
@@ -1698,6 +1910,7 @@ NG:
|
|
1698
1910
|
official: Federal Republic of Nigeria
|
1699
1911
|
short: Nigeria
|
1700
1912
|
emoji: "\U0001F1F3\U0001F1EC"
|
1913
|
+
shortcode: ":flag-ng:"
|
1701
1914
|
NI:
|
1702
1915
|
alpha2: NI
|
1703
1916
|
alpha3: NIC
|
@@ -1708,7 +1921,10 @@ NI:
|
|
1708
1921
|
official: Republic of Nicaragua
|
1709
1922
|
short: Nicaragua
|
1710
1923
|
emoji: "\U0001F1F3\U0001F1EE"
|
1924
|
+
shortcode: ":flag-ni:"
|
1711
1925
|
NL:
|
1926
|
+
aliases:
|
1927
|
+
- Holland
|
1712
1928
|
alpha2: NL
|
1713
1929
|
alpha3: NLD
|
1714
1930
|
fifa: NED
|
@@ -1718,6 +1934,7 @@ NL:
|
|
1718
1934
|
official: Netherlands
|
1719
1935
|
short: Netherlands
|
1720
1936
|
emoji: "\U0001F1F3\U0001F1F1"
|
1937
|
+
shortcode: ":flag-nl:"
|
1721
1938
|
'NO':
|
1722
1939
|
alpha2: 'NO'
|
1723
1940
|
alpha3: NOR
|
@@ -1728,6 +1945,7 @@ NL:
|
|
1728
1945
|
official: Kingdom of Norway
|
1729
1946
|
short: Norway
|
1730
1947
|
emoji: "\U0001F1F3\U0001F1F4"
|
1948
|
+
shortcode: ":flag-no:"
|
1731
1949
|
NP:
|
1732
1950
|
alpha2: NP
|
1733
1951
|
alpha3: NPL
|
@@ -1738,6 +1956,7 @@ NP:
|
|
1738
1956
|
official: Federal Democratic Republic of Nepal
|
1739
1957
|
short: Nepal
|
1740
1958
|
emoji: "\U0001F1F3\U0001F1F5"
|
1959
|
+
shortcode: ":flag-np:"
|
1741
1960
|
NR:
|
1742
1961
|
alpha2: NR
|
1743
1962
|
alpha3: NRU
|
@@ -1748,6 +1967,7 @@ NR:
|
|
1748
1967
|
official: Republic of Nauru
|
1749
1968
|
short: Nauru
|
1750
1969
|
emoji: "\U0001F1F3\U0001F1F7"
|
1970
|
+
shortcode: ":flag-nr:"
|
1751
1971
|
NU:
|
1752
1972
|
alpha2: NU
|
1753
1973
|
alpha3: NIU
|
@@ -1758,6 +1978,7 @@ NU:
|
|
1758
1978
|
official: Niue
|
1759
1979
|
short: Niue
|
1760
1980
|
emoji: "\U0001F1F3\U0001F1FA"
|
1981
|
+
shortcode: ":flag-nu:"
|
1761
1982
|
NZ:
|
1762
1983
|
alpha2: NZ
|
1763
1984
|
alpha3: NZL
|
@@ -1768,6 +1989,7 @@ NZ:
|
|
1768
1989
|
official: New Zealand
|
1769
1990
|
short: New Zealand
|
1770
1991
|
emoji: "\U0001F1F3\U0001F1FF"
|
1992
|
+
shortcode: ":flag-nz:"
|
1771
1993
|
OM:
|
1772
1994
|
alpha2: OM
|
1773
1995
|
alpha3: OMN
|
@@ -1778,6 +2000,7 @@ OM:
|
|
1778
2000
|
official: Sultanate of Oman
|
1779
2001
|
short: Oman
|
1780
2002
|
emoji: "\U0001F1F4\U0001F1F2"
|
2003
|
+
shortcode: ":flag-om:"
|
1781
2004
|
PA:
|
1782
2005
|
alpha2: PA
|
1783
2006
|
alpha3: PAN
|
@@ -1788,6 +2011,7 @@ PA:
|
|
1788
2011
|
official: Republic of Panama
|
1789
2012
|
short: Panama
|
1790
2013
|
emoji: "\U0001F1F5\U0001F1E6"
|
2014
|
+
shortcode: ":flag-pa:"
|
1791
2015
|
PE:
|
1792
2016
|
alpha2: PE
|
1793
2017
|
alpha3: PER
|
@@ -1798,6 +2022,7 @@ PE:
|
|
1798
2022
|
official: Republic of Peru
|
1799
2023
|
short: Peru
|
1800
2024
|
emoji: "\U0001F1F5\U0001F1EA"
|
2025
|
+
shortcode: ":flag-pe:"
|
1801
2026
|
PF:
|
1802
2027
|
alpha2: PF
|
1803
2028
|
alpha3: PYF
|
@@ -1808,6 +2033,7 @@ PF:
|
|
1808
2033
|
official: French Polynesia
|
1809
2034
|
short: French Polynesia
|
1810
2035
|
emoji: "\U0001F1F5\U0001F1EB"
|
2036
|
+
shortcode: ":flag-pf:"
|
1811
2037
|
PG:
|
1812
2038
|
alpha2: PG
|
1813
2039
|
alpha3: PNG
|
@@ -1818,6 +2044,7 @@ PG:
|
|
1818
2044
|
official: Independent State of Papua New Guinea
|
1819
2045
|
short: Papua New Guinea
|
1820
2046
|
emoji: "\U0001F1F5\U0001F1EC"
|
2047
|
+
shortcode: ":flag-pg:"
|
1821
2048
|
PH:
|
1822
2049
|
alpha2: PH
|
1823
2050
|
alpha3: PHL
|
@@ -1828,6 +2055,7 @@ PH:
|
|
1828
2055
|
official: Republic of the Philippines
|
1829
2056
|
short: Philippines
|
1830
2057
|
emoji: "\U0001F1F5\U0001F1ED"
|
2058
|
+
shortcode: ":flag-ph:"
|
1831
2059
|
PK:
|
1832
2060
|
alpha2: PK
|
1833
2061
|
alpha3: PAK
|
@@ -1838,6 +2066,7 @@ PK:
|
|
1838
2066
|
official: Islamic Republic of Pakistan
|
1839
2067
|
short: Pakistan
|
1840
2068
|
emoji: "\U0001F1F5\U0001F1F0"
|
2069
|
+
shortcode: ":flag-pk:"
|
1841
2070
|
PL:
|
1842
2071
|
alpha2: PL
|
1843
2072
|
alpha3: POL
|
@@ -1848,6 +2077,7 @@ PL:
|
|
1848
2077
|
official: Republic of Poland
|
1849
2078
|
short: Poland
|
1850
2079
|
emoji: "\U0001F1F5\U0001F1F1"
|
2080
|
+
shortcode: ":flag-pl:"
|
1851
2081
|
PM:
|
1852
2082
|
alpha2: PM
|
1853
2083
|
alpha3: SPM
|
@@ -1858,6 +2088,7 @@ PM:
|
|
1858
2088
|
official: Saint Pierre And Miquelon
|
1859
2089
|
short: Saint Pierre And Miquelon
|
1860
2090
|
emoji: "\U0001F1F5\U0001F1F2"
|
2091
|
+
shortcode: ":flag-pm:"
|
1861
2092
|
PN:
|
1862
2093
|
alpha2: PN
|
1863
2094
|
alpha3: PCN
|
@@ -1868,6 +2099,7 @@ PN:
|
|
1868
2099
|
official: Pitcairn, Henderson, Ducie and Oeno Islands
|
1869
2100
|
short: Pitcairn
|
1870
2101
|
emoji: "\U0001F1F5\U0001F1F3"
|
2102
|
+
shortcode: ":flag-pn:"
|
1871
2103
|
PR:
|
1872
2104
|
alpha2: PR
|
1873
2105
|
alpha3: PRI
|
@@ -1878,6 +2110,7 @@ PR:
|
|
1878
2110
|
official: Commonwealth of Puerto Rico
|
1879
2111
|
short: Puerto Rico
|
1880
2112
|
emoji: "\U0001F1F5\U0001F1F7"
|
2113
|
+
shortcode: ":flag-pr:"
|
1881
2114
|
PS:
|
1882
2115
|
aliases:
|
1883
2116
|
- Palestinian Territories
|
@@ -1891,6 +2124,7 @@ PS:
|
|
1891
2124
|
official: State of Palestine
|
1892
2125
|
short: Palestine
|
1893
2126
|
emoji: "\U0001F1F5\U0001F1F8"
|
2127
|
+
shortcode: ":flag-ps:"
|
1894
2128
|
PT:
|
1895
2129
|
alpha2: PT
|
1896
2130
|
alpha3: PRT
|
@@ -1901,6 +2135,7 @@ PT:
|
|
1901
2135
|
official: Portuguese Republic
|
1902
2136
|
short: Portugal
|
1903
2137
|
emoji: "\U0001F1F5\U0001F1F9"
|
2138
|
+
shortcode: ":flag-pt:"
|
1904
2139
|
PW:
|
1905
2140
|
aliases:
|
1906
2141
|
- Belau
|
@@ -1914,6 +2149,7 @@ PW:
|
|
1914
2149
|
official: Republic of Palau
|
1915
2150
|
short: Palau
|
1916
2151
|
emoji: "\U0001F1F5\U0001F1FC"
|
2152
|
+
shortcode: ":flag-pw:"
|
1917
2153
|
PY:
|
1918
2154
|
alpha2: PY
|
1919
2155
|
alpha3: PRY
|
@@ -1924,6 +2160,7 @@ PY:
|
|
1924
2160
|
official: Republic of Paraguay
|
1925
2161
|
short: Paraguay
|
1926
2162
|
emoji: "\U0001F1F5\U0001F1FE"
|
2163
|
+
shortcode: ":flag-py:"
|
1927
2164
|
QA:
|
1928
2165
|
alpha2: QA
|
1929
2166
|
alpha3: QAT
|
@@ -1934,7 +2171,10 @@ QA:
|
|
1934
2171
|
official: State of Qatar
|
1935
2172
|
short: Qatar
|
1936
2173
|
emoji: "\U0001F1F6\U0001F1E6"
|
2174
|
+
shortcode: ":flag-qa:"
|
1937
2175
|
RE:
|
2176
|
+
aliases:
|
2177
|
+
- Reunion
|
1938
2178
|
alpha2: RE
|
1939
2179
|
alpha3: REU
|
1940
2180
|
fifa:
|
@@ -1944,6 +2184,7 @@ RE:
|
|
1944
2184
|
official: RΓ©union Island
|
1945
2185
|
short: RΓ©union
|
1946
2186
|
emoji: "\U0001F1F7\U0001F1EA"
|
2187
|
+
shortcode: ":flag-re:"
|
1947
2188
|
RO:
|
1948
2189
|
alpha2: RO
|
1949
2190
|
alpha3: ROU
|
@@ -1954,6 +2195,7 @@ RO:
|
|
1954
2195
|
official: Romania
|
1955
2196
|
short: Romania
|
1956
2197
|
emoji: "\U0001F1F7\U0001F1F4"
|
2198
|
+
shortcode: ":flag-ro:"
|
1957
2199
|
RS:
|
1958
2200
|
alpha2: RS
|
1959
2201
|
alpha3: SRB
|
@@ -1964,6 +2206,7 @@ RS:
|
|
1964
2206
|
official: Republic of Serbia
|
1965
2207
|
short: Serbia
|
1966
2208
|
emoji: "\U0001F1F7\U0001F1F8"
|
2209
|
+
shortcode: ":flag-rs:"
|
1967
2210
|
RU:
|
1968
2211
|
alpha2: RU
|
1969
2212
|
alpha3: RUS
|
@@ -1974,6 +2217,7 @@ RU:
|
|
1974
2217
|
official: Russian Federation
|
1975
2218
|
short: Russia
|
1976
2219
|
emoji: "\U0001F1F7\U0001F1FA"
|
2220
|
+
shortcode: ":flag-ru:"
|
1977
2221
|
RW:
|
1978
2222
|
alpha2: RW
|
1979
2223
|
alpha3: RWA
|
@@ -1984,6 +2228,7 @@ RW:
|
|
1984
2228
|
official: Republic of Rwanda
|
1985
2229
|
short: Rwanda
|
1986
2230
|
emoji: "\U0001F1F7\U0001F1FC"
|
2231
|
+
shortcode: ":flag-rw:"
|
1987
2232
|
SA:
|
1988
2233
|
alpha2: SA
|
1989
2234
|
alpha3: SAU
|
@@ -1994,6 +2239,7 @@ SA:
|
|
1994
2239
|
official: Kingdom of Saudi Arabia
|
1995
2240
|
short: Saudi Arabia
|
1996
2241
|
emoji: "\U0001F1F8\U0001F1E6"
|
2242
|
+
shortcode: ":flag-sa:"
|
1997
2243
|
SB:
|
1998
2244
|
alpha2: SB
|
1999
2245
|
alpha3: SLB
|
@@ -2004,6 +2250,7 @@ SB:
|
|
2004
2250
|
official: Solomon Islands
|
2005
2251
|
short: Solomon Islands
|
2006
2252
|
emoji: "\U0001F1F8\U0001F1E7"
|
2253
|
+
shortcode: ":flag-sb:"
|
2007
2254
|
SC:
|
2008
2255
|
alpha2: SC
|
2009
2256
|
alpha3: SYC
|
@@ -2014,7 +2261,14 @@ SC:
|
|
2014
2261
|
official: Republic of Seychelles
|
2015
2262
|
short: Seychelles
|
2016
2263
|
emoji: "\U0001F1F8\U0001F1E8"
|
2264
|
+
shortcode: ":flag-sc:"
|
2017
2265
|
SD:
|
2266
|
+
aliases:
|
2267
|
+
- The Sudan
|
2268
|
+
- The Sudan, Republic of
|
2269
|
+
- Republic of Sudan
|
2270
|
+
- Sudan, Republic of
|
2271
|
+
- Sudan, Republic of the
|
2018
2272
|
alpha2: SD
|
2019
2273
|
alpha3: SDN
|
2020
2274
|
fifa: SDN
|
@@ -2024,6 +2278,7 @@ SD:
|
|
2024
2278
|
official: Republic of the Sudan
|
2025
2279
|
short: Sudan
|
2026
2280
|
emoji: "\U0001F1F8\U0001F1E9"
|
2281
|
+
shortcode: ":flag-sd:"
|
2027
2282
|
SE:
|
2028
2283
|
alpha2: SE
|
2029
2284
|
alpha3: SWE
|
@@ -2034,6 +2289,7 @@ SE:
|
|
2034
2289
|
official: Kingdom of Sweden
|
2035
2290
|
short: Sweden
|
2036
2291
|
emoji: "\U0001F1F8\U0001F1EA"
|
2292
|
+
shortcode: ":flag-se:"
|
2037
2293
|
SG:
|
2038
2294
|
alpha2: SG
|
2039
2295
|
alpha3: SGP
|
@@ -2044,6 +2300,7 @@ SG:
|
|
2044
2300
|
official: Republic of Singapore
|
2045
2301
|
short: Singapore
|
2046
2302
|
emoji: "\U0001F1F8\U0001F1EC"
|
2303
|
+
shortcode: ":flag-sg:"
|
2047
2304
|
SH:
|
2048
2305
|
alpha2: SH
|
2049
2306
|
alpha3: SHN
|
@@ -2054,6 +2311,7 @@ SH:
|
|
2054
2311
|
official: Saint Helena
|
2055
2312
|
short: Saint Helena
|
2056
2313
|
emoji: "\U0001F1F8\U0001F1ED"
|
2314
|
+
shortcode: ":flag-sh:"
|
2057
2315
|
SI:
|
2058
2316
|
alpha2: SI
|
2059
2317
|
alpha3: SVN
|
@@ -2064,6 +2322,7 @@ SI:
|
|
2064
2322
|
official: Republic of Slovenia
|
2065
2323
|
short: Slovenia
|
2066
2324
|
emoji: "\U0001F1F8\U0001F1EE"
|
2325
|
+
shortcode: ":flag-si:"
|
2067
2326
|
SJ:
|
2068
2327
|
alpha2: SJ
|
2069
2328
|
alpha3: SJM
|
@@ -2074,6 +2333,7 @@ SJ:
|
|
2074
2333
|
official: Svalbard And Jan Mayen
|
2075
2334
|
short: Svalbard And Jan Mayen
|
2076
2335
|
emoji: "\U0001F1F8\U0001F1EF"
|
2336
|
+
shortcode: ":flag-sj:"
|
2077
2337
|
SK:
|
2078
2338
|
alpha2: SK
|
2079
2339
|
alpha3: SVK
|
@@ -2084,6 +2344,7 @@ SK:
|
|
2084
2344
|
official: Slovak Republic
|
2085
2345
|
short: Slovakia
|
2086
2346
|
emoji: "\U0001F1F8\U0001F1F0"
|
2347
|
+
shortcode: ":flag-sk:"
|
2087
2348
|
SL:
|
2088
2349
|
alpha2: SL
|
2089
2350
|
alpha3: SLE
|
@@ -2094,6 +2355,7 @@ SL:
|
|
2094
2355
|
official: Republic of Sierra Leone
|
2095
2356
|
short: Sierra Leone
|
2096
2357
|
emoji: "\U0001F1F8\U0001F1F1"
|
2358
|
+
shortcode: ":flag-sl:"
|
2097
2359
|
SM:
|
2098
2360
|
aliases:
|
2099
2361
|
- Most Serene Republic of San Marino
|
@@ -2106,6 +2368,7 @@ SM:
|
|
2106
2368
|
official: Republic of San Marino
|
2107
2369
|
short: San Marino
|
2108
2370
|
emoji: "\U0001F1F8\U0001F1F2"
|
2371
|
+
shortcode: ":flag-sm:"
|
2109
2372
|
SN:
|
2110
2373
|
alpha2: SN
|
2111
2374
|
alpha3: SEN
|
@@ -2116,6 +2379,7 @@ SN:
|
|
2116
2379
|
official: Republic of Senegal
|
2117
2380
|
short: Senegal
|
2118
2381
|
emoji: "\U0001F1F8\U0001F1F3"
|
2382
|
+
shortcode: ":flag-sn:"
|
2119
2383
|
SO:
|
2120
2384
|
alpha2: SO
|
2121
2385
|
alpha3: SOM
|
@@ -2126,6 +2390,7 @@ SO:
|
|
2126
2390
|
official: Federal Republic of Somalia
|
2127
2391
|
short: Somalia
|
2128
2392
|
emoji: "\U0001F1F8\U0001F1F4"
|
2393
|
+
shortcode: ":flag-so:"
|
2129
2394
|
SR:
|
2130
2395
|
aliases:
|
2131
2396
|
- Surinam
|
@@ -2138,9 +2403,13 @@ SR:
|
|
2138
2403
|
official: Republic of Suriname
|
2139
2404
|
short: Suriname
|
2140
2405
|
emoji: "\U0001F1F8\U0001F1F7"
|
2406
|
+
shortcode: ":flag-sr:"
|
2141
2407
|
SS:
|
2142
2408
|
aliases:
|
2409
|
+
- South Sudan, Republic of
|
2143
2410
|
- S. Sudan
|
2411
|
+
- Republic of S. Sudan
|
2412
|
+
- S. Sudan, Republic of
|
2144
2413
|
alpha2: SS
|
2145
2414
|
alpha3: SSD
|
2146
2415
|
fifa:
|
@@ -2150,10 +2419,16 @@ SS:
|
|
2150
2419
|
official: Republic of South Sudan
|
2151
2420
|
short: South Sudan
|
2152
2421
|
emoji: "\U0001F1F8\U0001F1F8"
|
2422
|
+
shortcode: ":flag-ss:"
|
2153
2423
|
ST:
|
2154
2424
|
aliases:
|
2155
2425
|
- Democratic Republic of Sao Tome and Principe
|
2156
2426
|
- SΓ£o TomΓ© and PrΓncipe
|
2427
|
+
- Sao TomΓ© and PrΓncipe
|
2428
|
+
- Sao Tome and PrΓncipe
|
2429
|
+
- SΓ£o TomΓ© and Principe
|
2430
|
+
- SΓ£o Tome and Principe
|
2431
|
+
- SΓ£o Tome and PrΓncipe
|
2157
2432
|
alpha2: ST
|
2158
2433
|
alpha3: STP
|
2159
2434
|
fifa: STP
|
@@ -2163,6 +2438,7 @@ ST:
|
|
2163
2438
|
official: Democratic Republic of SΓ£o TomΓ© and PrΓncipe
|
2164
2439
|
short: Sao Tome and Principe
|
2165
2440
|
emoji: "\U0001F1F8\U0001F1F9"
|
2441
|
+
shortcode: ":flag-st:"
|
2166
2442
|
SV:
|
2167
2443
|
alpha2: SV
|
2168
2444
|
alpha3: SLV
|
@@ -2173,6 +2449,18 @@ SV:
|
|
2173
2449
|
official: Republic of El Salvador
|
2174
2450
|
short: El Salvador
|
2175
2451
|
emoji: "\U0001F1F8\U0001F1FB"
|
2452
|
+
shortcode: ":flag-sv:"
|
2453
|
+
SX:
|
2454
|
+
alpha2: SX
|
2455
|
+
alpha3: SXM
|
2456
|
+
fifa:
|
2457
|
+
ioc:
|
2458
|
+
iso_name: Sint Maarten (Dutch part)
|
2459
|
+
numeric: "534"
|
2460
|
+
official: Sint Maarten
|
2461
|
+
short: Sint Maarten
|
2462
|
+
emoji: "\U0001F1F8\U0001F1FD"
|
2463
|
+
shortcode: ":flag-sx:"
|
2176
2464
|
SY:
|
2177
2465
|
alpha2: SY
|
2178
2466
|
alpha3: SYR
|
@@ -2183,19 +2471,23 @@ SY:
|
|
2183
2471
|
official: Syrian Arab Republic
|
2184
2472
|
short: Syria
|
2185
2473
|
emoji: "\U0001F1F8\U0001F1FE"
|
2474
|
+
shortcode: ":flag-sy:"
|
2186
2475
|
SZ:
|
2187
2476
|
aliases:
|
2188
2477
|
- Ngwane
|
2189
2478
|
- Swatini
|
2479
|
+
- Swaziland
|
2480
|
+
- Kingdom of Swaziland
|
2190
2481
|
alpha2: SZ
|
2191
2482
|
alpha3: SWZ
|
2192
2483
|
fifa: SWZ
|
2193
2484
|
ioc: SWZ
|
2194
2485
|
iso_name: Swaziland
|
2195
2486
|
numeric: "748"
|
2196
|
-
official: Kingdom of
|
2197
|
-
short:
|
2487
|
+
official: Kingdom of Eswatini
|
2488
|
+
short: Eswatini
|
2198
2489
|
emoji: "\U0001F1F8\U0001F1FF"
|
2490
|
+
shortcode: ":flag-sz:"
|
2199
2491
|
TC:
|
2200
2492
|
aliases:
|
2201
2493
|
- TCI
|
@@ -2206,8 +2498,9 @@ TC:
|
|
2206
2498
|
iso_name: Turks and Caicos Islands
|
2207
2499
|
numeric: "796"
|
2208
2500
|
official: Turks and Caicos Islands
|
2209
|
-
short: Turks and Caicos
|
2501
|
+
short: Turks and Caicos
|
2210
2502
|
emoji: "\U0001F1F9\U0001F1E8"
|
2503
|
+
shortcode: ":flag-tc:"
|
2211
2504
|
TD:
|
2212
2505
|
alpha2: TD
|
2213
2506
|
alpha3: TCD
|
@@ -2218,6 +2511,7 @@ TD:
|
|
2218
2511
|
official: Republic of Chad
|
2219
2512
|
short: Chad
|
2220
2513
|
emoji: "\U0001F1F9\U0001F1E9"
|
2514
|
+
shortcode: ":flag-td:"
|
2221
2515
|
TF:
|
2222
2516
|
aliases:
|
2223
2517
|
- French Southern and Antarctic Lands
|
@@ -2230,6 +2524,7 @@ TF:
|
|
2230
2524
|
official: Territory of the French Southern and Antarctic Land
|
2231
2525
|
short: French Southern Territories
|
2232
2526
|
emoji: "\U0001F1F9\U0001F1EB"
|
2527
|
+
shortcode: ":flag-tf:"
|
2233
2528
|
TG:
|
2234
2529
|
alpha2: TG
|
2235
2530
|
alpha3: TGO
|
@@ -2240,6 +2535,7 @@ TG:
|
|
2240
2535
|
official: Togolese Republic
|
2241
2536
|
short: Togo
|
2242
2537
|
emoji: "\U0001F1F9\U0001F1EC"
|
2538
|
+
shortcode: ":flag-tg:"
|
2243
2539
|
TH:
|
2244
2540
|
alpha2: TH
|
2245
2541
|
alpha3: THA
|
@@ -2250,6 +2546,7 @@ TH:
|
|
2250
2546
|
official: Kingdom of Thailand
|
2251
2547
|
short: Thailand
|
2252
2548
|
emoji: "\U0001F1F9\U0001F1ED"
|
2549
|
+
shortcode: ":flag-th:"
|
2253
2550
|
TJ:
|
2254
2551
|
alpha2: TJ
|
2255
2552
|
alpha3: TJK
|
@@ -2260,6 +2557,7 @@ TJ:
|
|
2260
2557
|
official: Republic of Tajikistan
|
2261
2558
|
short: Tajikistan
|
2262
2559
|
emoji: "\U0001F1F9\U0001F1EF"
|
2560
|
+
shortcode: ":flag-tj:"
|
2263
2561
|
TK:
|
2264
2562
|
alpha2: TK
|
2265
2563
|
alpha3: TKL
|
@@ -2270,6 +2568,7 @@ TK:
|
|
2270
2568
|
official: Tokelau
|
2271
2569
|
short: Tokelau
|
2272
2570
|
emoji: "\U0001F1F9\U0001F1F0"
|
2571
|
+
shortcode: ":flag-tk:"
|
2273
2572
|
TL:
|
2274
2573
|
alpha2: TL
|
2275
2574
|
alpha3: TLS
|
@@ -2280,6 +2579,7 @@ TL:
|
|
2280
2579
|
official: Democratic Republic of Timor-Leste
|
2281
2580
|
short: East Timor
|
2282
2581
|
emoji: "\U0001F1F9\U0001F1F1"
|
2582
|
+
shortcode: ":flag-tl:"
|
2283
2583
|
TM:
|
2284
2584
|
alpha2: TM
|
2285
2585
|
alpha3: TKM
|
@@ -2290,6 +2590,7 @@ TM:
|
|
2290
2590
|
official: Turkmenistan
|
2291
2591
|
short: Turkmenistan
|
2292
2592
|
emoji: "\U0001F1F9\U0001F1F2"
|
2593
|
+
shortcode: ":flag-tm:"
|
2293
2594
|
TN:
|
2294
2595
|
alpha2: TN
|
2295
2596
|
alpha3: TUN
|
@@ -2300,6 +2601,7 @@ TN:
|
|
2300
2601
|
official: Republic of Tunisia
|
2301
2602
|
short: Tunisia
|
2302
2603
|
emoji: "\U0001F1F9\U0001F1F3"
|
2604
|
+
shortcode: ":flag-tn:"
|
2303
2605
|
TO:
|
2304
2606
|
alpha2: TO
|
2305
2607
|
alpha3: TON
|
@@ -2310,6 +2612,7 @@ TO:
|
|
2310
2612
|
official: Kingdom of Tonga
|
2311
2613
|
short: Tonga
|
2312
2614
|
emoji: "\U0001F1F9\U0001F1F4"
|
2615
|
+
shortcode: ":flag-to:"
|
2313
2616
|
TR:
|
2314
2617
|
alpha2: TR
|
2315
2618
|
alpha3: TUR
|
@@ -2320,6 +2623,7 @@ TR:
|
|
2320
2623
|
official: Republic of Turkey
|
2321
2624
|
short: Turkey
|
2322
2625
|
emoji: "\U0001F1F9\U0001F1F7"
|
2626
|
+
shortcode: ":flag-tr:"
|
2323
2627
|
TT:
|
2324
2628
|
alpha2: TT
|
2325
2629
|
alpha3: TTO
|
@@ -2330,6 +2634,7 @@ TT:
|
|
2330
2634
|
official: Republic of Trinidad and Tobago
|
2331
2635
|
short: Trinidad and Tobago
|
2332
2636
|
emoji: "\U0001F1F9\U0001F1F9"
|
2637
|
+
shortcode: ":flag-tt:"
|
2333
2638
|
TV:
|
2334
2639
|
alpha2: TV
|
2335
2640
|
alpha3: TUV
|
@@ -2340,6 +2645,7 @@ TV:
|
|
2340
2645
|
official: Tuvalu
|
2341
2646
|
short: Tuvalu
|
2342
2647
|
emoji: "\U0001F1F9\U0001F1FB"
|
2648
|
+
shortcode: ":flag-tv:"
|
2343
2649
|
TW:
|
2344
2650
|
aliases:
|
2345
2651
|
- ROC
|
@@ -2352,6 +2658,7 @@ TW:
|
|
2352
2658
|
official: Republic of China
|
2353
2659
|
short: Taiwan
|
2354
2660
|
emoji: "\U0001F1F9\U0001F1FC"
|
2661
|
+
shortcode: ":flag-tw:"
|
2355
2662
|
TZ:
|
2356
2663
|
alpha2: TZ
|
2357
2664
|
alpha3: TZA
|
@@ -2362,7 +2669,10 @@ TZ:
|
|
2362
2669
|
official: United Republic of Tanzania
|
2363
2670
|
short: Tanzania
|
2364
2671
|
emoji: "\U0001F1F9\U0001F1FF"
|
2672
|
+
shortcode: ":flag-tz:"
|
2365
2673
|
UA:
|
2674
|
+
aliases:
|
2675
|
+
- The Ukraine
|
2366
2676
|
alpha2: UA
|
2367
2677
|
alpha3: UKR
|
2368
2678
|
fifa: UKR
|
@@ -2372,6 +2682,7 @@ UA:
|
|
2372
2682
|
official: Ukraine
|
2373
2683
|
short: Ukraine
|
2374
2684
|
emoji: "\U0001F1FA\U0001F1E6"
|
2685
|
+
shortcode: ":flag-ua:"
|
2375
2686
|
UG:
|
2376
2687
|
alpha2: UG
|
2377
2688
|
alpha3: UGA
|
@@ -2382,6 +2693,7 @@ UG:
|
|
2382
2693
|
official: Republic of Uganda
|
2383
2694
|
short: Uganda
|
2384
2695
|
emoji: "\U0001F1FA\U0001F1EC"
|
2696
|
+
shortcode: ":flag-ug:"
|
2385
2697
|
UM:
|
2386
2698
|
alpha2: UM
|
2387
2699
|
alpha3: UMI
|
@@ -2392,6 +2704,7 @@ UM:
|
|
2392
2704
|
official: United States Minor Outlying Islands
|
2393
2705
|
short: United States Minor Outlying Islands
|
2394
2706
|
emoji: "\U0001F1FA\U0001F1F2"
|
2707
|
+
shortcode: ":flag-um:"
|
2395
2708
|
US:
|
2396
2709
|
aliases:
|
2397
2710
|
- America
|
@@ -2406,6 +2719,7 @@ US:
|
|
2406
2719
|
official: United States of America
|
2407
2720
|
short: United States
|
2408
2721
|
emoji: "\U0001F1FA\U0001F1F8"
|
2722
|
+
shortcode: ":flag-us:"
|
2409
2723
|
UY:
|
2410
2724
|
aliases:
|
2411
2725
|
- Eastern Republic of Uruguay
|
@@ -2418,6 +2732,7 @@ UY:
|
|
2418
2732
|
official: Oriental Republic of Uruguay
|
2419
2733
|
short: Uruguay
|
2420
2734
|
emoji: "\U0001F1FA\U0001F1FE"
|
2735
|
+
shortcode: ":flag-uy:"
|
2421
2736
|
UZ:
|
2422
2737
|
alpha2: UZ
|
2423
2738
|
alpha3: UZB
|
@@ -2428,6 +2743,7 @@ UZ:
|
|
2428
2743
|
official: Republic of Uzbekistan
|
2429
2744
|
short: Uzbekistan
|
2430
2745
|
emoji: "\U0001F1FA\U0001F1FF"
|
2746
|
+
shortcode: ":flag-uz:"
|
2431
2747
|
VA:
|
2432
2748
|
alpha2: VA
|
2433
2749
|
alpha3: VAT
|
@@ -2438,6 +2754,7 @@ VA:
|
|
2438
2754
|
official: Vatican City State
|
2439
2755
|
short: Vatican City
|
2440
2756
|
emoji: "\U0001F1FB\U0001F1E6"
|
2757
|
+
shortcode: ":flag-va:"
|
2441
2758
|
VC:
|
2442
2759
|
alpha2: VC
|
2443
2760
|
alpha3: VCT
|
@@ -2448,6 +2765,7 @@ VC:
|
|
2448
2765
|
official: Saint Vincent And The Grenadines
|
2449
2766
|
short: Saint Vincent And The Grenadines
|
2450
2767
|
emoji: "\U0001F1FB\U0001F1E8"
|
2768
|
+
shortcode: ":flag-vc:"
|
2451
2769
|
VE:
|
2452
2770
|
alpha2: VE
|
2453
2771
|
alpha3: VEN
|
@@ -2458,6 +2776,7 @@ VE:
|
|
2458
2776
|
official: Bolivarian Republic of Venezuela
|
2459
2777
|
short: Venezuela
|
2460
2778
|
emoji: "\U0001F1FB\U0001F1EA"
|
2779
|
+
shortcode: ":flag-ve:"
|
2461
2780
|
VG:
|
2462
2781
|
aliases:
|
2463
2782
|
- BVI
|
@@ -2470,6 +2789,7 @@ VG:
|
|
2470
2789
|
official: Virgin Islands
|
2471
2790
|
short: British Virgin Islands
|
2472
2791
|
emoji: "\U0001F1FB\U0001F1EC"
|
2792
|
+
shortcode: ":flag-vg:"
|
2473
2793
|
VI:
|
2474
2794
|
aliases:
|
2475
2795
|
- USVI
|
@@ -2484,6 +2804,7 @@ VI:
|
|
2484
2804
|
official: Virgin Islands of the United States
|
2485
2805
|
short: U.S. Virgin Islands
|
2486
2806
|
emoji: "\U0001F1FB\U0001F1EE"
|
2807
|
+
shortcode: ":flag-vi:"
|
2487
2808
|
VN:
|
2488
2809
|
aliases:
|
2489
2810
|
- Viet Nam
|
@@ -2496,6 +2817,7 @@ VN:
|
|
2496
2817
|
official: Socialist Republic of Vietnam
|
2497
2818
|
short: Vietnam
|
2498
2819
|
emoji: "\U0001F1FB\U0001F1F3"
|
2820
|
+
shortcode: ":flag-vn:"
|
2499
2821
|
VU:
|
2500
2822
|
alpha2: VU
|
2501
2823
|
alpha3: VUT
|
@@ -2506,6 +2828,7 @@ VU:
|
|
2506
2828
|
official: Republic of Vanuatu
|
2507
2829
|
short: Vanuatu
|
2508
2830
|
emoji: "\U0001F1FB\U0001F1FA"
|
2831
|
+
shortcode: ":flag-vu:"
|
2509
2832
|
WF:
|
2510
2833
|
alpha2: WF
|
2511
2834
|
alpha3: WLF
|
@@ -2516,6 +2839,7 @@ WF:
|
|
2516
2839
|
official: Territory of the Wallis and Futuna Islands
|
2517
2840
|
short: Wallis and Futuna
|
2518
2841
|
emoji: "\U0001F1FC\U0001F1EB"
|
2842
|
+
shortcode: ":flag-wf:"
|
2519
2843
|
WS:
|
2520
2844
|
alpha2: WS
|
2521
2845
|
alpha3: WSM
|
@@ -2526,6 +2850,7 @@ WS:
|
|
2526
2850
|
official: Independent State of Samoa
|
2527
2851
|
short: Samoa
|
2528
2852
|
emoji: "\U0001F1FC\U0001F1F8"
|
2853
|
+
shortcode: ":flag-ws:"
|
2529
2854
|
YE:
|
2530
2855
|
alpha2: YE
|
2531
2856
|
alpha3: YEM
|
@@ -2536,6 +2861,7 @@ YE:
|
|
2536
2861
|
official: Republic of Yemen
|
2537
2862
|
short: Yemen
|
2538
2863
|
emoji: "\U0001F1FE\U0001F1EA"
|
2864
|
+
shortcode: ":flag-ye:"
|
2539
2865
|
YT:
|
2540
2866
|
alpha2: YT
|
2541
2867
|
alpha3: MYT
|
@@ -2546,6 +2872,7 @@ YT:
|
|
2546
2872
|
official: Department of Mayotte
|
2547
2873
|
short: Mayotte
|
2548
2874
|
emoji: "\U0001F1FE\U0001F1F9"
|
2875
|
+
shortcode: ":flag-yt:"
|
2549
2876
|
ZA:
|
2550
2877
|
alpha2: ZA
|
2551
2878
|
alpha3: ZAF
|
@@ -2556,6 +2883,7 @@ ZA:
|
|
2556
2883
|
official: Republic of South Africa
|
2557
2884
|
short: South Africa
|
2558
2885
|
emoji: "\U0001F1FF\U0001F1E6"
|
2886
|
+
shortcode: ":flag-za:"
|
2559
2887
|
ZM:
|
2560
2888
|
alpha2: ZM
|
2561
2889
|
alpha3: ZMB
|
@@ -2566,6 +2894,7 @@ ZM:
|
|
2566
2894
|
official: Republic of Zambia
|
2567
2895
|
short: Zambia
|
2568
2896
|
emoji: "\U0001F1FF\U0001F1F2"
|
2897
|
+
shortcode: ":flag-zm:"
|
2569
2898
|
ZW:
|
2570
2899
|
alpha2: ZW
|
2571
2900
|
alpha3: ZWE
|
@@ -2576,3 +2905,4 @@ ZW:
|
|
2576
2905
|
official: Republic of Zimbabwe
|
2577
2906
|
short: Zimbabwe
|
2578
2907
|
emoji: "\U0001F1FF\U0001F1FC"
|
2908
|
+
shortcode: ":flag-zw:"
|