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
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
|
{
"100": "๐ฏ",
"1234": "๐ข",
"grinning": "๐",
"smiley": "๐",
"smile": "๐",
"grin": "๐",
"laughing": "๐",
"satisfied": "๐",
"sweat_smile": "๐
",
"joy": "๐",
"rofl": "๐คฃ",
"relaxed": "โบ๏ธ",
"blush": "๐",
"innocent": "๐",
"slightly_smiling_face": "๐",
"upside_down_face": "๐",
"wink": "๐",
"relieved": "๐",
"heart_eyes": "๐",
"kissing_heart": "๐",
"kissing": "๐",
"kissing_smiling_eyes": "๐",
"kissing_closed_eyes": "๐",
"yum": "๐",
"stuck_out_tongue_winking_eye": "๐",
"stuck_out_tongue_closed_eyes": "๐",
"stuck_out_tongue": "๐",
"money_mouth_face": "๐ค",
"hugs": "๐ค",
"nerd_face": "๐ค",
"sunglasses": "๐",
"clown_face": "๐คก",
"cowboy_hat_face": "๐ค ",
"smirk": "๐",
"unamused": "๐",
"disappointed": "๐",
"pensive": "๐",
"worried": "๐",
"confused": "๐",
"slightly_frowning_face": "๐",
"frowning_face": "โน๏ธ",
"persevere": "๐ฃ",
"confounded": "๐",
"tired_face": "๐ซ",
"weary": "๐ฉ",
"triumph": "๐ค",
"angry": "๐ ",
"rage": "๐ก",
"pout": "๐ก",
"no_mouth": "๐ถ",
"neutral_face": "๐",
"expressionless": "๐",
"hushed": "๐ฏ",
"frowning": "๐ฆ",
"anguished": "๐ง",
"open_mouth": "๐ฎ",
"astonished": "๐ฒ",
"dizzy_face": "๐ต",
"flushed": "๐ณ",
"scream": "๐ฑ",
"fearful": "๐จ",
"cold_sweat": "๐ฐ",
"cry": "๐ข",
"disappointed_relieved": "๐ฅ",
"drooling_face": "๐คค",
"sob": "๐ญ",
"sweat": "๐",
"sleepy": "๐ช",
"sleeping": "๐ด",
"roll_eyes": "๐",
"thinking": "๐ค",
"lying_face": "๐คฅ",
"grimacing": "๐ฌ",
"zipper_mouth_face": "๐ค",
"nauseated_face": "๐คข",
"sneezing_face": "๐คง",
"mask": "๐ท",
"face_with_thermometer": "๐ค",
"face_with_head_bandage": "๐ค",
"smiling_imp": "๐",
"imp": "๐ฟ",
"japanese_ogre": "๐น",
"japanese_goblin": "๐บ",
"hankey": "๐ฉ",
"poop": "๐ฉ",
"shit": "๐ฉ",
"ghost": "๐ป",
"skull": "๐",
"skull_and_crossbones": "โ ๏ธ",
"alien": "๐ฝ",
"space_invader": "๐พ",
"robot": "๐ค",
"jack_o_lantern": "๐",
"smiley_cat": "๐บ",
"smile_cat": "๐ธ",
"joy_cat": "๐น",
"heart_eyes_cat": "๐ป",
"smirk_cat": "๐ผ",
"kissing_cat": "๐ฝ",
"scream_cat": "๐",
"crying_cat_face": "๐ฟ",
"pouting_cat": "๐พ",
"open_hands": "๐",
"raised_hands": "๐",
"clap": "๐",
"pray": "๐",
"handshake": "๐ค",
"+1": "๐",
"thumbsup": "๐",
"-1": "๐",
"thumbsdown": "๐",
"fist_oncoming": "๐",
"facepunch": "๐",
"punch": "๐",
"fist_raised": "โ",
"fist": "โ",
"fist_left": "๐ค",
"fist_right": "๐ค",
"crossed_fingers": "๐ค",
"v": "โ๏ธ",
"metal": "๐ค",
"ok_hand": "๐",
"point_left": "๐",
"point_right": "๐",
"point_up_2": "๐",
"point_down": "๐",
"point_up": "โ๏ธ",
"hand": "โ",
"raised_hand": "โ",
"raised_back_of_hand": "๐ค",
"raised_hand_with_fingers_splayed": "๐",
"vulcan_salute": "๐",
"wave": "๐",
"call_me_hand": "๐ค",
"muscle": "๐ช",
"middle_finger": "๐",
"fu": "๐",
"writing_hand": "โ๏ธ",
"selfie": "๐คณ",
"nail_care": "๐
",
"ring": "๐",
"lipstick": "๐",
"kiss": "๐",
"lips": "๐",
"tongue": "๐
",
"ear": "๐",
"nose": "๐",
"footprints": "๐ฃ",
"eye": "๐",
"eyes": "๐",
"speaking_head": "๐ฃ",
"bust_in_silhouette": "๐ค",
"busts_in_silhouette": "๐ฅ",
"baby": "๐ถ",
"boy": "๐ฆ",
"girl": "๐ง",
"man": "๐จ",
"woman": "๐ฉ",
"blonde_woman": "๐ฑโโ",
"blonde_man": "๐ฑ",
"person_with_blond_hair": "๐ฑ",
"older_man": "๐ด",
"older_woman": "๐ต",
"man_with_gua_pi_mao": "๐ฒ",
"woman_with_turban": "๐ณโโ",
"man_with_turban": "๐ณ",
"policewoman": "๐ฎโโ",
"policeman": "๐ฎ",
"cop": "๐ฎ",
"construction_worker_woman": "๐ทโโ",
"construction_worker_man": "๐ท",
"construction_worker": "๐ท",
"guardswoman": "๐โโ",
"guardsman": "๐",
"female_detective": "๐ต๏ธโโ๏ธ",
"male_detective": "๐ต",
"detective": "๐ต",
"woman_health_worker": "๐ฉโโ",
"man_health_worker": "๐จโโ",
"woman_farmer": "๐ฉโ๐พ",
"man_farmer": "๐จโ๐พ",
"woman_cook": "๐ฉโ๐ณ",
"man_cook": "๐จโ๐ณ",
"woman_student": "๐ฉโ๐",
"man_student": "๐จโ๐",
"woman_singer": "๐ฉโ๐ค",
"man_singer": "๐จโ๐ค",
"woman_teacher": "๐ฉโ๐ซ",
"man_teacher": "๐จโ๐ซ",
"woman_factory_worker": "๐ฉโ๐ญ",
"man_factory_worker": "๐จโ๐ญ",
"woman_technologist": "๐ฉโ๐ป",
"man_technologist": "๐จโ๐ป",
"woman_office_worker": "๐ฉโ๐ผ",
"man_office_worker": "๐จโ๐ผ",
"woman_mechanic": "๐ฉโ๐ง",
"man_mechanic": "๐จโ๐ง",
"woman_scientist": "๐ฉโ๐ฌ",
"man_scientist": "๐จโ๐ฌ",
"woman_artist": "๐ฉโ๐จ",
"man_artist": "๐จโ๐จ",
"woman_firefighter": "๐ฉโ๐",
"man_firefighter": "๐จโ๐",
"woman_pilot": "๐ฉโโ",
"man_pilot": "๐จโโ",
"woman_astronaut": "๐ฉโ๐",
"man_astronaut": "๐จโ๐",
"woman_judge": "๐ฉโโ",
"man_judge": "๐จโโ",
"mrs_claus": "๐คถ",
"santa": "๐
",
"princess": "๐ธ",
"prince": "๐คด",
"bride_with_veil": "๐ฐ",
"man_in_tuxedo": "๐คต",
"angel": "๐ผ",
"pregnant_woman": "๐คฐ",
"bowing_woman": "๐โโ",
"bowing_man": "๐",
"bow": "๐",
"tipping_hand_woman": "๐",
"information_desk_person": "๐",
"sassy_woman": "๐",
"tipping_hand_man": "๐โโ",
"sassy_man": "๐โโ",
"no_good_woman": "๐
",
"no_good": "๐
",
"ng_woman": "๐
",
"no_good_man": "๐
โโ",
"ng_man": "๐
โโ",
"ok_woman": "๐",
"ok_man": "๐โโ",
"raising_hand_woman": "๐",
"raising_hand": "๐",
"raising_hand_man": "๐โโ",
"woman_facepalming": "๐คฆโโ",
"man_facepalming": "๐คฆโโ",
"woman_shrugging": "๐คทโโ",
"man_shrugging": "๐คทโโ",
"pouting_woman": "๐",
"person_with_pouting_face": "๐",
"pouting_man": "๐โโ",
"frowning_woman": "๐",
"person_frowning": "๐",
"frowning_man": "๐โโ",
"haircut_woman": "๐",
"haircut": "๐",
"haircut_man": "๐โโ",
"massage_woman": "๐",
"massage": "๐",
"massage_man": "๐โโ",
"business_suit_levitating": "๐ด",
"dancer": "๐",
"man_dancing": "๐บ",
"dancing_women": "๐ฏ",
"dancers": "๐ฏ",
"dancing_men": "๐ฏโโ",
"walking_woman": "๐ถโโ",
"walking_man": "๐ถ",
"walking": "๐ถ",
"running_woman": "๐โโ",
"running_man": "๐",
"runner": "๐",
"running": "๐",
"couple": "๐ซ",
"two_women_holding_hands": "๐ญ",
"two_men_holding_hands": "๐ฌ",
"couple_with_heart_woman_man": "๐",
"couple_with_heart": "๐",
"couple_with_heart_woman_woman": "๐ฉโโค๏ธโ๐ฉ",
"couple_with_heart_man_man": "๐จโโค๏ธโ๐จ",
"couplekiss_man_woman": "๐",
"couplekiss_woman_woman": "๐ฉโโค๏ธโ๐โ๐ฉ",
"couplekiss_man_man": "๐จโโค๏ธโ๐โ๐จ",
"family_man_woman_boy": "๐ช",
"family": "๐ช",
"family_man_woman_girl": "๐จโ๐ฉโ๐ง",
"family_man_woman_girl_boy": "๐จโ๐ฉโ๐งโ๐ฆ",
"family_man_woman_boy_boy": "๐จโ๐ฉโ๐ฆโ๐ฆ",
"family_man_woman_girl_girl": "๐จโ๐ฉโ๐งโ๐ง",
"family_woman_woman_boy": "๐ฉโ๐ฉโ๐ฆ",
"family_woman_woman_girl": "๐ฉโ๐ฉโ๐ง",
"family_woman_woman_girl_boy": "๐ฉโ๐ฉโ๐งโ๐ฆ",
"family_woman_woman_boy_boy": "๐ฉโ๐ฉโ๐ฆโ๐ฆ",
"family_woman_woman_girl_girl": "๐ฉโ๐ฉโ๐งโ๐ง",
"family_man_man_boy": "๐จโ๐จโ๐ฆ",
"family_man_man_girl": "๐จโ๐จโ๐ง",
"family_man_man_girl_boy": "๐จโ๐จโ๐งโ๐ฆ",
"family_man_man_boy_boy": "๐จโ๐จโ๐ฆโ๐ฆ",
"family_man_man_girl_girl": "๐จโ๐จโ๐งโ๐ง",
"family_woman_boy": "๐ฉโ๐ฆ",
"family_woman_girl": "๐ฉโ๐ง",
"family_woman_girl_boy": "๐ฉโ๐งโ๐ฆ",
"family_woman_boy_boy": "๐ฉโ๐ฆโ๐ฆ",
"family_woman_girl_girl": "๐ฉโ๐งโ๐ง",
"family_man_boy": "๐จโ๐ฆ",
"family_man_girl": "๐จโ๐ง",
"family_man_girl_boy": "๐จโ๐งโ๐ฆ",
"family_man_boy_boy": "๐จโ๐ฆโ๐ฆ",
"family_man_girl_girl": "๐จโ๐งโ๐ง",
"womans_clothes": "๐",
"shirt": "๐",
"tshirt": "๐",
"jeans": "๐",
"necktie": "๐",
"dress": "๐",
"bikini": "๐",
"kimono": "๐",
"high_heel": "๐ ",
"sandal": "๐ก",
"boot": "๐ข",
"mans_shoe": "๐",
"shoe": "๐",
"athletic_shoe": "๐",
"womans_hat": "๐",
"tophat": "๐ฉ",
"mortar_board": "๐",
"crown": "๐",
"rescue_worker_helmet": "โ",
"school_satchel": "๐",
"pouch": "๐",
"purse": "๐",
"handbag": "๐",
"briefcase": "๐ผ",
"eyeglasses": "๐",
"dark_sunglasses": "๐ถ",
"closed_umbrella": "๐",
"open_umbrella": "โ๏ธ",
"dog": "๐ถ",
"cat": "๐ฑ",
"mouse": "๐ญ",
"hamster": "๐น",
"rabbit": "๐ฐ",
"fox_face": "๐ฆ",
"bear": "๐ป",
"panda_face": "๐ผ",
"koala": "๐จ",
"tiger": "๐ฏ",
"lion": "๐ฆ",
"cow": "๐ฎ",
"pig": "๐ท",
"pig_nose": "๐ฝ",
"frog": "๐ธ",
"monkey_face": "๐ต",
"see_no_evil": "๐",
"hear_no_evil": "๐",
"speak_no_evil": "๐",
"monkey": "๐",
"chicken": "๐",
"penguin": "๐ง",
"bird": "๐ฆ",
"baby_chick": "๐ค",
"hatching_chick": "๐ฃ",
"hatched_chick": "๐ฅ",
"duck": "๐ฆ",
"eagle": "๐ฆ
",
"owl": "๐ฆ",
"bat": "๐ฆ",
"wolf": "๐บ",
"boar": "๐",
"horse": "๐ด",
"unicorn": "๐ฆ",
"bee": "๐",
"honeybee": "๐",
"bug": "๐",
"butterfly": "๐ฆ",
"snail": "๐",
"shell": "๐",
"beetle": "๐",
"ant": "๐",
"spider": "๐ท",
"spider_web": "๐ธ",
"turtle": "๐ข",
"snake": "๐",
"lizard": "๐ฆ",
"scorpion": "๐ฆ",
"crab": "๐ฆ",
"squid": "๐ฆ",
"octopus": "๐",
"shrimp": "๐ฆ",
"tropical_fish": "๐ ",
"fish": "๐",
"blowfish": "๐ก",
"dolphin": "๐ฌ",
"flipper": "๐ฌ",
"shark": "๐ฆ",
"whale": "๐ณ",
"whale2": "๐",
"crocodile": "๐",
"leopard": "๐",
"tiger2": "๐
",
"water_buffalo": "๐",
"ox": "๐",
"cow2": "๐",
"deer": "๐ฆ",
"dromedary_camel": "๐ช",
"camel": "๐ซ",
"elephant": "๐",
"rhinoceros": "๐ฆ",
"gorilla": "๐ฆ",
"racehorse": "๐",
"pig2": "๐",
"goat": "๐",
"ram": "๐",
"sheep": "๐",
"dog2": "๐",
"poodle": "๐ฉ",
"cat2": "๐",
"rooster": "๐",
"turkey": "๐ฆ",
"dove": "๐",
"rabbit2": "๐",
"mouse2": "๐",
"rat": "๐",
"chipmunk": "๐ฟ",
"feet": "๐พ",
"paw_prints": "๐พ",
"dragon": "๐",
"dragon_face": "๐ฒ",
"cactus": "๐ต",
"christmas_tree": "๐",
"evergreen_tree": "๐ฒ",
"deciduous_tree": "๐ณ",
"palm_tree": "๐ด",
"seedling": "๐ฑ",
"herb": "๐ฟ",
"shamrock": "โ๏ธ",
"four_leaf_clover": "๐",
"bamboo": "๐",
"tanabata_tree": "๐",
"leaves": "๐",
"fallen_leaf": "๐",
"maple_leaf": "๐",
"mushroom": "๐",
"ear_of_rice": "๐พ",
"bouquet": "๐",
"tulip": "๐ท",
"rose": "๐น",
"wilted_flower": "๐ฅ",
"sunflower": "๐ป",
"blossom": "๐ผ",
"cherry_blossom": "๐ธ",
"hibiscus": "๐บ",
"earth_americas": "๐",
"earth_africa": "๐",
"earth_asia": "๐",
"full_moon": "๐",
"waning_gibbous_moon": "๐",
"last_quarter_moon": "๐",
"waning_crescent_moon": "๐",
"new_moon": "๐",
"waxing_crescent_moon": "๐",
"first_quarter_moon": "๐",
"moon": "๐",
"waxing_gibbous_moon": "๐",
"new_moon_with_face": "๐",
"full_moon_with_face": "๐",
"sun_with_face": "๐",
"first_quarter_moon_with_face": "๐",
"last_quarter_moon_with_face": "๐",
"crescent_moon": "๐",
"dizzy": "๐ซ",
"star": "โญ๏ธ",
"star2": "๐",
"sparkles": "โจ",
"zap": "โก๏ธ",
"fire": "๐ฅ",
"boom": "๐ฅ",
"collision": "๐ฅ",
"comet": "โ",
"sunny": "โ๏ธ",
"sun_behind_small_cloud": "๐ค",
"partly_sunny": "โ
๏ธ",
"sun_behind_large_cloud": "๐ฅ",
"sun_behind_rain_cloud": "๐ฆ",
"rainbow": "๐",
"cloud": "โ๏ธ",
"cloud_with_rain": "๐ง",
"cloud_with_lightning_and_rain": "โ",
"cloud_with_lightning": "๐ฉ",
"cloud_with_snow": "๐จ",
"snowman_with_snow": "โ๏ธ",
"snowman": "โ๏ธ",
"snowflake": "โ๏ธ",
"wind_face": "๐ฌ",
"dash": "๐จ",
"tornado": "๐ช",
"fog": "๐ซ",
"ocean": "๐",
"droplet": "๐ง",
"sweat_drops": "๐ฆ",
"umbrella": "โ๏ธ",
"green_apple": "๐",
"apple": "๐",
"pear": "๐",
"tangerine": "๐",
"orange": "๐",
"mandarin": "๐",
"lemon": "๐",
"banana": "๐",
"watermelon": "๐",
"grapes": "๐",
"strawberry": "๐",
"melon": "๐",
"cherries": "๐",
"peach": "๐",
"pineapple": "๐",
"kiwi_fruit": "๐ฅ",
"avocado": "๐ฅ",
"tomato": "๐
",
"eggplant": "๐",
"cucumber": "๐ฅ",
"carrot": "๐ฅ",
"corn": "๐ฝ",
"hot_pepper": "๐ถ",
"potato": "๐ฅ",
"sweet_potato": "๐ ",
"chestnut": "๐ฐ",
"peanuts": "๐ฅ",
"honey_pot": "๐ฏ",
"croissant": "๐ฅ",
"bread": "๐",
"baguette_bread": "๐ฅ",
"cheese": "๐ง",
"egg": "๐ฅ",
"fried_egg": "๐ณ",
"bacon": "๐ฅ",
"pancakes": "๐ฅ",
"fried_shrimp": "๐ค",
"poultry_leg": "๐",
"meat_on_bone": "๐",
"pizza": "๐",
"hotdog": "๐ญ",
"hamburger": "๐",
"fries": "๐",
"stuffed_flatbread": "๐ฅ",
"taco": "๐ฎ",
"burrito": "๐ฏ",
"green_salad": "๐ฅ",
"shallow_pan_of_food": "๐ฅ",
"spaghetti": "๐",
"ramen": "๐",
"stew": "๐ฒ",
"fish_cake": "๐ฅ",
"sushi": "๐ฃ",
"bento": "๐ฑ",
"curry": "๐",
"rice": "๐",
"rice_ball": "๐",
"rice_cracker": "๐",
"oden": "๐ข",
"dango": "๐ก",
"shaved_ice": "๐ง",
"ice_cream": "๐จ",
"icecream": "๐ฆ",
"cake": "๐ฐ",
"birthday": "๐",
"custard": "๐ฎ",
"lollipop": "๐ญ",
"candy": "๐ฌ",
"chocolate_bar": "๐ซ",
"popcorn": "๐ฟ",
"doughnut": "๐ฉ",
"cookie": "๐ช",
"milk_glass": "๐ฅ",
"baby_bottle": "๐ผ",
"coffee": "โ๏ธ",
"tea": "๐ต",
"sake": "๐ถ",
"beer": "๐บ",
"beers": "๐ป",
"clinking_glasses": "๐ฅ",
"wine_glass": "๐ท",
"tumbler_glass": "๐ฅ",
"cocktail": "๐ธ",
"tropical_drink": "๐น",
"champagne": "๐พ",
"spoon": "๐ฅ",
"fork_and_knife": "๐ด",
"plate_with_cutlery": "๐ฝ",
"soccer": "โฝ๏ธ",
"basketball": "๐",
"football": "๐",
"baseball": "โพ๏ธ",
"tennis": "๐พ",
"volleyball": "๐",
"rugby_football": "๐",
"8ball": "๐ฑ",
"ping_pong": "๐",
"badminton": "๐ธ",
"goal_net": "๐ฅ
",
"ice_hockey": "๐",
"field_hockey": "๐",
"cricket": "๐",
"golf": "โณ๏ธ",
"bow_and_arrow": "๐น",
"fishing_pole_and_fish": "๐ฃ",
"boxing_glove": "๐ฅ",
"martial_arts_uniform": "๐ฅ",
"ice_skate": "โธ",
"ski": "๐ฟ",
"skier": "โท",
"snowboarder": "๐",
"weight_lifting_woman": "๐๏ธโโ๏ธ",
"weight_lifting_man": "๐",
"person_fencing": "๐คบ",
"women_wrestling": "๐คผโโ",
"men_wrestling": "๐คผโโ",
"woman_cartwheeling": "๐คธโโ",
"man_cartwheeling": "๐คธโโ",
"basketball_woman": "โน๏ธโโ๏ธ",
"basketball_man": "โน",
"woman_playing_handball": "๐คพโโ",
"man_playing_handball": "๐คพโโ",
"golfing_woman": "๐๏ธโโ๏ธ",
"golfing_man": "๐",
"surfing_woman": "๐โโ",
"surfing_man": "๐",
"surfer": "๐",
"swimming_woman": "๐โโ",
"swimming_man": "๐",
"swimmer": "๐",
"woman_playing_water_polo": "๐คฝโโ",
"man_playing_water_polo": "๐คฝโโ",
"rowing_woman": "๐ฃโโ",
"rowing_man": "๐ฃ",
"rowboat": "๐ฃ",
"horse_racing": "๐",
"biking_woman": "๐ดโโ",
"biking_man": "๐ด",
"bicyclist": "๐ด",
"mountain_biking_woman": "๐ตโโ",
"mountain_biking_man": "๐ต",
"mountain_bicyclist": "๐ต",
"running_shirt_with_sash": "๐ฝ",
"medal_sports": "๐
",
"medal_military": "๐",
"1st_place_medal": "๐ฅ",
"2nd_place_medal": "๐ฅ",
"3rd_place_medal": "๐ฅ",
"trophy": "๐",
"rosette": "๐ต",
"reminder_ribbon": "๐",
"ticket": "๐ซ",
"tickets": "๐",
"circus_tent": "๐ช",
"woman_juggling": "๐คนโโ",
"man_juggling": "๐คนโโ",
"performing_arts": "๐ญ",
"art": "๐จ",
"clapper": "๐ฌ",
"microphone": "๐ค",
"headphones": "๐ง",
"musical_score": "๐ผ",
"musical_keyboard": "๐น",
"drum": "๐ฅ",
"saxophone": "๐ท",
"trumpet": "๐บ",
"guitar": "๐ธ",
"violin": "๐ป",
"game_die": "๐ฒ",
"dart": "๐ฏ",
"bowling": "๐ณ",
"video_game": "๐ฎ",
"slot_machine": "๐ฐ",
"car": "๐",
"red_car": "๐",
"taxi": "๐",
"blue_car": "๐",
"bus": "๐",
"trolleybus": "๐",
"racing_car": "๐",
"police_car": "๐",
"ambulance": "๐",
"fire_engine": "๐",
"minibus": "๐",
"truck": "๐",
"articulated_lorry": "๐",
"tractor": "๐",
"kick_scooter": "๐ด",
"bike": "๐ฒ",
"motor_scooter": "๐ต",
"motorcycle": "๐",
"rotating_light": "๐จ",
"oncoming_police_car": "๐",
"oncoming_bus": "๐",
"oncoming_automobile": "๐",
"oncoming_taxi": "๐",
"aerial_tramway": "๐ก",
"mountain_cableway": "๐ ",
"suspension_railway": "๐",
"railway_car": "๐",
"train": "๐",
"mountain_railway": "๐",
"monorail": "๐",
"bullettrain_side": "๐",
"bullettrain_front": "๐
",
"light_rail": "๐",
"steam_locomotive": "๐",
"train2": "๐",
"metro": "๐",
"tram": "๐",
"station": "๐",
"helicopter": "๐",
"small_airplane": "๐ฉ",
"airplane": "โ๏ธ",
"flight_departure": "๐ซ",
"flight_arrival": "๐ฌ",
"rocket": "๐",
"artificial_satellite": "๐ฐ",
"seat": "๐บ",
"canoe": "๐ถ",
"boat": "โต๏ธ",
"sailboat": "โต๏ธ",
"motor_boat": "๐ฅ",
"speedboat": "๐ค",
"passenger_ship": "๐ณ",
"ferry": "โด",
"ship": "๐ข",
"anchor": "โ๏ธ",
"construction": "๐ง",
"fuelpump": "โฝ๏ธ",
"busstop": "๐",
"vertical_traffic_light": "๐ฆ",
"traffic_light": "๐ฅ",
"world_map": "๐บ",
"moyai": "๐ฟ",
"statue_of_liberty": "๐ฝ",
"fountain": "โฒ๏ธ",
"tokyo_tower": "๐ผ",
"european_castle": "๐ฐ",
"japanese_castle": "๐ฏ",
"stadium": "๐",
"ferris_wheel": "๐ก",
"roller_coaster": "๐ข",
"carousel_horse": "๐ ",
"parasol_on_ground": "โฑ",
"beach_umbrella": "๐",
"desert_island": "๐",
"mountain": "โฐ",
"mountain_snow": "๐",
"mount_fuji": "๐ป",
"volcano": "๐",
"desert": "๐",
"camping": "๐",
"tent": "โบ๏ธ",
"railway_track": "๐ค",
"motorway": "๐ฃ",
"building_construction": "๐",
"factory": "๐ญ",
"house": "๐ ",
"house_with_garden": "๐ก",
"houses": "๐",
"derelict_house": "๐",
"office": "๐ข",
"department_store": "๐ฌ",
"post_office": "๐ฃ",
"european_post_office": "๐ค",
"hospital": "๐ฅ",
"bank": "๐ฆ",
"hotel": "๐จ",
"convenience_store": "๐ช",
"school": "๐ซ",
"love_hotel": "๐ฉ",
"wedding": "๐",
"classical_building": "๐",
"church": "โช๏ธ",
"mosque": "๐",
"synagogue": "๐",
"kaaba": "๐",
"shinto_shrine": "โฉ",
"japan": "๐พ",
"rice_scene": "๐",
"national_park": "๐",
"sunrise": "๐
",
"sunrise_over_mountains": "๐",
"stars": "๐ ",
"sparkler": "๐",
"fireworks": "๐",
"city_sunrise": "๐",
"city_sunset": "๐",
"cityscape": "๐",
"night_with_stars": "๐",
"milky_way": "๐",
"bridge_at_night": "๐",
"foggy": "๐",
"watch": "โ๏ธ",
"iphone": "๐ฑ",
"calling": "๐ฒ",
"computer": "๐ป",
"keyboard": "โจ๏ธ",
"desktop_computer": "๐ฅ",
"printer": "๐จ",
"computer_mouse": "๐ฑ",
"trackball": "๐ฒ",
"joystick": "๐น",
"clamp": "๐",
"minidisc": "๐ฝ",
"floppy_disk": "๐พ",
"cd": "๐ฟ",
"dvd": "๐",
"vhs": "๐ผ",
"camera": "๐ท",
"camera_flash": "๐ธ",
"video_camera": "๐น",
"movie_camera": "๐ฅ",
"film_projector": "๐ฝ",
"film_strip": "๐",
"telephone_receiver": "๐",
"phone": "โ๏ธ",
"telephone": "โ๏ธ",
"pager": "๐",
"fax": "๐ ",
"tv": "๐บ",
"radio": "๐ป",
"studio_microphone": "๐",
"level_slider": "๐",
"control_knobs": "๐",
"stopwatch": "โฑ",
"timer_clock": "โฒ",
"alarm_clock": "โฐ",
"mantelpiece_clock": "๐ฐ",
"hourglass": "โ๏ธ",
"hourglass_flowing_sand": "โณ",
"satellite": "๐ก",
"battery": "๐",
"electric_plug": "๐",
"bulb": "๐ก",
"flashlight": "๐ฆ",
"candle": "๐ฏ",
"wastebasket": "๐",
"oil_drum": "๐ข",
"money_with_wings": "๐ธ",
"dollar": "๐ต",
"yen": "๐ด",
"euro": "๐ถ",
"pound": "๐ท",
"moneybag": "๐ฐ",
"credit_card": "๐ณ",
"gem": "๐",
"balance_scale": "โ๏ธ",
"wrench": "๐ง",
"hammer": "๐จ",
"hammer_and_pick": "โ",
"hammer_and_wrench": "๐ ",
"pick": "โ",
"nut_and_bolt": "๐ฉ",
"gear": "โ๏ธ",
"chains": "โ",
"gun": "๐ซ",
"bomb": "๐ฃ",
"hocho": "๐ช",
"knife": "๐ช",
"dagger": "๐ก",
"crossed_swords": "โ๏ธ",
"shield": "๐ก",
"smoking": "๐ฌ",
"coffin": "โฐ๏ธ",
"funeral_urn": "โฑ๏ธ",
"amphora": "๐บ",
"crystal_ball": "๐ฎ",
"prayer_beads": "๐ฟ",
"barber": "๐",
"alembic": "โ๏ธ",
"telescope": "๐ญ",
"microscope": "๐ฌ",
"hole": "๐ณ",
"pill": "๐",
"syringe": "๐",
"thermometer": "๐ก",
"toilet": "๐ฝ",
"potable_water": "๐ฐ",
"shower": "๐ฟ",
"bathtub": "๐",
"bath": "๐",
"bellhop_bell": "๐",
"key": "๐",
"old_key": "๐",
"door": "๐ช",
"couch_and_lamp": "๐",
"bed": "๐",
"sleeping_bed": "๐",
"framed_picture": "๐ผ",
"shopping": "๐",
"shopping_cart": "๐",
"gift": "๐",
"balloon": "๐",
"flags": "๐",
"ribbon": "๐",
"confetti_ball": "๐",
"tada": "๐",
"dolls": "๐",
"izakaya_lantern": "๐ฎ",
"lantern": "๐ฎ",
"wind_chime": "๐",
"email": "โ๏ธ",
"envelope": "โ๏ธ",
"envelope_with_arrow": "๐ฉ",
"incoming_envelope": "๐จ",
"e-mail": "๐ง",
"love_letter": "๐",
"inbox_tray": "๐ฅ",
"outbox_tray": "๐ค",
"package": "๐ฆ",
"label": "๐ท",
"mailbox_closed": "๐ช",
"mailbox": "๐ซ",
"mailbox_with_mail": "๐ฌ",
"mailbox_with_no_mail": "๐ญ",
"postbox": "๐ฎ",
"postal_horn": "๐ฏ",
"scroll": "๐",
"page_with_curl": "๐",
"page_facing_up": "๐",
"bookmark_tabs": "๐",
"bar_chart": "๐",
"chart_with_upwards_trend": "๐",
"chart_with_downwards_trend": "๐",
"spiral_notepad": "๐",
"spiral_calendar": "๐",
"calendar": "๐",
"date": "๐
",
"card_index": "๐",
"card_file_box": "๐",
"ballot_box": "๐ณ",
"file_cabinet": "๐",
"clipboard": "๐",
"file_folder": "๐",
"open_file_folder": "๐",
"card_index_dividers": "๐",
"newspaper_roll": "๐",
"newspaper": "๐ฐ",
"notebook": "๐",
"notebook_with_decorative_cover": "๐",
"ledger": "๐",
"closed_book": "๐",
"green_book": "๐",
"blue_book": "๐",
"orange_book": "๐",
"books": "๐",
"book": "๐",
"open_book": "๐",
"bookmark": "๐",
"link": "๐",
"paperclip": "๐",
"paperclips": "๐",
"triangular_ruler": "๐",
"straight_ruler": "๐",
"pushpin": "๐",
"round_pushpin": "๐",
"scissors": "โ๏ธ",
"pen": "๐",
"fountain_pen": "๐",
"black_nib": "โ๏ธ",
"paintbrush": "๐",
"crayon": "๐",
"memo": "๐",
"pencil": "๐",
"pencil2": "โ๏ธ",
"mag": "๐",
"mag_right": "๐",
"lock_with_ink_pen": "๐",
"closed_lock_with_key": "๐",
"lock": "๐",
"unlock": "๐",
"heart": "โค๏ธ",
"yellow_heart": "๐",
"green_heart": "๐",
"blue_heart": "๐",
"purple_heart": "๐",
"black_heart": "๐ค",
"broken_heart": "๐",
"heavy_heart_exclamation": "โฃ๏ธ",
"two_hearts": "๐",
"revolving_hearts": "๐",
"heartbeat": "๐",
"heartpulse": "๐",
"sparkling_heart": "๐",
"cupid": "๐",
"gift_heart": "๐",
"heart_decoration": "๐",
"peace_symbol": "โฎ๏ธ",
"latin_cross": "โ๏ธ",
"star_and_crescent": "โช๏ธ",
"om": "๐",
"wheel_of_dharma": "โธ๏ธ",
"star_of_david": "โก๏ธ",
"six_pointed_star": "๐ฏ",
"menorah": "๐",
"yin_yang": "โฏ๏ธ",
"orthodox_cross": "โฆ๏ธ",
"place_of_worship": "๐",
"ophiuchus": "โ",
"aries": "โ๏ธ",
"taurus": "โ๏ธ",
"gemini": "โ๏ธ",
"cancer": "โ๏ธ",
"leo": "โ๏ธ",
"virgo": "โ๏ธ",
"libra": "โ๏ธ",
"scorpius": "โ๏ธ",
"sagittarius": "โ๏ธ",
"capricorn": "โ๏ธ",
"aquarius": "โ๏ธ",
"pisces": "โ๏ธ",
"id": "๐",
"atom_symbol": "โ๏ธ",
"accept": "๐",
"radioactive": "โข๏ธ",
"biohazard": "โฃ๏ธ",
"mobile_phone_off": "๐ด",
"vibration_mode": "๐ณ",
"eight_pointed_black_star": "โด๏ธ",
"vs": "๐",
"white_flower": "๐ฎ",
"ideograph_advantage": "๐",
"secret": "ใ๏ธ",
"congratulations": "ใ๏ธ",
"u6e80": "๐ต",
"a": "๐
ฐ๏ธ",
"b": "๐
ฑ๏ธ",
"ab": "๐",
"cl": "๐",
"o2": "๐
พ๏ธ",
"sos": "๐",
"x": "โ",
"o": "โญ๏ธ",
"stop_sign": "๐",
"no_entry": "โ๏ธ",
"name_badge": "๐",
"no_entry_sign": "๐ซ",
"anger": "๐ข",
"hotsprings": "โจ๏ธ",
"no_pedestrians": "๐ท",
"do_not_litter": "๐ฏ",
"no_bicycles": "๐ณ",
"non-potable_water": "๐ฑ",
"underage": "๐",
"no_mobile_phones": "๐ต",
"no_smoking": "๐ญ",
"exclamation": "โ๏ธ",
"heavy_exclamation_mark": "โ๏ธ",
"grey_exclamation": "โ",
"question": "โ",
"grey_question": "โ",
"bangbang": "โผ๏ธ",
"interrobang": "โ๏ธ",
"low_brightness": "๐
",
"high_brightness": "๐",
"part_alternation_mark": "ใฝ๏ธ",
"warning": "โ ๏ธ",
"children_crossing": "๐ธ",
"trident": "๐ฑ",
"fleur_de_lis": "โ๏ธ",
"beginner": "๐ฐ",
"recycle": "โป๏ธ",
"white_check_mark": "โ
",
"chart": "๐น",
"sparkle": "โ๏ธ",
"eight_spoked_asterisk": "โณ๏ธ",
"negative_squared_cross_mark": "โ",
"globe_with_meridians": "๐",
"diamond_shape_with_a_dot_inside": "๐ ",
"m": "โ๏ธ",
"cyclone": "๐",
"zzz": "๐ค",
"atm": "๐ง",
"wc": "๐พ",
"wheelchair": "โฟ๏ธ",
"parking": "๐
ฟ๏ธ",
"sa": "๐๏ธ",
"passport_control": "๐",
"customs": "๐",
"baggage_claim": "๐",
"left_luggage": "๐
",
"mens": "๐น",
"womens": "๐บ",
"baby_symbol": "๐ผ",
"restroom": "๐ป",
"put_litter_in_its_place": "๐ฎ",
"cinema": "๐ฆ",
"signal_strength": "๐ถ",
"koko": "๐",
"symbols": "๐ฃ",
"information_source": "โน๏ธ",
"abc": "๐ค",
"abcd": "๐ก",
"capital_abcd": "๐ ",
"ng": "๐",
"ok": "๐",
"up": "๐",
"cool": "๐",
"new": "๐",
"free": "๐",
"zero": "0๏ธโฃ",
"one": "1๏ธโฃ",
"two": "2๏ธโฃ",
"three": "3๏ธโฃ",
"four": "4๏ธโฃ",
"five": "5๏ธโฃ",
"six": "6๏ธโฃ",
"seven": "7๏ธโฃ",
"eight": "8๏ธโฃ",
"nine": "9๏ธโฃ",
"keycap_ten": "๐",
"hash": "#๏ธโฃ",
"asterisk": "*๏ธโฃ",
"arrow_forward": "โถ๏ธ",
"pause_button": "โธ",
"play_or_pause_button": "โฏ",
"stop_button": "โน",
"record_button": "โบ",
"next_track_button": "โญ",
"previous_track_button": "โฎ",
"fast_forward": "โฉ",
"rewind": "โช",
"arrow_double_up": "โซ",
"arrow_double_down": "โฌ",
"arrow_backward": "โ๏ธ",
"arrow_up_small": "๐ผ",
"arrow_down_small": "๐ฝ",
"arrow_right": "โก๏ธ",
"arrow_left": "โฌ
๏ธ",
"arrow_up": "โฌ๏ธ",
"arrow_down": "โฌ๏ธ",
"arrow_upper_right": "โ๏ธ",
"arrow_lower_right": "โ๏ธ",
"arrow_lower_left": "โ๏ธ",
"arrow_upper_left": "โ๏ธ",
"arrow_up_down": "โ๏ธ",
"left_right_arrow": "โ๏ธ",
"arrow_right_hook": "โช๏ธ",
"leftwards_arrow_with_hook": "โฉ๏ธ",
"arrow_heading_up": "โคด๏ธ",
"arrow_heading_down": "โคต๏ธ",
"twisted_rightwards_arrows": "๐",
"repeat": "๐",
"repeat_one": "๐",
"arrows_counterclockwise": "๐",
"arrows_clockwise": "๐",
"musical_note": "๐ต",
"notes": "๐ถ",
"heavy_plus_sign": "โ",
"heavy_minus_sign": "โ",
"heavy_division_sign": "โ",
"heavy_multiplication_x": "โ๏ธ",
"heavy_dollar_sign": "๐ฒ",
"currency_exchange": "๐ฑ",
"tm": "โข๏ธ",
"copyright": "ยฉ๏ธ",
"registered": "ยฎ๏ธ",
"wavy_dash": "ใฐ๏ธ",
"curly_loop": "โฐ",
"loop": "โฟ",
"end": "๐",
"back": "๐",
"on": "๐",
"top": "๐",
"soon": "๐",
"heavy_check_mark": "โ๏ธ",
"ballot_box_with_check": "โ๏ธ",
"radio_button": "๐",
"white_circle": "โช๏ธ",
"black_circle": "โซ๏ธ",
"red_circle": "๐ด",
"large_blue_circle": "๐ต",
"small_red_triangle": "๐บ",
"small_red_triangle_down": "๐ป",
"small_orange_diamond": "๐ธ",
"small_blue_diamond": "๐น",
"large_orange_diamond": "๐ถ",
"large_blue_diamond": "๐ท",
"white_square_button": "๐ณ",
"black_square_button": "๐ฒ",
"black_small_square": "โช๏ธ",
"white_small_square": "โซ๏ธ",
"black_medium_small_square": "โพ๏ธ",
"white_medium_small_square": "โฝ๏ธ",
"black_medium_square": "โผ๏ธ",
"white_medium_square": "โป๏ธ",
"black_large_square": "โฌ๏ธ",
"white_large_square": "โฌ๏ธ",
"speaker": "๐",
"mute": "๐",
"sound": "๐",
"loud_sound": "๐",
"bell": "๐",
"no_bell": "๐",
"mega": "๐ฃ",
"loudspeaker": "๐ข",
"eye_speech_bubble": "๐โ๐จ",
"speech_balloon": "๐ฌ",
"thought_balloon": "๐ญ",
"right_anger_bubble": "๐ฏ",
"spades": "โ ๏ธ",
"clubs": "โฃ๏ธ",
"hearts": "โฅ๏ธ",
"diamonds": "โฆ๏ธ",
"black_joker": "๐",
"flower_playing_cards": "๐ด",
"mahjong": "๐๏ธ",
"clock1": "๐",
"clock2": "๐",
"clock3": "๐",
"clock4": "๐",
"clock5": "๐",
"clock6": "๐",
"clock7": "๐",
"clock8": "๐",
"clock9": "๐",
"clock10": "๐",
"clock11": "๐",
"clock12": "๐",
"clock130": "๐",
"clock230": "๐",
"clock330": "๐",
"clock430": "๐",
"clock530": "๐ ",
"clock630": "๐ก",
"clock730": "๐ข",
"clock830": "๐ฃ",
"clock930": "๐ค",
"clock1030": "๐ฅ",
"clock1130": "๐ฆ",
"clock1230": "๐ง",
"white_flag": "๐ณ๏ธ",
"black_flag": "๐ด",
"checkered_flag": "๐",
"triangular_flag_on_post": "๐ฉ",
"rainbow_flag": "๐ณ๏ธโ๐",
"afghanistan": "๐ฆ๐ซ",
"aland_islands": "๐ฆ๐ฝ",
"albania": "๐ฆ๐ฑ",
"algeria": "๐ฉ๐ฟ",
"american_samoa": "๐ฆ๐ธ",
"andorra": "๐ฆ๐ฉ",
"angola": "๐ฆ๐ด",
"anguilla": "๐ฆ๐ฎ",
"antarctica": "๐ฆ๐ถ",
"antigua_barbuda": "๐ฆ๐ฌ",
"argentina": "๐ฆ๐ท",
"armenia": "๐ฆ๐ฒ",
"aruba": "๐ฆ๐ผ",
"australia": "๐ฆ๐บ",
"austria": "๐ฆ๐น",
"azerbaijan": "๐ฆ๐ฟ",
"bahamas": "๐ง๐ธ",
"bahrain": "๐ง๐ญ",
"bangladesh": "๐ง๐ฉ",
"barbados": "๐ง๐ง",
"belarus": "๐ง๐พ",
"belgium": "๐ง๐ช",
"belize": "๐ง๐ฟ",
"benin": "๐ง๐ฏ",
"bermuda": "๐ง๐ฒ",
"bhutan": "๐ง๐น",
"bolivia": "๐ง๐ด",
"caribbean_netherlands": "๐ง๐ถ",
"bosnia_herzegovina": "๐ง๐ฆ",
"botswana": "๐ง๐ผ",
"brazil": "๐ง๐ท",
"british_indian_ocean_territory": "๐ฎ๐ด",
"british_virgin_islands": "๐ป๐ฌ",
"brunei": "๐ง๐ณ",
"bulgaria": "๐ง๐ฌ",
"burkina_faso": "๐ง๐ซ",
"burundi": "๐ง๐ฎ",
"cape_verde": "๐จ๐ป",
"cambodia": "๐ฐ๐ญ",
"cameroon": "๐จ๐ฒ",
"canada": "๐จ๐ฆ",
"canary_islands": "๐ฎ๐จ",
"cayman_islands": "๐ฐ๐พ",
"central_african_republic": "๐จ๐ซ",
"chad": "๐น๐ฉ",
"chile": "๐จ๐ฑ",
"cn": "๐จ๐ณ",
"christmas_island": "๐จ๐ฝ",
"cocos_islands": "๐จ๐จ",
"colombia": "๐จ๐ด",
"comoros": "๐ฐ๐ฒ",
"congo_brazzaville": "๐จ๐ฌ",
"congo_kinshasa": "๐จ๐ฉ",
"cook_islands": "๐จ๐ฐ",
"costa_rica": "๐จ๐ท",
"cote_divoire": "๐จ๐ฎ",
"croatia": "๐ญ๐ท",
"cuba": "๐จ๐บ",
"curacao": "๐จ๐ผ",
"cyprus": "๐จ๐พ",
"czech_republic": "๐จ๐ฟ",
"denmark": "๐ฉ๐ฐ",
"djibouti": "๐ฉ๐ฏ",
"dominica": "๐ฉ๐ฒ",
"dominican_republic": "๐ฉ๐ด",
"ecuador": "๐ช๐จ",
"egypt": "๐ช๐ฌ",
"el_salvador": "๐ธ๐ป",
"equatorial_guinea": "๐ฌ๐ถ",
"eritrea": "๐ช๐ท",
"estonia": "๐ช๐ช",
"ethiopia": "๐ช๐น",
"eu": "๐ช๐บ",
"european_union": "๐ช๐บ",
"falkland_islands": "๐ซ๐ฐ",
"faroe_islands": "๐ซ๐ด",
"fiji": "๐ซ๐ฏ",
"finland": "๐ซ๐ฎ",
"fr": "๐ซ๐ท",
"french_guiana": "๐ฌ๐ซ",
"french_polynesia": "๐ต๐ซ",
"french_southern_territories": "๐น๐ซ",
"gabon": "๐ฌ๐ฆ",
"gambia": "๐ฌ๐ฒ",
"georgia": "๐ฌ๐ช",
"de": "๐ฉ๐ช",
"ghana": "๐ฌ๐ญ",
"gibraltar": "๐ฌ๐ฎ",
"greece": "๐ฌ๐ท",
"greenland": "๐ฌ๐ฑ",
"grenada": "๐ฌ๐ฉ",
"guadeloupe": "๐ฌ๐ต",
"guam": "๐ฌ๐บ",
"guatemala": "๐ฌ๐น",
"guernsey": "๐ฌ๐ฌ",
"guinea": "๐ฌ๐ณ",
"guinea_bissau": "๐ฌ๐ผ",
"guyana": "๐ฌ๐พ",
"haiti": "๐ญ๐น",
"honduras": "๐ญ๐ณ",
"hong_kong": "๐ญ๐ฐ",
"hungary": "๐ญ๐บ",
"iceland": "๐ฎ๐ธ",
"india": "๐ฎ๐ณ",
"indonesia": "๐ฎ๐ฉ",
"iran": "๐ฎ๐ท",
"iraq": "๐ฎ๐ถ",
"ireland": "๐ฎ๐ช",
"isle_of_man": "๐ฎ๐ฒ",
"israel": "๐ฎ๐ฑ",
"it": "๐ฎ๐น",
"jamaica": "๐ฏ๐ฒ",
"jp": "๐ฏ๐ต",
"crossed_flags": "๐",
"jersey": "๐ฏ๐ช",
"jordan": "๐ฏ๐ด",
"kazakhstan": "๐ฐ๐ฟ",
"kenya": "๐ฐ๐ช",
"kiribati": "๐ฐ๐ฎ",
"kosovo": "๐ฝ๐ฐ",
"kuwait": "๐ฐ๐ผ",
"kyrgyzstan": "๐ฐ๐ฌ",
"laos": "๐ฑ๐ฆ",
"latvia": "๐ฑ๐ป",
"lebanon": "๐ฑ๐ง",
"lesotho": "๐ฑ๐ธ",
"liberia": "๐ฑ๐ท",
"libya": "๐ฑ๐พ",
"liechtenstein": "๐ฑ๐ฎ",
"lithuania": "๐ฑ๐น",
"luxembourg": "๐ฑ๐บ",
"macau": "๐ฒ๐ด",
"macedonia": "๐ฒ๐ฐ",
"madagascar": "๐ฒ๐ฌ",
"malawi": "๐ฒ๐ผ",
"malaysia": "๐ฒ๐พ",
"maldives": "๐ฒ๐ป",
"mali": "๐ฒ๐ฑ",
"malta": "๐ฒ๐น",
"marshall_islands": "๐ฒ๐ญ",
"martinique": "๐ฒ๐ถ",
"mauritania": "๐ฒ๐ท",
"mauritius": "๐ฒ๐บ",
"mayotte": "๐พ๐น",
"mexico": "๐ฒ๐ฝ",
"micronesia": "๐ซ๐ฒ",
"moldova": "๐ฒ๐ฉ",
"monaco": "๐ฒ๐จ",
"mongolia": "๐ฒ๐ณ",
"montenegro": "๐ฒ๐ช",
"montserrat": "๐ฒ๐ธ",
"morocco": "๐ฒ๐ฆ",
"mozambique": "๐ฒ๐ฟ",
"myanmar": "๐ฒ๐ฒ",
"namibia": "๐ณ๐ฆ",
"nauru": "๐ณ๐ท",
"nepal": "๐ณ๐ต",
"netherlands": "๐ณ๐ฑ",
"new_caledonia": "๐ณ๐จ",
"new_zealand": "๐ณ๐ฟ",
"nicaragua": "๐ณ๐ฎ",
"niger": "๐ณ๐ช",
"nigeria": "๐ณ๐ฌ",
"niue": "๐ณ๐บ",
"norfolk_island": "๐ณ๐ซ",
"northern_mariana_islands": "๐ฒ๐ต",
"north_korea": "๐ฐ๐ต",
"norway": "๐ณ๐ด",
"oman": "๐ด๐ฒ",
"pakistan": "๐ต๐ฐ",
"palau": "๐ต๐ผ",
"palestinian_territories": "๐ต๐ธ",
"panama": "๐ต๐ฆ",
"papua_new_guinea": "๐ต๐ฌ",
"paraguay": "๐ต๐พ",
"peru": "๐ต๐ช",
"philippines": "๐ต๐ญ",
"pitcairn_islands": "๐ต๐ณ",
"poland": "๐ต๐ฑ",
"portugal": "๐ต๐น",
"puerto_rico": "๐ต๐ท",
"qatar": "๐ถ๐ฆ",
"reunion": "๐ท๐ช",
"romania": "๐ท๐ด",
"ru": "๐ท๐บ",
"rwanda": "๐ท๐ผ",
"st_barthelemy": "๐ง๐ฑ",
"st_helena": "๐ธ๐ญ",
"st_kitts_nevis": "๐ฐ๐ณ",
"st_lucia": "๐ฑ๐จ",
"st_pierre_miquelon": "๐ต๐ฒ",
"st_vincent_grenadines": "๐ป๐จ",
"samoa": "๐ผ๐ธ",
"san_marino": "๐ธ๐ฒ",
"sao_tome_principe": "๐ธ๐น",
"saudi_arabia": "๐ธ๐ฆ",
"senegal": "๐ธ๐ณ",
"serbia": "๐ท๐ธ",
"seychelles": "๐ธ๐จ",
"sierra_leone": "๐ธ๐ฑ",
"singapore": "๐ธ๐ฌ",
"sint_maarten": "๐ธ๐ฝ",
"slovakia": "๐ธ๐ฐ",
"slovenia": "๐ธ๐ฎ",
"solomon_islands": "๐ธ๐ง",
"somalia": "๐ธ๐ด",
"south_africa": "๐ฟ๐ฆ",
"south_georgia_south_sandwich_islands": "๐ฌ๐ธ",
"kr": "๐ฐ๐ท",
"south_sudan": "๐ธ๐ธ",
"es": "๐ช๐ธ",
"sri_lanka": "๐ฑ๐ฐ",
"sudan": "๐ธ๐ฉ",
"suriname": "๐ธ๐ท",
"swaziland": "๐ธ๐ฟ",
"sweden": "๐ธ๐ช",
"switzerland": "๐จ๐ญ",
"syria": "๐ธ๐พ",
"taiwan": "๐น๐ผ",
"tajikistan": "๐น๐ฏ",
"tanzania": "๐น๐ฟ",
"thailand": "๐น๐ญ",
"timor_leste": "๐น๐ฑ",
"togo": "๐น๐ฌ",
"tokelau": "๐น๐ฐ",
"tonga": "๐น๐ด",
"trinidad_tobago": "๐น๐น",
"tunisia": "๐น๐ณ",
"tr": "๐น๐ท",
"turkmenistan": "๐น๐ฒ",
"turks_caicos_islands": "๐น๐จ",
"tuvalu": "๐น๐ป",
"uganda": "๐บ๐ฌ",
"ukraine": "๐บ๐ฆ",
"united_arab_emirates": "๐ฆ๐ช",
"gb": "๐ฌ๐ง",
"uk": "๐ฌ๐ง",
"us": "๐บ๐ธ",
"us_virgin_islands": "๐ป๐ฎ",
"uruguay": "๐บ๐พ",
"uzbekistan": "๐บ๐ฟ",
"vanuatu": "๐ป๐บ",
"vatican_city": "๐ป๐ฆ",
"venezuela": "๐ป๐ช",
"vietnam": "๐ป๐ณ",
"wallis_futuna": "๐ผ๐ซ",
"western_sahara": "๐ช๐ญ",
"yemen": "๐พ๐ช",
"zambia": "๐ฟ๐ฒ",
"zimbabwe": "๐ฟ๐ผ"
}
|