unicode-icons 2.1.2

(1869+) unicode icons in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
//! Flags

use crate::Emoticon;

/// chequered_flag 🏁 (U+1F3C1)
pub fn chequered_flag() -> Emoticon {
    Emoticon("\u{1F3C1}".to_string())
}

/// triangular_flag 🚩 (U+1F6A9)
pub fn triangular_flag() -> Emoticon {
    Emoticon("\u{1F6A9}".to_string())
}

/// crossed_flags 🎌 (U+1F38C)
pub fn crossed_flags() -> Emoticon {
    Emoticon("\u{1F38C}".to_string())
}

/// black_flag 🏴 (U+1F3F4)
pub fn black_flag() -> Emoticon {
    Emoticon("\u{1F3F4}".to_string())
}

/// white_flag 🏳 (U+1F3F3)
pub fn white_flag() -> Emoticon {
    Emoticon("\u{1F3F3}".to_string())
}

/// rainbow_flag 🏳️‍🌈 (U+1F3F3 U+FE0F U+200D U+1F308)
pub fn rainbow_flag() -> Emoticon {
    Emoticon("\u{1F3F3}\u{FE0F}\u{200D}\u{1F308}".to_string())
}

/// transgender_flag 🏳️‍⚧️ (U+1F3F3 U+FE0F U+200D U+26A7 U+FE0F)
pub fn transgender_flag() -> Emoticon {
    Emoticon("\u{1F3F3}\u{FE0F}\u{200D}\u{26A7}\u{FE0F}".to_string())
}

/// pirate_flag 🏴‍☠️ (U+1F3F4 U+200D U+2620 U+FE0F)
pub fn pirate_flag() -> Emoticon {
    Emoticon("\u{1F3F4}\u{200D}\u{2620}\u{FE0F}".to_string())
}

/// flag_Ascension_Island 🇦🇨 (U+1F1E6 U+1F1E8)
pub fn flag_ascension_island() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1E8}".to_string())
}

/// flag_Andorra 🇦🇩 (U+1F1E6 U+1F1E9)
pub fn flag_andorra() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1E9}".to_string())
}

/// flag_United_Arab_Emirates 🇦🇪 (U+1F1E6 U+1F1EA)
pub fn flag_united_arab_emirates() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1EA}".to_string())
}

/// flag_Afghanistan 🇦🇫 (U+1F1E6 U+1F1EB)
pub fn flag_afghanistan() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1EB}".to_string())
}

/// flag_Antigua_Barbuda 🇦🇬 (U+1F1E6 U+1F1EC)
pub fn flag_antigua_barbuda() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1EC}".to_string())
}

/// flag_Anguilla 🇦🇮 (U+1F1E6 U+1F1EE)
pub fn flag_anguilla() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1EE}".to_string())
}

/// flag_Albania 🇦🇱 (U+1F1E6 U+1F1F1)
pub fn flag_albania() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1F1}".to_string())
}

/// flag_Armenia 🇦🇲 (U+1F1E6 U+1F1F2)
pub fn flag_armenia() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1F2}".to_string())
}

/// flag_Angola 🇦🇴 (U+1F1E6 U+1F1F4)
pub fn flag_angola() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1F4}".to_string())
}

/// flag_Antarctica 🇦🇶 (U+1F1E6 U+1F1F6)
pub fn flag_antarctica() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1F6}".to_string())
}

/// flag_Argentina 🇦🇷 (U+1F1E6 U+1F1F7)
pub fn flag_argentina() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1F7}".to_string())
}

/// flag_American_Samoa 🇦🇸 (U+1F1E6 U+1F1F8)
pub fn flag_american_samoa() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1F8}".to_string())
}

/// flag_Austria 🇦🇹 (U+1F1E6 U+1F1F9)
pub fn flag_austria() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1F9}".to_string())
}

/// flag_Australia 🇦🇺 (U+1F1E6 U+1F1FA)
pub fn flag_australia() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1FA}".to_string())
}

/// flag_Aruba 🇦🇼 (U+1F1E6 U+1F1FC)
pub fn flag_aruba() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1FC}".to_string())
}

/// flag_land_Islands 🇦🇽 (U+1F1E6 U+1F1FD)
pub fn flag_land_islands() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1FD}".to_string())
}

/// flag_Azerbaijan 🇦🇿 (U+1F1E6 U+1F1FF)
pub fn flag_azerbaijan() -> Emoticon {
    Emoticon("\u{1F1E6}\u{1F1FF}".to_string())
}

/// flag_Bosnia_Herzegovina 🇧🇦 (U+1F1E7 U+1F1E6)
pub fn flag_bosnia_herzegovina() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1E6}".to_string())
}

/// flag_Barbados 🇧🇧 (U+1F1E7 U+1F1E7)
pub fn flag_barbados() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1E7}".to_string())
}

/// flag_Bangladesh 🇧🇩 (U+1F1E7 U+1F1E9)
pub fn flag_bangladesh() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1E9}".to_string())
}

/// flag_Belgium 🇧🇪 (U+1F1E7 U+1F1EA)
pub fn flag_belgium() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1EA}".to_string())
}

/// flag_Burkina_Faso 🇧🇫 (U+1F1E7 U+1F1EB)
pub fn flag_burkina_faso() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1EB}".to_string())
}

/// flag_Bulgaria 🇧🇬 (U+1F1E7 U+1F1EC)
pub fn flag_bulgaria() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1EC}".to_string())
}

/// flag_Bahrain 🇧🇭 (U+1F1E7 U+1F1ED)
pub fn flag_bahrain() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1ED}".to_string())
}

/// flag_Burundi 🇧🇮 (U+1F1E7 U+1F1EE)
pub fn flag_burundi() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1EE}".to_string())
}

/// flag_Benin 🇧🇯 (U+1F1E7 U+1F1EF)
pub fn flag_benin() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1EF}".to_string())
}

/// flag_St_Barth_lemy 🇧🇱 (U+1F1E7 U+1F1F1)
pub fn flag_st_barth_lemy() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F1}".to_string())
}

/// flag_Bermuda 🇧🇲 (U+1F1E7 U+1F1F2)
pub fn flag_bermuda() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F2}".to_string())
}

/// flag_Brunei 🇧🇳 (U+1F1E7 U+1F1F3)
pub fn flag_brunei() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F3}".to_string())
}

/// flag_Bolivia 🇧🇴 (U+1F1E7 U+1F1F4)
pub fn flag_bolivia() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F4}".to_string())
}

/// flag_Caribbean_Netherlands 🇧🇶 (U+1F1E7 U+1F1F6)
pub fn flag_caribbean_netherlands() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F6}".to_string())
}

/// flag_Brazil 🇧🇷 (U+1F1E7 U+1F1F7)
pub fn flag_brazil() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F7}".to_string())
}

/// flag_Bahamas 🇧🇸 (U+1F1E7 U+1F1F8)
pub fn flag_bahamas() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F8}".to_string())
}

/// flag_Bhutan 🇧🇹 (U+1F1E7 U+1F1F9)
pub fn flag_bhutan() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1F9}".to_string())
}

/// flag_Bouvet_Island 🇧🇻 (U+1F1E7 U+1F1FB)
pub fn flag_bouvet_island() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1FB}".to_string())
}

/// flag_Botswana 🇧🇼 (U+1F1E7 U+1F1FC)
pub fn flag_botswana() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1FC}".to_string())
}

/// flag_Belarus 🇧🇾 (U+1F1E7 U+1F1FE)
pub fn flag_belarus() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1FE}".to_string())
}

/// flag_Belize 🇧🇿 (U+1F1E7 U+1F1FF)
pub fn flag_belize() -> Emoticon {
    Emoticon("\u{1F1E7}\u{1F1FF}".to_string())
}

/// flag_Canada 🇨🇦 (U+1F1E8 U+1F1E6)
pub fn flag_canada() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1E6}".to_string())
}

/// flag_Cocos_Keeling_Islands 🇨🇨 (U+1F1E8 U+1F1E8)
pub fn flag_cocos_keeling_islands() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1E8}".to_string())
}

/// flag_Congo_Kinshasa 🇨🇩 (U+1F1E8 U+1F1E9)
pub fn flag_congo_kinshasa() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1E9}".to_string())
}

/// flag_Central_African_Republic 🇨🇫 (U+1F1E8 U+1F1EB)
pub fn flag_central_african_republic() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1EB}".to_string())
}

/// flag_Congo_Brazzaville 🇨🇬 (U+1F1E8 U+1F1EC)
pub fn flag_congo_brazzaville() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1EC}".to_string())
}

/// flag_Switzerland 🇨🇭 (U+1F1E8 U+1F1ED)
pub fn flag_switzerland() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1ED}".to_string())
}

/// flag_C_te_d_Ivoire 🇨🇮 (U+1F1E8 U+1F1EE)
pub fn flag_c_te_d_ivoire() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1EE}".to_string())
}

/// flag_Cook_Islands 🇨🇰 (U+1F1E8 U+1F1F0)
pub fn flag_cook_islands() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1F0}".to_string())
}

/// flag_Chile 🇨🇱 (U+1F1E8 U+1F1F1)
pub fn flag_chile() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1F1}".to_string())
}

/// flag_Cameroon 🇨🇲 (U+1F1E8 U+1F1F2)
pub fn flag_cameroon() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1F2}".to_string())
}

/// flag_China 🇨🇳 (U+1F1E8 U+1F1F3)
pub fn flag_china() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1F3}".to_string())
}

/// flag_Colombia 🇨🇴 (U+1F1E8 U+1F1F4)
pub fn flag_colombia() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1F4}".to_string())
}

/// flag_Clipperton_Island 🇨🇵 (U+1F1E8 U+1F1F5)
pub fn flag_clipperton_island() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1F5}".to_string())
}

/// flag_Costa_Rica 🇨🇷 (U+1F1E8 U+1F1F7)
pub fn flag_costa_rica() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1F7}".to_string())
}

/// flag_Cuba 🇨🇺 (U+1F1E8 U+1F1FA)
pub fn flag_cuba() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1FA}".to_string())
}

/// flag_Cape_Verde 🇨🇻 (U+1F1E8 U+1F1FB)
pub fn flag_cape_verde() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1FB}".to_string())
}

/// flag_Cura_ao 🇨🇼 (U+1F1E8 U+1F1FC)
pub fn flag_cura_ao() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1FC}".to_string())
}

/// flag_Christmas_Island 🇨🇽 (U+1F1E8 U+1F1FD)
pub fn flag_christmas_island() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1FD}".to_string())
}

/// flag_Cyprus 🇨🇾 (U+1F1E8 U+1F1FE)
pub fn flag_cyprus() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1FE}".to_string())
}

/// flag_Czechia 🇨🇿 (U+1F1E8 U+1F1FF)
pub fn flag_czechia() -> Emoticon {
    Emoticon("\u{1F1E8}\u{1F1FF}".to_string())
}

/// flag_Germany 🇩🇪 (U+1F1E9 U+1F1EA)
pub fn flag_germany() -> Emoticon {
    Emoticon("\u{1F1E9}\u{1F1EA}".to_string())
}

/// flag_Diego_Garcia 🇩🇬 (U+1F1E9 U+1F1EC)
pub fn flag_diego_garcia() -> Emoticon {
    Emoticon("\u{1F1E9}\u{1F1EC}".to_string())
}

/// flag_Djibouti 🇩🇯 (U+1F1E9 U+1F1EF)
pub fn flag_djibouti() -> Emoticon {
    Emoticon("\u{1F1E9}\u{1F1EF}".to_string())
}

/// flag_Denmark 🇩🇰 (U+1F1E9 U+1F1F0)
pub fn flag_denmark() -> Emoticon {
    Emoticon("\u{1F1E9}\u{1F1F0}".to_string())
}

/// flag_Dominica 🇩🇲 (U+1F1E9 U+1F1F2)
pub fn flag_dominica() -> Emoticon {
    Emoticon("\u{1F1E9}\u{1F1F2}".to_string())
}

/// flag_Dominican_Republic 🇩🇴 (U+1F1E9 U+1F1F4)
pub fn flag_dominican_republic() -> Emoticon {
    Emoticon("\u{1F1E9}\u{1F1F4}".to_string())
}

/// flag_Algeria 🇩🇿 (U+1F1E9 U+1F1FF)
pub fn flag_algeria() -> Emoticon {
    Emoticon("\u{1F1E9}\u{1F1FF}".to_string())
}

/// flag_Ceuta_Melilla 🇪🇦 (U+1F1EA U+1F1E6)
pub fn flag_ceuta_melilla() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1E6}".to_string())
}

/// flag_Ecuador 🇪🇨 (U+1F1EA U+1F1E8)
pub fn flag_ecuador() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1E8}".to_string())
}

/// flag_Estonia 🇪🇪 (U+1F1EA U+1F1EA)
pub fn flag_estonia() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1EA}".to_string())
}

/// flag_Egypt 🇪🇬 (U+1F1EA U+1F1EC)
pub fn flag_egypt() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1EC}".to_string())
}

/// flag_Western_Sahara 🇪🇭 (U+1F1EA U+1F1ED)
pub fn flag_western_sahara() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1ED}".to_string())
}

/// flag_Eritrea 🇪🇷 (U+1F1EA U+1F1F7)
pub fn flag_eritrea() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1F7}".to_string())
}

/// flag_Spain 🇪🇸 (U+1F1EA U+1F1F8)
pub fn flag_spain() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1F8}".to_string())
}

/// flag_Ethiopia 🇪🇹 (U+1F1EA U+1F1F9)
pub fn flag_ethiopia() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1F9}".to_string())
}

/// flag_European_Union 🇪🇺 (U+1F1EA U+1F1FA)
pub fn flag_european_union() -> Emoticon {
    Emoticon("\u{1F1EA}\u{1F1FA}".to_string())
}

/// flag_Finland 🇫🇮 (U+1F1EB U+1F1EE)
pub fn flag_finland() -> Emoticon {
    Emoticon("\u{1F1EB}\u{1F1EE}".to_string())
}

/// flag_Fiji 🇫🇯 (U+1F1EB U+1F1EF)
pub fn flag_fiji() -> Emoticon {
    Emoticon("\u{1F1EB}\u{1F1EF}".to_string())
}

/// flag_Falkland_Islands 🇫🇰 (U+1F1EB U+1F1F0)
pub fn flag_falkland_islands() -> Emoticon {
    Emoticon("\u{1F1EB}\u{1F1F0}".to_string())
}

/// flag_Micronesia 🇫🇲 (U+1F1EB U+1F1F2)
pub fn flag_micronesia() -> Emoticon {
    Emoticon("\u{1F1EB}\u{1F1F2}".to_string())
}

/// flag_Faroe_Islands 🇫🇴 (U+1F1EB U+1F1F4)
pub fn flag_faroe_islands() -> Emoticon {
    Emoticon("\u{1F1EB}\u{1F1F4}".to_string())
}

/// flag_France 🇫🇷 (U+1F1EB U+1F1F7)
pub fn flag_france() -> Emoticon {
    Emoticon("\u{1F1EB}\u{1F1F7}".to_string())
}

/// flag_Gabon 🇬🇦 (U+1F1EC U+1F1E6)
pub fn flag_gabon() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1E6}".to_string())
}

/// flag_United_Kingdom 🇬🇧 (U+1F1EC U+1F1E7)
pub fn flag_united_kingdom() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1E7}".to_string())
}

/// flag_Grenada 🇬🇩 (U+1F1EC U+1F1E9)
pub fn flag_grenada() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1E9}".to_string())
}

/// flag_Georgia 🇬🇪 (U+1F1EC U+1F1EA)
pub fn flag_georgia() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1EA}".to_string())
}

/// flag_French_Guiana 🇬🇫 (U+1F1EC U+1F1EB)
pub fn flag_french_guiana() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1EB}".to_string())
}

/// flag_Guernsey 🇬🇬 (U+1F1EC U+1F1EC)
pub fn flag_guernsey() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1EC}".to_string())
}

/// flag_Ghana 🇬🇭 (U+1F1EC U+1F1ED)
pub fn flag_ghana() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1ED}".to_string())
}

/// flag_Gibraltar 🇬🇮 (U+1F1EC U+1F1EE)
pub fn flag_gibraltar() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1EE}".to_string())
}

/// flag_Greenland 🇬🇱 (U+1F1EC U+1F1F1)
pub fn flag_greenland() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F1}".to_string())
}

/// flag_Gambia 🇬🇲 (U+1F1EC U+1F1F2)
pub fn flag_gambia() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F2}".to_string())
}

/// flag_Guinea 🇬🇳 (U+1F1EC U+1F1F3)
pub fn flag_guinea() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F3}".to_string())
}

/// flag_Guadeloupe 🇬🇵 (U+1F1EC U+1F1F5)
pub fn flag_guadeloupe() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F5}".to_string())
}

/// flag_Equatorial_Guinea 🇬🇶 (U+1F1EC U+1F1F6)
pub fn flag_equatorial_guinea() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F6}".to_string())
}

/// flag_Greece 🇬🇷 (U+1F1EC U+1F1F7)
pub fn flag_greece() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F7}".to_string())
}

/// flag_South_Georgia_South_Sandwich_Islands 🇬🇸 (U+1F1EC U+1F1F8)
pub fn flag_south_georgia_south_sandwich_islands() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F8}".to_string())
}

/// flag_Guatemala 🇬🇹 (U+1F1EC U+1F1F9)
pub fn flag_guatemala() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1F9}".to_string())
}

/// flag_Guam 🇬🇺 (U+1F1EC U+1F1FA)
pub fn flag_guam() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1FA}".to_string())
}

/// flag_Guinea_Bissau 🇬🇼 (U+1F1EC U+1F1FC)
pub fn flag_guinea_bissau() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1FC}".to_string())
}

/// flag_Guyana 🇬🇾 (U+1F1EC U+1F1FE)
pub fn flag_guyana() -> Emoticon {
    Emoticon("\u{1F1EC}\u{1F1FE}".to_string())
}

/// flag_Hong_Kong_SAR_China 🇭🇰 (U+1F1ED U+1F1F0)
pub fn flag_hong_kong_sar_china() -> Emoticon {
    Emoticon("\u{1F1ED}\u{1F1F0}".to_string())
}

/// flag_Heard_McDonald_Islands 🇭🇲 (U+1F1ED U+1F1F2)
pub fn flag_heard_mcdonald_islands() -> Emoticon {
    Emoticon("\u{1F1ED}\u{1F1F2}".to_string())
}

/// flag_Honduras 🇭🇳 (U+1F1ED U+1F1F3)
pub fn flag_honduras() -> Emoticon {
    Emoticon("\u{1F1ED}\u{1F1F3}".to_string())
}

/// flag_Croatia 🇭🇷 (U+1F1ED U+1F1F7)
pub fn flag_croatia() -> Emoticon {
    Emoticon("\u{1F1ED}\u{1F1F7}".to_string())
}

/// flag_Haiti 🇭🇹 (U+1F1ED U+1F1F9)
pub fn flag_haiti() -> Emoticon {
    Emoticon("\u{1F1ED}\u{1F1F9}".to_string())
}

/// flag_Hungary 🇭🇺 (U+1F1ED U+1F1FA)
pub fn flag_hungary() -> Emoticon {
    Emoticon("\u{1F1ED}\u{1F1FA}".to_string())
}

/// flag_Canary_Islands 🇮🇨 (U+1F1EE U+1F1E8)
pub fn flag_canary_islands() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1E8}".to_string())
}

/// flag_Indonesia 🇮🇩 (U+1F1EE U+1F1E9)
pub fn flag_indonesia() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1E9}".to_string())
}

/// flag_Ireland 🇮🇪 (U+1F1EE U+1F1EA)
pub fn flag_ireland() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1EA}".to_string())
}

/// flag_Israel 🇮🇱 (U+1F1EE U+1F1F1)
pub fn flag_israel() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F1}".to_string())
}

/// flag_Isle_of_Man 🇮🇲 (U+1F1EE U+1F1F2)
pub fn flag_isle_of_man() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F2}".to_string())
}

/// flag_India 🇮🇳 (U+1F1EE U+1F1F3)
pub fn flag_india() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F3}".to_string())
}

/// flag_British_Indian_Ocean_Territory 🇮🇴 (U+1F1EE U+1F1F4)
pub fn flag_british_indian_ocean_territory() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F4}".to_string())
}

/// flag_Iraq 🇮🇶 (U+1F1EE U+1F1F6)
pub fn flag_iraq() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F6}".to_string())
}

/// flag_Iran 🇮🇷 (U+1F1EE U+1F1F7)
pub fn flag_iran() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F7}".to_string())
}

/// flag_Iceland 🇮🇸 (U+1F1EE U+1F1F8)
pub fn flag_iceland() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F8}".to_string())
}

/// flag_Italy 🇮🇹 (U+1F1EE U+1F1F9)
pub fn flag_italy() -> Emoticon {
    Emoticon("\u{1F1EE}\u{1F1F9}".to_string())
}

/// flag_Jersey 🇯🇪 (U+1F1EF U+1F1EA)
pub fn flag_jersey() -> Emoticon {
    Emoticon("\u{1F1EF}\u{1F1EA}".to_string())
}

/// flag_Jamaica 🇯🇲 (U+1F1EF U+1F1F2)
pub fn flag_jamaica() -> Emoticon {
    Emoticon("\u{1F1EF}\u{1F1F2}".to_string())
}

/// flag_Jordan 🇯🇴 (U+1F1EF U+1F1F4)
pub fn flag_jordan() -> Emoticon {
    Emoticon("\u{1F1EF}\u{1F1F4}".to_string())
}

/// flag_Japan 🇯🇵 (U+1F1EF U+1F1F5)
pub fn flag_japan() -> Emoticon {
    Emoticon("\u{1F1EF}\u{1F1F5}".to_string())
}

/// flag_Kenya 🇰🇪 (U+1F1F0 U+1F1EA)
pub fn flag_kenya() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1EA}".to_string())
}

/// flag_Kyrgyzstan 🇰🇬 (U+1F1F0 U+1F1EC)
pub fn flag_kyrgyzstan() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1EC}".to_string())
}

/// flag_Cambodia 🇰🇭 (U+1F1F0 U+1F1ED)
pub fn flag_cambodia() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1ED}".to_string())
}

/// flag_Kiribati 🇰🇮 (U+1F1F0 U+1F1EE)
pub fn flag_kiribati() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1EE}".to_string())
}

/// flag_Comoros 🇰🇲 (U+1F1F0 U+1F1F2)
pub fn flag_comoros() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1F2}".to_string())
}

/// flag_St_Kitts_Nevis 🇰🇳 (U+1F1F0 U+1F1F3)
pub fn flag_st_kitts_nevis() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1F3}".to_string())
}

/// flag_North_Korea 🇰🇵 (U+1F1F0 U+1F1F5)
pub fn flag_north_korea() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1F5}".to_string())
}

/// flag_South_Korea 🇰🇷 (U+1F1F0 U+1F1F7)
pub fn flag_south_korea() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1F7}".to_string())
}

/// flag_Kuwait 🇰🇼 (U+1F1F0 U+1F1FC)
pub fn flag_kuwait() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1FC}".to_string())
}

/// flag_Cayman_Islands 🇰🇾 (U+1F1F0 U+1F1FE)
pub fn flag_cayman_islands() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1FE}".to_string())
}

/// flag_Kazakhstan 🇰🇿 (U+1F1F0 U+1F1FF)
pub fn flag_kazakhstan() -> Emoticon {
    Emoticon("\u{1F1F0}\u{1F1FF}".to_string())
}

/// flag_Laos 🇱🇦 (U+1F1F1 U+1F1E6)
pub fn flag_laos() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1E6}".to_string())
}

/// flag_Lebanon 🇱🇧 (U+1F1F1 U+1F1E7)
pub fn flag_lebanon() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1E7}".to_string())
}

/// flag_St_Lucia 🇱🇨 (U+1F1F1 U+1F1E8)
pub fn flag_st_lucia() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1E8}".to_string())
}

/// flag_Liechtenstein 🇱🇮 (U+1F1F1 U+1F1EE)
pub fn flag_liechtenstein() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1EE}".to_string())
}

/// flag_Sri_Lanka 🇱🇰 (U+1F1F1 U+1F1F0)
pub fn flag_sri_lanka() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1F0}".to_string())
}

/// flag_Liberia 🇱🇷 (U+1F1F1 U+1F1F7)
pub fn flag_liberia() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1F7}".to_string())
}

/// flag_Lesotho 🇱🇸 (U+1F1F1 U+1F1F8)
pub fn flag_lesotho() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1F8}".to_string())
}

/// flag_Lithuania 🇱🇹 (U+1F1F1 U+1F1F9)
pub fn flag_lithuania() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1F9}".to_string())
}

/// flag_Luxembourg 🇱🇺 (U+1F1F1 U+1F1FA)
pub fn flag_luxembourg() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1FA}".to_string())
}

/// flag_Latvia 🇱🇻 (U+1F1F1 U+1F1FB)
pub fn flag_latvia() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1FB}".to_string())
}

/// flag_Libya 🇱🇾 (U+1F1F1 U+1F1FE)
pub fn flag_libya() -> Emoticon {
    Emoticon("\u{1F1F1}\u{1F1FE}".to_string())
}

/// flag_Morocco 🇲🇦 (U+1F1F2 U+1F1E6)
pub fn flag_morocco() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1E6}".to_string())
}

/// flag_Monaco 🇲🇨 (U+1F1F2 U+1F1E8)
pub fn flag_monaco() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1E8}".to_string())
}

/// flag_Moldova 🇲🇩 (U+1F1F2 U+1F1E9)
pub fn flag_moldova() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1E9}".to_string())
}

/// flag_Montenegro 🇲🇪 (U+1F1F2 U+1F1EA)
pub fn flag_montenegro() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1EA}".to_string())
}

/// flag_St_Martin 🇲🇫 (U+1F1F2 U+1F1EB)
pub fn flag_st_martin() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1EB}".to_string())
}

/// flag_Madagascar 🇲🇬 (U+1F1F2 U+1F1EC)
pub fn flag_madagascar() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1EC}".to_string())
}

/// flag_Marshall_Islands 🇲🇭 (U+1F1F2 U+1F1ED)
pub fn flag_marshall_islands() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1ED}".to_string())
}

/// flag_North_Macedonia 🇲🇰 (U+1F1F2 U+1F1F0)
pub fn flag_north_macedonia() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F0}".to_string())
}

/// flag_Mali 🇲🇱 (U+1F1F2 U+1F1F1)
pub fn flag_mali() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F1}".to_string())
}

/// flag_Myanmar_Burma_ 🇲🇲 (U+1F1F2 U+1F1F2)
pub fn flag_myanmar_burma_() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F2}".to_string())
}

/// flag_Mongolia 🇲🇳 (U+1F1F2 U+1F1F3)
pub fn flag_mongolia() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F3}".to_string())
}

/// flag_Macao_SAR_China 🇲🇴 (U+1F1F2 U+1F1F4)
pub fn flag_macao_sar_china() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F4}".to_string())
}

/// flag_Northern_Mariana_Islands 🇲🇵 (U+1F1F2 U+1F1F5)
pub fn flag_northern_mariana_islands() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F5}".to_string())
}

/// flag_Martinique 🇲🇶 (U+1F1F2 U+1F1F6)
pub fn flag_martinique() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F6}".to_string())
}

/// flag_Mauritania 🇲🇷 (U+1F1F2 U+1F1F7)
pub fn flag_mauritania() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F7}".to_string())
}

/// flag_Montserrat 🇲🇸 (U+1F1F2 U+1F1F8)
pub fn flag_montserrat() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F8}".to_string())
}

/// flag_Malta 🇲🇹 (U+1F1F2 U+1F1F9)
pub fn flag_malta() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1F9}".to_string())
}

/// flag_Mauritius 🇲🇺 (U+1F1F2 U+1F1FA)
pub fn flag_mauritius() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1FA}".to_string())
}

/// flag_Maldives 🇲🇻 (U+1F1F2 U+1F1FB)
pub fn flag_maldives() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1FB}".to_string())
}

/// flag_Malawi 🇲🇼 (U+1F1F2 U+1F1FC)
pub fn flag_malawi() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1FC}".to_string())
}

/// flag_Mexico 🇲🇽 (U+1F1F2 U+1F1FD)
pub fn flag_mexico() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1FD}".to_string())
}

/// flag_Malaysia 🇲🇾 (U+1F1F2 U+1F1FE)
pub fn flag_malaysia() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1FE}".to_string())
}

/// flag_Mozambique 🇲🇿 (U+1F1F2 U+1F1FF)
pub fn flag_mozambique() -> Emoticon {
    Emoticon("\u{1F1F2}\u{1F1FF}".to_string())
}

/// flag_Namibia 🇳🇦 (U+1F1F3 U+1F1E6)
pub fn flag_namibia() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1E6}".to_string())
}

/// flag_New_Caledonia 🇳🇨 (U+1F1F3 U+1F1E8)
pub fn flag_new_caledonia() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1E8}".to_string())
}

/// flag_Niger 🇳🇪 (U+1F1F3 U+1F1EA)
pub fn flag_niger() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1EA}".to_string())
}

/// flag_Norfolk_Island 🇳🇫 (U+1F1F3 U+1F1EB)
pub fn flag_norfolk_island() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1EB}".to_string())
}

/// flag_Nigeria 🇳🇬 (U+1F1F3 U+1F1EC)
pub fn flag_nigeria() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1EC}".to_string())
}

/// flag_Nicaragua 🇳🇮 (U+1F1F3 U+1F1EE)
pub fn flag_nicaragua() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1EE}".to_string())
}

/// flag_Netherlands 🇳🇱 (U+1F1F3 U+1F1F1)
pub fn flag_netherlands() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1F1}".to_string())
}

/// flag_Norway 🇳🇴 (U+1F1F3 U+1F1F4)
pub fn flag_norway() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1F4}".to_string())
}

/// flag_Nepal 🇳🇵 (U+1F1F3 U+1F1F5)
pub fn flag_nepal() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1F5}".to_string())
}

/// flag_Nauru 🇳🇷 (U+1F1F3 U+1F1F7)
pub fn flag_nauru() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1F7}".to_string())
}

/// flag_Niue 🇳🇺 (U+1F1F3 U+1F1FA)
pub fn flag_niue() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1FA}".to_string())
}

/// flag_New_Zealand 🇳🇿 (U+1F1F3 U+1F1FF)
pub fn flag_new_zealand() -> Emoticon {
    Emoticon("\u{1F1F3}\u{1F1FF}".to_string())
}

/// flag_Oman 🇴🇲 (U+1F1F4 U+1F1F2)
pub fn flag_oman() -> Emoticon {
    Emoticon("\u{1F1F4}\u{1F1F2}".to_string())
}

/// flag_French_Polynesia 🇵🇦 (U+1F1F5 U+1F1E6)
pub fn flag_french_polynesia() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1E6}".to_string())
}

/// flag_Papua_New_Guinea 🇵🇬 (U+1F1F5 U+1F1EC)
pub fn flag_papua_new_guinea() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1EC}".to_string())
}

/// flag_Philippines 🇵🇭 (U+1F1F5 U+1F1ED)
pub fn flag_philippines() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1ED}".to_string())
}

/// flag_Pakistan 🇵🇰 (U+1F1F5 U+1F1F0)
pub fn flag_pakistan() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1F0}".to_string())
}

/// flag_Poland 🇵🇱 (U+1F1F5 U+1F1F1)
pub fn flag_poland() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1F1}".to_string())
}

/// flag_St_Pierre_Miquelon 🇵🇲 (U+1F1F5 U+1F1F2)
pub fn flag_st_pierre_miquelon() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1F2}".to_string())
}

/// flag_Pitcairn_Islands 🇵🇳 (U+1F1F5 U+1F1F3)
pub fn flag_pitcairn_islands() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1F3}".to_string())
}

/// flag_Puerto_Rico 🇵🇷 (U+1F1F5 U+1F1F7)
pub fn flag_puerto_rico() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1F7}".to_string())
}

/// flag_Palestinian_Territories 🇵🇸 (U+1F1F5 U+1F1F8)
pub fn flag_palestinian_territories() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1F8}".to_string())
}

/// flag_Portugal 🇵🇹 (U+1F1F5 U+1F1F9)
pub fn flag_portugal() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1F9}".to_string())
}

/// flag_Palau 🇵🇼 (U+1F1F5 U+1F1FC)
pub fn flag_palau() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1FC}".to_string())
}

/// flag_Paraguay 🇵🇾 (U+1F1F5 U+1F1FE)
pub fn flag_paraguay() -> Emoticon {
    Emoticon("\u{1F1F5}\u{1F1FE}".to_string())
}

/// flag_Qatar 🇶🇦 (U+1F1F6 U+1F1E6)
pub fn flag_qatar() -> Emoticon {
    Emoticon("\u{1F1F6}\u{1F1E6}".to_string())
}

/// flag_R_union 🇷🇪 (U+1F1F7 U+1F1EA)
pub fn flag_r_union() -> Emoticon {
    Emoticon("\u{1F1F7}\u{1F1EA}".to_string())
}

/// flag_Romania 🇷🇴 (U+1F1F7 U+1F1F4)
pub fn flag_romania() -> Emoticon {
    Emoticon("\u{1F1F7}\u{1F1F4}".to_string())
}

/// flag_Serbia 🇷🇸 (U+1F1F7 U+1F1F8)
pub fn flag_serbia() -> Emoticon {
    Emoticon("\u{1F1F7}\u{1F1F8}".to_string())
}

/// flag_Russia 🇷🇺 (U+1F1F7 U+1F1FA)
pub fn flag_russia() -> Emoticon {
    Emoticon("\u{1F1F7}\u{1F1FA}".to_string())
}

/// flag_Rwanda 🇷🇼 (U+1F1F7 U+1F1FC)
pub fn flag_rwanda() -> Emoticon {
    Emoticon("\u{1F1F7}\u{1F1FC}".to_string())
}

/// flag_Saudi_Arabia 🇸🇦 (U+1F1F8 U+1F1E6)
pub fn flag_saudi_arabia() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1E6}".to_string())
}

/// flag_Solomon_Islands 🇸🇧 (U+1F1F8 U+1F1E7)
pub fn flag_solomon_islands() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1E7}".to_string())
}

/// flag_Seychelles 🇸🇨 (U+1F1F8 U+1F1E8)
pub fn flag_seychelles() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1E8}".to_string())
}

/// flag_Sudan 🇸🇩 (U+1F1F8 U+1F1E9)
pub fn flag_sudan() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1E9}".to_string())
}

/// flag_Sweden 🇸🇪 (U+1F1F8 U+1F1EA)
pub fn flag_sweden() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1EA}".to_string())
}

/// flag_Singapore 🇸🇬 (U+1F1F8 U+1F1EC)
pub fn flag_singapore() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1EC}".to_string())
}

/// flag_St_Helena 🇸🇭 (U+1F1F8 U+1F1ED)
pub fn flag_st_helena() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1ED}".to_string())
}

/// flag_Slovenia 🇸🇮 (U+1F1F8 U+1F1EE)
pub fn flag_slovenia() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1EE}".to_string())
}

/// flag_Svalbard_Jan_Mayen 🇸🇯 (U+1F1F8 U+1F1EF)
pub fn flag_svalbard_jan_mayen() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1EF}".to_string())
}

/// flag_Slovakia 🇸🇰 (U+1F1F8 U+1F1F0)
pub fn flag_slovakia() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F0}".to_string())
}

/// flag_Sierra_Leone 🇸🇱 (U+1F1F8 U+1F1F1)
pub fn flag_sierra_leone() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F1}".to_string())
}

/// flag_San_Marino 🇸🇲 (U+1F1F8 U+1F1F2)
pub fn flag_san_marino() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F2}".to_string())
}

/// flag_Senegal 🇸🇳 (U+1F1F8 U+1F1F3)
pub fn flag_senegal() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F3}".to_string())
}

/// flag_Somalia 🇸🇴 (U+1F1F8 U+1F1F4)
pub fn flag_somalia() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F4}".to_string())
}

/// flag_Suriname 🇸🇷 (U+1F1F8 U+1F1F7)
pub fn flag_suriname() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F7}".to_string())
}

/// flag_South_Sudan 🇸🇸 (U+1F1F8 U+1F1F8)
pub fn flag_south_sudan() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F8}".to_string())
}

/// flag_S_o_Tom_Pr_ncipe 🇸🇹 (U+1F1F8 U+1F1F9)
pub fn flag_s_o_tom_pr_ncipe() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1F9}".to_string())
}

/// flag_El_Salvador 🇸🇻 (U+1F1F8 U+1F1FB)
pub fn flag_el_salvador() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1FB}".to_string())
}

/// flag_Sint_Maarten 🇸🇽 (U+1F1F8 U+1F1FD)
pub fn flag_sint_maarten() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1FD}".to_string())
}

/// flag_Syria 🇸🇾 (U+1F1F8 U+1F1FE)
pub fn flag_syria() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1FE}".to_string())
}

/// flag_Eswatini 🇸🇿 (U+1F1F8 U+1F1FF)
pub fn flag_eswatini() -> Emoticon {
    Emoticon("\u{1F1F8}\u{1F1FF}".to_string())
}

/// flag_Tristan_da_Cunha 🇹🇦 (U+1F1F9 U+1F1E6)
pub fn flag_tristan_da_cunha() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1E6}".to_string())
}

/// flag_Turks_Caicos_Islands 🇹🇨 (U+1F1F9 U+1F1E8)
pub fn flag_turks_caicos_islands() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1E8}".to_string())
}

/// flag_Chad 🇹🇩 (U+1F1F9 U+1F1E9)
pub fn flag_chad() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1E9}".to_string())
}

/// flag_French_Southern_Territories 🇹🇫 (U+1F1F9 U+1F1EB)
pub fn flag_french_southern_territories() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1EB}".to_string())
}

/// flag_Togo 🇹🇬 (U+1F1F9 U+1F1EC)
pub fn flag_togo() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1EC}".to_string())
}

/// flag_Thailand 🇹🇭 (U+1F1F9 U+1F1ED)
pub fn flag_thailand() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1ED}".to_string())
}

/// flag_Tajikistan 🇹🇯 (U+1F1F9 U+1F1EF)
pub fn flag_tajikistan() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1EF}".to_string())
}

/// flag_Tokelau 🇹🇰 (U+1F1F9 U+1F1F0)
pub fn flag_tokelau() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1F0}".to_string())
}

/// flag_Timor_Leste 🇹🇱 (U+1F1F9 U+1F1F1)
pub fn flag_timor_leste() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1F1}".to_string())
}

/// flag_Turkmenistan 🇹🇲 (U+1F1F9 U+1F1F2)
pub fn flag_turkmenistan() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1F2}".to_string())
}

/// flag_Tunisia 🇹🇳 (U+1F1F9 U+1F1F3)
pub fn flag_tunisia() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1F3}".to_string())
}

/// flag_Tonga 🇹🇴 (U+1F1F9 U+1F1F4)
pub fn flag_tonga() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1F4}".to_string())
}

/// flag_T_rkiye 🇹🇷 (U+1F1F9 U+1F1F7)
pub fn flag_t_rkiye() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1F7}".to_string())
}

/// flag_Trinidad_Tobago 🇹🇹 (U+1F1F9 U+1F1F9)
pub fn flag_trinidad_tobago() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1F9}".to_string())
}

/// flag_Tuvalu 🇹🇻 (U+1F1F9 U+1F1FB)
pub fn flag_tuvalu() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1FB}".to_string())
}

/// flag_Taiwan 🇹🇼 (U+1F1F9 U+1F1FC)
pub fn flag_taiwan() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1FC}".to_string())
}

/// flag_Tanzania 🇹🇿 (U+1F1F9 U+1F1FF)
pub fn flag_tanzania() -> Emoticon {
    Emoticon("\u{1F1F9}\u{1F1FF}".to_string())
}

/// flag_Ukraine 🇺🇦 (U+1F1FA U+1F1E6)
pub fn flag_ukraine() -> Emoticon {
    Emoticon("\u{1F1FA}\u{1F1E6}".to_string())
}

/// flag_Uganda 🇺🇬 (U+1F1FA U+1F1EC)
pub fn flag_uganda() -> Emoticon {
    Emoticon("\u{1F1FA}\u{1F1EC}".to_string())
}

/// flag_U_S_Outlying_Islands 🇺🇲 (U+1F1FA U+1F1F2)
pub fn flag_u_s_outlying_islands() -> Emoticon {
    Emoticon("\u{1F1FA}\u{1F1F2}".to_string())
}

/// flag_United_Nations 🇺🇳 (U+1F1FA U+1F1F3)
pub fn flag_united_nations() -> Emoticon {
    Emoticon("\u{1F1FA}\u{1F1F3}".to_string())
}

/// flag_United_States 🇺🇸 (U+1F1FA U+1F1F8)
pub fn flag_united_states() -> Emoticon {
    Emoticon("\u{1F1FA}\u{1F1F8}".to_string())
}

/// flag_Uruguay 🇺🇾 (U+1F1FA U+1F1FE)
pub fn flag_uruguay() -> Emoticon {
    Emoticon("\u{1F1FA}\u{1F1FE}".to_string())
}

/// flag_Uzbekistan 🇺🇿 (U+1F1FA U+1F1FF)
pub fn flag_uzbekistan() -> Emoticon {
    Emoticon("\u{1F1FA}\u{1F1FF}".to_string())
}

/// flag_Vatican_City 🇻🇦 (U+1F1FB U+1F1E6)
pub fn flag_vatican_city() -> Emoticon {
    Emoticon("\u{1F1FB}\u{1F1E6}".to_string())
}

/// flag_St_Vincent_Grenadines 🇻🇨 (U+1F1FB U+1F1E8)
pub fn flag_st_vincent_grenadines() -> Emoticon {
    Emoticon("\u{1F1FB}\u{1F1E8}".to_string())
}

/// flag_Venezuela 🇻🇪 (U+1F1FB U+1F1EA)
pub fn flag_venezuela() -> Emoticon {
    Emoticon("\u{1F1FB}\u{1F1EA}".to_string())
}

/// flag_British_Virgin_Islands 🇻🇬 (U+1F1FB U+1F1EC)
pub fn flag_british_virgin_islands() -> Emoticon {
    Emoticon("\u{1F1FB}\u{1F1EC}".to_string())
}

/// flag_U_S_Virgin_Islands 🇻🇮 (U+1F1FB U+1F1EE)
pub fn flag_u_s_virgin_islands() -> Emoticon {
    Emoticon("\u{1F1FB}\u{1F1EE}".to_string())
}

/// flag_Vietnam 🇻🇳 (U+1F1FB U+1F1F3)
pub fn flag_vietnam() -> Emoticon {
    Emoticon("\u{1F1FB}\u{1F1F3}".to_string())
}

/// flag_Vanuatu 🇻🇺 (U+1F1FB U+1F1FA)
pub fn flag_vanuatu() -> Emoticon {
    Emoticon("\u{1F1FB}\u{1F1FA}".to_string())
}

/// flag_Wallis_Futuna 🇼🇫 (U+1F1FC U+1F1EB)
pub fn flag_wallis_futuna() -> Emoticon {
    Emoticon("\u{1F1FC}\u{1F1EB}".to_string())
}

/// flag_Samoa 🇼🇸 (U+1F1FC U+1F1F8)
pub fn flag_samoa() -> Emoticon {
    Emoticon("\u{1F1FC}\u{1F1F8}".to_string())
}

/// flag_Kosovo 🇽🇰 (U+1F1FD U+1F1F0)
pub fn flag_kosovo() -> Emoticon {
    Emoticon("\u{1F1FD}\u{1F1F0}".to_string())
}

/// flag_Yemen 🇾🇪 (U+1F1FE U+1F1EA)
pub fn flag_yemen() -> Emoticon {
    Emoticon("\u{1F1FE}\u{1F1EA}".to_string())
}

/// flag_Mayotte 🇾🇹 (U+1F1FE U+1F1F9)
pub fn flag_mayotte() -> Emoticon {
    Emoticon("\u{1F1FE}\u{1F1F9}".to_string())
}

/// flag_South_Africa 🇿🇦 (U+1F1FF U+1F1E6)
pub fn flag_south_africa() -> Emoticon {
    Emoticon("\u{1F1FF}\u{1F1E6}".to_string())
}

/// flag_Zambia 🇿🇲 (U+1F1FF U+1F1F2)
pub fn flag_zambia() -> Emoticon {
    Emoticon("\u{1F1FF}\u{1F1F2}".to_string())
}

/// flag_Zimbabwe 🇿🇼 (U+1F1FF U+1F1FC)
pub fn flag_zimbabwe() -> Emoticon {
    Emoticon("\u{1F1FF}\u{1F1FC}".to_string())
}

/// flag_England 🏴󠁧󠁢󠁥󠁮󠁧󠁿 (U+1F3F4 U+E0067 U+E0062 U+E0065 U+E006E U+E0067 U+E007F)
pub fn flag_england() -> Emoticon {
    Emoticon("\u{1F3F4}\u{E0067}\u{E0062}\u{E0065}\u{E006E}\u{E0067}\u{E007F}".to_string())
}

/// flag_Scotland 🏴󠁧󠁢󠁳󠁣󠁴󠁿 (U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F)
pub fn flag_scotland() -> Emoticon {
    Emoticon("\u{1F3F4}\u{E0067}\u{E0062}\u{E0073}\u{E0063}\u{E0074}\u{E007F}".to_string())
}

/// flag_Wales 🏴󠁧󠁢󠁷󠁬󠁳󠁿 (U+1F3F4 U+E0067 U+E0062 U+E0077 U+E006C U+E0073 U+E007F)
pub fn flag_wales() -> Emoticon {
    Emoticon("\u{1F3F4}\u{E0067}\u{E0062}\u{E0077}\u{E006C}\u{E0073}\u{E007F}".to_string())
}