-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgithub-emojis.ini
1615 lines (1615 loc) · 39.4 KB
/
github-emojis.ini
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
[AliasesMap]
100=\xd83d\xdcaf
1234=\xd83d\xdd22
+1=\xd83d\xdc4d
-1=\xd83d\xdc4e
1st_place_medal=\xd83e\xdd47
2nd_place_medal=\xd83e\xdd48
3rd_place_medal=\xd83e\xdd49
8ball=\xd83c\xdfb1
a=\xd83c\xdd70
ab=\xd83c\xdd8e
abacus=\xd83e\xddee
abc=\xd83d\xdd24
abcd=\xd83d\xdd21
accept=\xd83c\xde51
accordion=\xd83e\xde97
adhesive_bandage=\xd83e\xde79
adult=\xd83e\xddd1
aerial_tramway=\xd83d\xdea1
afghanistan=\xd83c\xdde6\xd83c\xddeb
airplane=\x2708
aland_islands=\xd83c\xdde6\xd83c\xddfd
alarm_clock=\x23f0
albania=\xd83c\xdde6\xd83c\xddf1
alembic=\x2697
algeria=\xd83c\xdde9\xd83c\xddff
alien=\xd83d\xdc7d
ambulance=\xd83d\xde91
american_samoa=\xd83c\xdde6\xd83c\xddf8
amphora=\xd83c\xdffa
anatomical_heart=\xd83e\xdec0
anchor=\x2693
andorra=\xd83c\xdde6\xd83c\xdde9
angel=\xd83d\xdc7c
anger=\xd83d\xdca2
angola=\xd83c\xdde6\xd83c\xddf4
angry=\xd83d\xde20
anguilla=\xd83c\xdde6\xd83c\xddee
anguished=\xd83d\xde27
ant=\xd83d\xdc1c
antarctica=\xd83c\xdde6\xd83c\xddf6
antigua_barbuda=\xd83c\xdde6\xd83c\xddec
apple=\xd83c\xdf4e
aquarius=\x2652
argentina=\xd83c\xdde6\xd83c\xddf7
aries=\x2648
armenia=\xd83c\xdde6\xd83c\xddf2
arrow_backward=\x25c0
arrow_double_down=\x23ec
arrow_double_up=\x23eb
arrow_down=\x2b07
arrow_down_small=\xd83d\xdd3d
arrow_forward=\x25b6
arrow_heading_down=\x2935
arrow_heading_up=\x2934
arrow_left=\x2b05
arrow_lower_left=\x2199
arrow_lower_right=\x2198
arrow_right=\x27a1
arrow_right_hook=\x21aa
arrow_up=\x2b06
arrow_up_down=\x2195
arrow_up_small=\xd83d\xdd3c
arrow_upper_left=\x2196
arrow_upper_right=\x2197
arrows_clockwise=\xd83d\xdd03
arrows_counterclockwise=\xd83d\xdd04
art=\xd83c\xdfa8
articulated_lorry=\xd83d\xde9b
artificial_satellite=\xd83d\xdef0
aruba=\xd83c\xdde6\xd83c\xddfc
ascension_island=\xd83c\xdde6\xd83c\xdde8
astonished=\xd83d\xde32
athletic_shoe=\xd83d\xdc5f
atm=\xd83c\xdfe7
atom_symbol=\x269b
australia=\xd83c\xdde6\xd83c\xddfa
austria=\xd83c\xdde6\xd83c\xddf9
auto_rickshaw=\xd83d\xdefa
avocado=\xd83e\xdd51
axe=\xd83e\xde93
azerbaijan=\xd83c\xdde6\xd83c\xddff
b=\xd83c\xdd71
baby=\xd83d\xdc76
baby_bottle=\xd83c\xdf7c
baby_chick=\xd83d\xdc24
baby_symbol=\xd83d\xdebc
back=\xd83d\xdd19
bacon=\xd83e\xdd53
badger=\xd83e\xdda1
badminton=\xd83c\xdff8
bagel=\xd83e\xdd6f
baggage_claim=\xd83d\xdec4
baguette_bread=\xd83e\xdd56
bahamas=\xd83c\xdde7\xd83c\xddf8
bahrain=\xd83c\xdde7\xd83c\xdded
balance_scale=\x2696
ballet_shoes=\xd83e\xde70
balloon=\xd83c\xdf88
ballot_box=\xd83d\xddf3
ballot_box_with_check=\x2611
bamboo=\xd83c\xdf8d
banana=\xd83c\xdf4c
bangbang=\x203c
bangladesh=\xd83c\xdde7\xd83c\xdde9
banjo=\xd83e\xde95
bank=\xd83c\xdfe6
bar_chart=\xd83d\xdcca
barbados=\xd83c\xdde7\xd83c\xdde7
barber=\xd83d\xdc88
baseball=\x26be
basket=\xd83e\xddfa
basketball=\xd83c\xdfc0
bat=\xd83e\xdd87
bath=\xd83d\xdec0
bathtub=\xd83d\xdec1
battery=\xd83d\xdd0b
beach_umbrella=\xd83c\xdfd6
bear=\xd83d\xdc3b
bearded_person=\xd83e\xddd4
beaver=\xd83e\xddab
bed=\xd83d\xdecf
bee=\xd83d\xdc1d
beer=\xd83c\xdf7a
beers=\xd83c\xdf7b
beetle=\xd83e\xdeb2
beginner=\xd83d\xdd30
belarus=\xd83c\xdde7\xd83c\xddfe
belgium=\xd83c\xdde7\xd83c\xddea
belize=\xd83c\xdde7\xd83c\xddff
bell=\xd83d\xdd14
bell_pepper=\xd83e\xded1
bellhop_bell=\xd83d\xdece
benin=\xd83c\xdde7\xd83c\xddef
bento=\xd83c\xdf71
bermuda=\xd83c\xdde7\xd83c\xddf2
beverage_box=\xd83e\xddc3
bhutan=\xd83c\xdde7\xd83c\xddf9
bicyclist=\xd83d\xdeb4
bike=\xd83d\xdeb2
bikini=\xd83d\xdc59
billed_cap=\xd83e\xdde2
biohazard=\x2623
bird=\xd83d\xdc26
birthday=\xd83c\xdf82
bison=\xd83e\xddac
black_circle=\x26ab
black_flag=\xd83c\xdff4
black_heart=\xd83d\xdda4
black_joker=\xd83c\xdccf
black_large_square=\x2b1b
black_medium_small_square=\x25fe
black_medium_square=\x25fc
black_nib=\x2712
black_small_square=\x25aa
black_square_button=\xd83d\xdd32
blond_haired_person=\xd83d\xdc71
blossom=\xd83c\xdf3c
blowfish=\xd83d\xdc21
blue_book=\xd83d\xdcd8
blue_car=\xd83d\xde99
blue_heart=\xd83d\xdc99
blue_square=\xd83d\xdfe6
blueberries=\xd83e\xded0
blush=\xd83d\xde0a
boar=\xd83d\xdc17
boat=\x26f5
bolivia=\xd83c\xdde7\xd83c\xddf4
bomb=\xd83d\xdca3
bone=\xd83e\xddb4
book=\xd83d\xdcd6
bookmark=\xd83d\xdd16
bookmark_tabs=\xd83d\xdcd1
books=\xd83d\xdcda
boom=\xd83d\xdca5
boomerang=\xd83e\xde83
boot=\xd83d\xdc62
bosnia_herzegovina=\xd83c\xdde7\xd83c\xdde6
botswana=\xd83c\xdde7\xd83c\xddfc
bouncing_ball_person=\x26f9
bouquet=\xd83d\xdc90
bouvet_island=\xd83c\xdde7\xd83c\xddfb
bow=\xd83d\xde47
bow_and_arrow=\xd83c\xdff9
bowl_with_spoon=\xd83e\xdd63
bowling=\xd83c\xdfb3
boxing_glove=\xd83e\xdd4a
boy=\xd83d\xdc66
brain=\xd83e\xdde0
brazil=\xd83c\xdde7\xd83c\xddf7
bread=\xd83c\xdf5e
breast_feeding=\xd83e\xdd31
bricks=\xd83e\xddf1
bridge_at_night=\xd83c\xdf09
briefcase=\xd83d\xdcbc
british_indian_ocean_territory=\xd83c\xddee\xd83c\xddf4
british_virgin_islands=\xd83c\xddfb\xd83c\xddec
broccoli=\xd83e\xdd66
broken_heart=\xd83d\xdc94
broom=\xd83e\xddf9
brown_circle=\xd83d\xdfe4
brown_heart=\xd83e\xdd0e
brown_square=\xd83d\xdfeb
brunei=\xd83c\xdde7\xd83c\xddf3
bubble_tea=\xd83e\xddcb
bucket=\xd83e\xdea3
bug=\xd83d\xdc1b
building_construction=\xd83c\xdfd7
bulb=\xd83d\xdca1
bulgaria=\xd83c\xdde7\xd83c\xddec
bullettrain_front=\xd83d\xde85
bullettrain_side=\xd83d\xde84
burkina_faso=\xd83c\xdde7\xd83c\xddeb
burrito=\xd83c\xdf2f
burundi=\xd83c\xdde7\xd83c\xddee
bus=\xd83d\xde8c
business_suit_levitating=\xd83d\xdd74
busstop=\xd83d\xde8f
bust_in_silhouette=\xd83d\xdc64
busts_in_silhouette=\xd83d\xdc65
butter=\xd83e\xddc8
butterfly=\xd83e\xdd8b
cactus=\xd83c\xdf35
cake=\xd83c\xdf70
calendar=\xd83d\xdcc6
call_me_hand=\xd83e\xdd19
calling=\xd83d\xdcf2
cambodia=\xd83c\xddf0\xd83c\xdded
camel=\xd83d\xdc2b
camera=\xd83d\xdcf7
camera_flash=\xd83d\xdcf8
cameroon=\xd83c\xdde8\xd83c\xddf2
camping=\xd83c\xdfd5
canada=\xd83c\xdde8\xd83c\xdde6
canary_islands=\xd83c\xddee\xd83c\xdde8
cancer=\x264b
candle=\xd83d\xdd6f
candy=\xd83c\xdf6c
canned_food=\xd83e\xdd6b
canoe=\xd83d\xdef6
cape_verde=\xd83c\xdde8\xd83c\xddfb
capital_abcd=\xd83d\xdd20
capricorn=\x2651
car=\xd83d\xde97
card_file_box=\xd83d\xddc3
card_index=\xd83d\xdcc7
card_index_dividers=\xd83d\xddc2
caribbean_netherlands=\xd83c\xdde7\xd83c\xddf6
carousel_horse=\xd83c\xdfa0
carpentry_saw=\xd83e\xde9a
carrot=\xd83e\xdd55
cartwheeling=\xd83e\xdd38
cat=\xd83d\xdc31
cat2=\xd83d\xdc08
cayman_islands=\xd83c\xddf0\xd83c\xddfe
cd=\xd83d\xdcbf
central_african_republic=\xd83c\xdde8\xd83c\xddeb
ceuta_melilla=\xd83c\xddea\xd83c\xdde6
chad=\xd83c\xddf9\xd83c\xdde9
chains=\x26d3
chair=\xd83e\xde91
champagne=\xd83c\xdf7e
chart=\xd83d\xdcb9
chart_with_downwards_trend=\xd83d\xdcc9
chart_with_upwards_trend=\xd83d\xdcc8
checkered_flag=\xd83c\xdfc1
cheese=\xd83e\xddc0
cherries=\xd83c\xdf52
cherry_blossom=\xd83c\xdf38
chess_pawn=\x265f
chestnut=\xd83c\xdf30
chicken=\xd83d\xdc14
child=\xd83e\xddd2
children_crossing=\xd83d\xdeb8
chile=\xd83c\xdde8\xd83c\xddf1
chipmunk=\xd83d\xdc3f
chocolate_bar=\xd83c\xdf6b
chopsticks=\xd83e\xdd62
christmas_island=\xd83c\xdde8\xd83c\xddfd
christmas_tree=\xd83c\xdf84
church=\x26ea
cinema=\xd83c\xdfa6
circus_tent=\xd83c\xdfaa
city_sunrise=\xd83c\xdf07
city_sunset=\xd83c\xdf06
cityscape=\xd83c\xdfd9
cl=\xd83c\xdd91
clamp=\xd83d\xdddc
clap=\xd83d\xdc4f
clapper=\xd83c\xdfac
classical_building=\xd83c\xdfdb
climbing=\xd83e\xddd7
clinking_glasses=\xd83e\xdd42
clipboard=\xd83d\xdccb
clipperton_island=\xd83c\xdde8\xd83c\xddf5
clock1=\xd83d\xdd50
clock10=\xd83d\xdd59
clock1030=\xd83d\xdd65
clock11=\xd83d\xdd5a
clock1130=\xd83d\xdd66
clock12=\xd83d\xdd5b
clock1230=\xd83d\xdd67
clock130=\xd83d\xdd5c
clock2=\xd83d\xdd51
clock230=\xd83d\xdd5d
clock3=\xd83d\xdd52
clock330=\xd83d\xdd5e
clock4=\xd83d\xdd53
clock430=\xd83d\xdd5f
clock5=\xd83d\xdd54
clock530=\xd83d\xdd60
clock6=\xd83d\xdd55
clock630=\xd83d\xdd61
clock7=\xd83d\xdd56
clock730=\xd83d\xdd62
clock8=\xd83d\xdd57
clock830=\xd83d\xdd63
clock9=\xd83d\xdd58
clock930=\xd83d\xdd64
closed_book=\xd83d\xdcd5
closed_lock_with_key=\xd83d\xdd10
closed_umbrella=\xd83c\xdf02
cloud=\x2601
cloud_with_lightning=\xd83c\xdf29
cloud_with_lightning_and_rain=\x26c8
cloud_with_rain=\xd83c\xdf27
cloud_with_snow=\xd83c\xdf28
clown_face=\xd83e\xdd21
clubs=\x2663
cn=\xd83c\xdde8\xd83c\xddf3
coat=\xd83e\xdde5
cockroach=\xd83e\xdeb3
cocktail=\xd83c\xdf78
coconut=\xd83e\xdd65
cocos_islands=\xd83c\xdde8\xd83c\xdde8
coffee=\x2615
coffin=\x26b0
coin=\xd83e\xde99
cold_face=\xd83e\xdd76
cold_sweat=\xd83d\xde30
collision=\xd83d\xdca5
colombia=\xd83c\xdde8\xd83c\xddf4
comet=\x2604
comoros=\xd83c\xddf0\xd83c\xddf2
compass=\xd83e\xdded
computer=\xd83d\xdcbb
computer_mouse=\xd83d\xddb1
confetti_ball=\xd83c\xdf8a
confounded=\xd83d\xde16
confused=\xd83d\xde15
congo_brazzaville=\xd83c\xdde8\xd83c\xddec
congo_kinshasa=\xd83c\xdde8\xd83c\xdde9
congratulations=\x3297
construction=\xd83d\xdea7
construction_worker=\xd83d\xdc77
control_knobs=\xd83c\xdf9b
convenience_store=\xd83c\xdfea
cook_islands=\xd83c\xdde8\xd83c\xddf0
cookie=\xd83c\xdf6a
cool=\xd83c\xdd92
cop=\xd83d\xdc6e
corn=\xd83c\xdf3d
costa_rica=\xd83c\xdde8\xd83c\xddf7
cote_divoire=\xd83c\xdde8\xd83c\xddee
couch_and_lamp=\xd83d\xdecb
couple=\xd83d\xdc6b
couple_with_heart=\xd83d\xdc91
couplekiss=\xd83d\xdc8f
cow=\xd83d\xdc2e
cow2=\xd83d\xdc04
cowboy_hat_face=\xd83e\xdd20
crab=\xd83e\xdd80
crayon=\xd83d\xdd8d
credit_card=\xd83d\xdcb3
crescent_moon=\xd83c\xdf19
cricket=\xd83e\xdd97
cricket_game=\xd83c\xdfcf
croatia=\xd83c\xdded\xd83c\xddf7
crocodile=\xd83d\xdc0a
croissant=\xd83e\xdd50
crossed_fingers=\xd83e\xdd1e
crossed_flags=\xd83c\xdf8c
crossed_swords=\x2694
crown=\xd83d\xdc51
cry=\xd83d\xde22
crying_cat_face=\xd83d\xde3f
crystal_ball=\xd83d\xdd2e
cuba=\xd83c\xdde8\xd83c\xddfa
cucumber=\xd83e\xdd52
cup_with_straw=\xd83e\xdd64
cupcake=\xd83e\xddc1
cupid=\xd83d\xdc98
curacao=\xd83c\xdde8\xd83c\xddfc
curling_stone=\xd83e\xdd4c
curly_loop=\x27b0
currency_exchange=\xd83d\xdcb1
curry=\xd83c\xdf5b
cursing_face=\xd83e\xdd2c
custard=\xd83c\xdf6e
customs=\xd83d\xdec3
cut_of_meat=\xd83e\xdd69
cyclone=\xd83c\xdf00
cyprus=\xd83c\xdde8\xd83c\xddfe
czech_republic=\xd83c\xdde8\xd83c\xddff
dagger=\xd83d\xdde1
dancer=\xd83d\xdc83
dancers=\xd83d\xdc6f
dango=\xd83c\xdf61
dark_sunglasses=\xd83d\xdd76
dart=\xd83c\xdfaf
dash=\xd83d\xdca8
date=\xd83d\xdcc5
de=\xd83c\xdde9\xd83c\xddea
deaf_person=\xd83e\xddcf
deciduous_tree=\xd83c\xdf33
deer=\xd83e\xdd8c
denmark=\xd83c\xdde9\xd83c\xddf0
department_store=\xd83c\xdfec
derelict_house=\xd83c\xdfda
desert=\xd83c\xdfdc
desert_island=\xd83c\xdfdd
desktop_computer=\xd83d\xdda5
detective=\xd83d\xdd75
diamond_shape_with_a_dot_inside=\xd83d\xdca0
diamonds=\x2666
diego_garcia=\xd83c\xdde9\xd83c\xddec
disappointed=\xd83d\xde1e
disappointed_relieved=\xd83d\xde25
disguised_face=\xd83e\xdd78
diving_mask=\xd83e\xdd3f
diya_lamp=\xd83e\xde94
dizzy=\xd83d\xdcab
dizzy_face=\xd83d\xde35
djibouti=\xd83c\xdde9\xd83c\xddef
dna=\xd83e\xddec
do_not_litter=\xd83d\xdeaf
dodo=\xd83e\xdda4
dog=\xd83d\xdc36
dog2=\xd83d\xdc15
dollar=\xd83d\xdcb5
dolls=\xd83c\xdf8e
dolphin=\xd83d\xdc2c
dominica=\xd83c\xdde9\xd83c\xddf2
dominican_republic=\xd83c\xdde9\xd83c\xddf4
door=\xd83d\xdeaa
doughnut=\xd83c\xdf69
dove=\xd83d\xdd4a
dragon=\xd83d\xdc09
dragon_face=\xd83d\xdc32
dress=\xd83d\xdc57
dromedary_camel=\xd83d\xdc2a
drooling_face=\xd83e\xdd24
drop_of_blood=\xd83e\xde78
droplet=\xd83d\xdca7
drum=\xd83e\xdd41
duck=\xd83e\xdd86
dumpling=\xd83e\xdd5f
dvd=\xd83d\xdcc0
e-mail=\xd83d\xdce7
eagle=\xd83e\xdd85
ear=\xd83d\xdc42
ear_of_rice=\xd83c\xdf3e
ear_with_hearing_aid=\xd83e\xddbb
earth_africa=\xd83c\xdf0d
earth_americas=\xd83c\xdf0e
earth_asia=\xd83c\xdf0f
ecuador=\xd83c\xddea\xd83c\xdde8
egg=\xd83e\xdd5a
eggplant=\xd83c\xdf46
egypt=\xd83c\xddea\xd83c\xddec
eight_pointed_black_star=\x2734
eight_spoked_asterisk=\x2733
eject_button=\x23cf
el_salvador=\xd83c\xddf8\xd83c\xddfb
electric_plug=\xd83d\xdd0c
elephant=\xd83d\xdc18
elevator=\xd83d\xded7
elf=\xd83e\xdddd
email=\xd83d\xdce7
end=\xd83d\xdd1a
england=\xd83c\xdff4\xdb40\xdc67\xdb40\xdc62\xdb40\xdc65\xdb40\xdc6e\xdb40\xdc67\xdb40\xdc7f
envelope=\x2709
envelope_with_arrow=\xd83d\xdce9
equatorial_guinea=\xd83c\xddec\xd83c\xddf6
eritrea=\xd83c\xddea\xd83c\xddf7
es=\xd83c\xddea\xd83c\xddf8
estonia=\xd83c\xddea\xd83c\xddea
ethiopia=\xd83c\xddea\xd83c\xddf9
eu=\xd83c\xddea\xd83c\xddfa
euro=\xd83d\xdcb6
european_castle=\xd83c\xdff0
european_post_office=\xd83c\xdfe4
european_union=\xd83c\xddea\xd83c\xddfa
evergreen_tree=\xd83c\xdf32
exclamation=\x2757
exploding_head=\xd83e\xdd2f
expressionless=\xd83d\xde11
eye=\xd83d\xdc41
eyeglasses=\xd83d\xdc53
eyes=\xd83d\xdc40
face_with_head_bandage=\xd83e\xdd15
face_with_thermometer=\xd83e\xdd12
facepalm=\xd83e\xdd26
facepunch=\xd83d\xdc4a
factory=\xd83c\xdfed
fairy=\xd83e\xddda
falafel=\xd83e\xddc6
falkland_islands=\xd83c\xddeb\xd83c\xddf0
fallen_leaf=\xd83c\xdf42
family=\xd83d\xdc6a
faroe_islands=\xd83c\xddeb\xd83c\xddf4
fast_forward=\x23e9
fax=\xd83d\xdce0
fearful=\xd83d\xde28
feather=\xd83e\xdeb6
feet=\xd83d\xdc3e
female_sign=\x2640
ferris_wheel=\xd83c\xdfa1
ferry=\x26f4
field_hockey=\xd83c\xdfd1
fiji=\xd83c\xddeb\xd83c\xddef
file_cabinet=\xd83d\xddc4
file_folder=\xd83d\xdcc1
film_projector=\xd83d\xdcfd
film_strip=\xd83c\xdf9e
finland=\xd83c\xddeb\xd83c\xddee
fire=\xd83d\xdd25
fire_engine=\xd83d\xde92
fire_extinguisher=\xd83e\xddef
firecracker=\xd83e\xdde8
fireworks=\xd83c\xdf86
first_quarter_moon=\xd83c\xdf13
first_quarter_moon_with_face=\xd83c\xdf1b
fish=\xd83d\xdc1f
fish_cake=\xd83c\xdf65
fishing_pole_and_fish=\xd83c\xdfa3
fist=\x270a
fist_left=\xd83e\xdd1b
fist_oncoming=\xd83d\xdc4a
fist_raised=\x270a
fist_right=\xd83e\xdd1c
flags=\xd83c\xdf8f
flamingo=\xd83e\xdda9
flashlight=\xd83d\xdd26
flat_shoe=\xd83e\xdd7f
flatbread=\xd83e\xded3
fleur_de_lis=\x269c
flight_arrival=\xd83d\xdeec
flight_departure=\xd83d\xdeeb
flipper=\xd83d\xdc2c
floppy_disk=\xd83d\xdcbe
flower_playing_cards=\xd83c\xdfb4
flushed=\xd83d\xde33
fly=\xd83e\xdeb0
flying_disc=\xd83e\xdd4f
flying_saucer=\xd83d\xdef8
fog=\xd83c\xdf2b
foggy=\xd83c\xdf01
fondue=\xd83e\xded5
foot=\xd83e\xddb6
football=\xd83c\xdfc8
footprints=\xd83d\xdc63
fork_and_knife=\xd83c\xdf74
fortune_cookie=\xd83e\xdd60
fountain=\x26f2
fountain_pen=\xd83d\xdd8b
four_leaf_clover=\xd83c\xdf40
fox_face=\xd83e\xdd8a
fr=\xd83c\xddeb\xd83c\xddf7
framed_picture=\xd83d\xddbc
free=\xd83c\xdd93
french_guiana=\xd83c\xddec\xd83c\xddeb
french_polynesia=\xd83c\xddf5\xd83c\xddeb
french_southern_territories=\xd83c\xddf9\xd83c\xddeb
fried_egg=\xd83c\xdf73
fried_shrimp=\xd83c\xdf64
fries=\xd83c\xdf5f
frog=\xd83d\xdc38
frowning=\xd83d\xde26
frowning_face=\x2639
frowning_person=\xd83d\xde4d
fu=\xd83d\xdd95
fuelpump=\x26fd
full_moon=\xd83c\xdf15
full_moon_with_face=\xd83c\xdf1d
funeral_urn=\x26b1
gabon=\xd83c\xddec\xd83c\xdde6
gambia=\xd83c\xddec\xd83c\xddf2
game_die=\xd83c\xdfb2
garlic=\xd83e\xddc4
gb=\xd83c\xddec\xd83c\xdde7
gear=\x2699
gem=\xd83d\xdc8e
gemini=\x264a
genie=\xd83e\xddde
georgia=\xd83c\xddec\xd83c\xddea
ghana=\xd83c\xddec\xd83c\xdded
ghost=\xd83d\xdc7b
gibraltar=\xd83c\xddec\xd83c\xddee
gift=\xd83c\xdf81
gift_heart=\xd83d\xdc9d
giraffe=\xd83e\xdd92
girl=\xd83d\xdc67
globe_with_meridians=\xd83c\xdf10
gloves=\xd83e\xdde4
goal_net=\xd83e\xdd45
goat=\xd83d\xdc10
goggles=\xd83e\xdd7d
golf=\x26f3
golfing=\xd83c\xdfcc
gorilla=\xd83e\xdd8d
grapes=\xd83c\xdf47
greece=\xd83c\xddec\xd83c\xddf7
green_apple=\xd83c\xdf4f
green_book=\xd83d\xdcd7
green_circle=\xd83d\xdfe2
green_heart=\xd83d\xdc9a
green_salad=\xd83e\xdd57
green_square=\xd83d\xdfe9
greenland=\xd83c\xddec\xd83c\xddf1
grenada=\xd83c\xddec\xd83c\xdde9
grey_exclamation=\x2755
grey_question=\x2754
grimacing=\xd83d\xde2c
grin=\xd83d\xde01
grinning=\xd83d\xde00
guadeloupe=\xd83c\xddec\xd83c\xddf5
guam=\xd83c\xddec\xd83c\xddfa
guard=\xd83d\xdc82
guatemala=\xd83c\xddec\xd83c\xddf9
guernsey=\xd83c\xddec\xd83c\xddec
guide_dog=\xd83e\xddae
guinea=\xd83c\xddec\xd83c\xddf3
guinea_bissau=\xd83c\xddec\xd83c\xddfc
guitar=\xd83c\xdfb8
gun=\xd83d\xdd2b
guyana=\xd83c\xddec\xd83c\xddfe
haircut=\xd83d\xdc87
haiti=\xd83c\xdded\xd83c\xddf9
hamburger=\xd83c\xdf54
hammer=\xd83d\xdd28
hammer_and_pick=\x2692
hammer_and_wrench=\xd83d\xdee0
hamster=\xd83d\xdc39
hand=\x270b
hand_over_mouth=\xd83e\xdd2d
handbag=\xd83d\xdc5c
handball_person=\xd83e\xdd3e
handshake=\xd83e\xdd1d
hankey=\xd83d\xdca9
hatched_chick=\xd83d\xdc25
hatching_chick=\xd83d\xdc23
headphones=\xd83c\xdfa7
headstone=\xd83e\xdea6
hear_no_evil=\xd83d\xde49
heard_mcdonald_islands=\xd83c\xdded\xd83c\xddf2
heart=\x2764
heart_decoration=\xd83d\xdc9f
heart_eyes=\xd83d\xde0d
heart_eyes_cat=\xd83d\xde3b
heartbeat=\xd83d\xdc93
heartpulse=\xd83d\xdc97
hearts=\x2665
heavy_check_mark=\x2714
heavy_division_sign=\x2797
heavy_dollar_sign=\xd83d\xdcb2
heavy_exclamation_mark=\x2757
heavy_heart_exclamation=\x2763
heavy_minus_sign=\x2796
heavy_multiplication_x=\x2716
heavy_plus_sign=\x2795
hedgehog=\xd83e\xdd94
helicopter=\xd83d\xde81
herb=\xd83c\xdf3f
hibiscus=\xd83c\xdf3a
high_brightness=\xd83d\xdd06
high_heel=\xd83d\xdc60
hiking_boot=\xd83e\xdd7e
hindu_temple=\xd83d\xded5
hippopotamus=\xd83e\xdd9b
hocho=\xd83d\xdd2a
hole=\xd83d\xdd73
honduras=\xd83c\xdded\xd83c\xddf3
honey_pot=\xd83c\xdf6f
honeybee=\xd83d\xdc1d
hong_kong=\xd83c\xdded\xd83c\xddf0
hook=\xd83e\xde9d
horse=\xd83d\xdc34
horse_racing=\xd83c\xdfc7
hospital=\xd83c\xdfe5
hot_face=\xd83e\xdd75
hot_pepper=\xd83c\xdf36
hotdog=\xd83c\xdf2d
hotel=\xd83c\xdfe8
hotsprings=\x2668
hourglass=\x231b
hourglass_flowing_sand=\x23f3
house=\xd83c\xdfe0
house_with_garden=\xd83c\xdfe1
houses=\xd83c\xdfd8
hugs=\xd83e\xdd17
hungary=\xd83c\xdded\xd83c\xddfa
hushed=\xd83d\xde2f
hut=\xd83d\xded6
ice_cream=\xd83c\xdf68
ice_cube=\xd83e\xddca
ice_hockey=\xd83c\xdfd2
ice_skate=\x26f8
icecream=\xd83c\xdf66
iceland=\xd83c\xddee\xd83c\xddf8
id=\xd83c\xdd94
ideograph_advantage=\xd83c\xde50
imp=\xd83d\xdc7f
inbox_tray=\xd83d\xdce5
incoming_envelope=\xd83d\xdce8
india=\xd83c\xddee\xd83c\xddf3
indonesia=\xd83c\xddee\xd83c\xdde9
infinity=\x267e
information_desk_person=\xd83d\xdc81
information_source=\x2139
innocent=\xd83d\xde07
interrobang=\x2049
iphone=\xd83d\xdcf1
iran=\xd83c\xddee\xd83c\xddf7
iraq=\xd83c\xddee\xd83c\xddf6
ireland=\xd83c\xddee\xd83c\xddea
isle_of_man=\xd83c\xddee\xd83c\xddf2
israel=\xd83c\xddee\xd83c\xddf1
it=\xd83c\xddee\xd83c\xddf9
izakaya_lantern=\xd83c\xdfee
jack_o_lantern=\xd83c\xdf83
jamaica=\xd83c\xddef\xd83c\xddf2
japan=\xd83d\xddfe
japanese_castle=\xd83c\xdfef
japanese_goblin=\xd83d\xdc7a
japanese_ogre=\xd83d\xdc79
jeans=\xd83d\xdc56
jersey=\xd83c\xddef\xd83c\xddea
jigsaw=\xd83e\xdde9
jordan=\xd83c\xddef\xd83c\xddf4
joy=\xd83d\xde02
joy_cat=\xd83d\xde39
joystick=\xd83d\xdd79
jp=\xd83c\xddef\xd83c\xddf5
juggling_person=\xd83e\xdd39
kaaba=\xd83d\xdd4b
kangaroo=\xd83e\xdd98
kazakhstan=\xd83c\xddf0\xd83c\xddff
kenya=\xd83c\xddf0\xd83c\xddea
key=\xd83d\xdd11
keyboard=\x2328
keycap_ten=\xd83d\xdd1f
kick_scooter=\xd83d\xdef4
kimono=\xd83d\xdc58
kiribati=\xd83c\xddf0\xd83c\xddee
kiss=\xd83d\xdc8b
kissing=\xd83d\xde17
kissing_cat=\xd83d\xde3d
kissing_closed_eyes=\xd83d\xde1a
kissing_heart=\xd83d\xde18
kissing_smiling_eyes=\xd83d\xde19
kite=\xd83e\xde81
kiwi_fruit=\xd83e\xdd5d
kneeling_person=\xd83e\xddce
knife=\xd83d\xdd2a
knot=\xd83e\xdea2
koala=\xd83d\xdc28
koko=\xd83c\xde01
kosovo=\xd83c\xddfd\xd83c\xddf0
kr=\xd83c\xddf0\xd83c\xddf7
kuwait=\xd83c\xddf0\xd83c\xddfc
kyrgyzstan=\xd83c\xddf0\xd83c\xddec
lab_coat=\xd83e\xdd7c
label=\xd83c\xdff7
lacrosse=\xd83e\xdd4d
ladder=\xd83e\xde9c
lady_beetle=\xd83d\xdc1e
lantern=\xd83c\xdfee
laos=\xd83c\xddf1\xd83c\xdde6
large_blue_circle=\xd83d\xdd35
large_blue_diamond=\xd83d\xdd37
large_orange_diamond=\xd83d\xdd36
last_quarter_moon=\xd83c\xdf17
last_quarter_moon_with_face=\xd83c\xdf1c
latin_cross=\x271d
latvia=\xd83c\xddf1\xd83c\xddfb
laughing=\xd83d\xde06
leafy_green=\xd83e\xdd6c
leaves=\xd83c\xdf43
lebanon=\xd83c\xddf1\xd83c\xdde7
ledger=\xd83d\xdcd2
left_luggage=\xd83d\xdec5
left_right_arrow=\x2194
left_speech_bubble=\xd83d\xdde8
leftwards_arrow_with_hook=\x21a9
leg=\xd83e\xddb5
lemon=\xd83c\xdf4b
leo=\x264c
leopard=\xd83d\xdc06
lesotho=\xd83c\xddf1\xd83c\xddf8
level_slider=\xd83c\xdf9a
liberia=\xd83c\xddf1\xd83c\xddf7
libra=\x264e
libya=\xd83c\xddf1\xd83c\xddfe
liechtenstein=\xd83c\xddf1\xd83c\xddee
light_rail=\xd83d\xde88
link=\xd83d\xdd17
lion=\xd83e\xdd81
lips=\xd83d\xdc44
lipstick=\xd83d\xdc84
lithuania=\xd83c\xddf1\xd83c\xddf9
lizard=\xd83e\xdd8e
llama=\xd83e\xdd99
lobster=\xd83e\xdd9e
lock=\xd83d\xdd12
lock_with_ink_pen=\xd83d\xdd0f
lollipop=\xd83c\xdf6d
long_drum=\xd83e\xde98
loop=\x27bf
lotion_bottle=\xd83e\xddf4
lotus_position=\xd83e\xddd8
loud_sound=\xd83d\xdd0a
loudspeaker=\xd83d\xdce2
love_hotel=\xd83c\xdfe9
love_letter=\xd83d\xdc8c
love_you_gesture=\xd83e\xdd1f
low_brightness=\xd83d\xdd05
luggage=\xd83e\xddf3
lungs=\xd83e\xdec1
luxembourg=\xd83c\xddf1\xd83c\xddfa
lying_face=\xd83e\xdd25
m=\x24c2
macau=\xd83c\xddf2\xd83c\xddf4
macedonia=\xd83c\xddf2\xd83c\xddf0
madagascar=\xd83c\xddf2\xd83c\xddec
mag=\xd83d\xdd0d
mag_right=\xd83d\xdd0e
mage=\xd83e\xddd9
magic_wand=\xd83e\xde84
magnet=\xd83e\xddf2
mahjong=\xd83c\xdc04
mailbox=\xd83d\xdceb
mailbox_closed=\xd83d\xdcea
mailbox_with_mail=\xd83d\xdcec
mailbox_with_no_mail=\xd83d\xdced
malawi=\xd83c\xddf2\xd83c\xddfc
malaysia=\xd83c\xddf2\xd83c\xddfe
maldives=\xd83c\xddf2\xd83c\xddfb
male_sign=\x2642
mali=\xd83c\xddf2\xd83c\xddf1
malta=\xd83c\xddf2\xd83c\xddf9
mammoth=\xd83e\xdda3
man=\xd83d\xdc68
man_dancing=\xd83d\xdd7a
man_with_gua_pi_mao=\xd83d\xdc72
mandarin=\xd83c\xdf4a
mango=\xd83e\xdd6d
mans_shoe=\xd83d\xdc5e
mantelpiece_clock=\xd83d\xdd70
manual_wheelchair=\xd83e\xddbd
maple_leaf=\xd83c\xdf41
marshall_islands=\xd83c\xddf2\xd83c\xdded
martial_arts_uniform=\xd83e\xdd4b
martinique=\xd83c\xddf2\xd83c\xddf6
mask=\xd83d\xde37
massage=\xd83d\xdc86
mate=\xd83e\xddc9
mauritania=\xd83c\xddf2\xd83c\xddf7
mauritius=\xd83c\xddf2\xd83c\xddfa
mayotte=\xd83c\xddfe\xd83c\xddf9
meat_on_bone=\xd83c\xdf56
mechanical_arm=\xd83e\xddbe
mechanical_leg=\xd83e\xddbf
medal_military=\xd83c\xdf96
medal_sports=\xd83c\xdfc5
medical_symbol=\x2695
mega=\xd83d\xdce3
melon=\xd83c\xdf48
memo=\xd83d\xdcdd
menorah=\xd83d\xdd4e
mens=\xd83d\xdeb9
merperson=\xd83e\xdddc
metal=\xd83e\xdd18
metro=\xd83d\xde87
mexico=\xd83c\xddf2\xd83c\xddfd
microbe=\xd83e\xdda0
micronesia=\xd83c\xddeb\xd83c\xddf2
microphone=\xd83c\xdfa4
microscope=\xd83d\xdd2c
middle_finger=\xd83d\xdd95
military_helmet=\xd83e\xde96
milk_glass=\xd83e\xdd5b
milky_way=\xd83c\xdf0c
minibus=\xd83d\xde90
minidisc=\xd83d\xdcbd
mirror=\xd83e\xde9e
mobile_phone_off=\xd83d\xdcf4
moldova=\xd83c\xddf2\xd83c\xdde9
monaco=\xd83c\xddf2\xd83c\xdde8
money_mouth_face=\xd83e\xdd11
money_with_wings=\xd83d\xdcb8
moneybag=\xd83d\xdcb0
mongolia=\xd83c\xddf2\xd83c\xddf3
monkey=\xd83d\xdc12
monkey_face=\xd83d\xdc35
monocle_face=\xd83e\xddd0
monorail=\xd83d\xde9d
montenegro=\xd83c\xddf2\xd83c\xddea
montserrat=\xd83c\xddf2\xd83c\xddf8
moon=\xd83c\xdf14
moon_cake=\xd83e\xdd6e
morocco=\xd83c\xddf2\xd83c\xdde6
mortar_board=\xd83c\xdf93
mosque=\xd83d\xdd4c
mosquito=\xd83e\xdd9f
motor_boat=\xd83d\xdee5
motor_scooter=\xd83d\xdef5
motorcycle=\xd83c\xdfcd
motorized_wheelchair=\xd83e\xddbc
motorway=\xd83d\xdee3
mount_fuji=\xd83d\xddfb
mountain=\x26f0
mountain_bicyclist=\xd83d\xdeb5
mountain_cableway=\xd83d\xdea0
mountain_railway=\xd83d\xde9e
mountain_snow=\xd83c\xdfd4
mouse=\xd83d\xdc2d
mouse2=\xd83d\xdc01
mouse_trap=\xd83e\xdea4
movie_camera=\xd83c\xdfa5
moyai=\xd83d\xddff
mozambique=\xd83c\xddf2\xd83c\xddff
mrs_claus=\xd83e\xdd36
muscle=\xd83d\xdcaa
mushroom=\xd83c\xdf44
musical_keyboard=\xd83c\xdfb9
musical_note=\xd83c\xdfb5
musical_score=\xd83c\xdfbc
mute=\xd83d\xdd07
myanmar=\xd83c\xddf2\xd83c\xddf2
nail_care=\xd83d\xdc85
name_badge=\xd83d\xdcdb
namibia=\xd83c\xddf3\xd83c\xdde6
national_park=\xd83c\xdfde
nauru=\xd83c\xddf3\xd83c\xddf7
nauseated_face=\xd83e\xdd22
nazar_amulet=\xd83e\xddff
necktie=\xd83d\xdc54
negative_squared_cross_mark=\x274e
nepal=\xd83c\xddf3\xd83c\xddf5
nerd_face=\xd83e\xdd13
nesting_dolls=\xd83e\xde86
netherlands=\xd83c\xddf3\xd83c\xddf1
neutral_face=\xd83d\xde10
new=\xd83c\xdd95
new_caledonia=\xd83c\xddf3\xd83c\xdde8
new_moon=\xd83c\xdf11
new_moon_with_face=\xd83c\xdf1a
new_zealand=\xd83c\xddf3\xd83c\xddff
newspaper=\xd83d\xdcf0
newspaper_roll=\xd83d\xddde
next_track_button=\x23ed
ng=\xd83c\xdd96
nicaragua=\xd83c\xddf3\xd83c\xddee
niger=\xd83c\xddf3\xd83c\xddea
nigeria=\xd83c\xddf3\xd83c\xddec
night_with_stars=\xd83c\xdf03
ninja=\xd83e\xdd77
niue=\xd83c\xddf3\xd83c\xddfa
no_bell=\xd83d\xdd15
no_bicycles=\xd83d\xdeb3
no_entry=\x26d4
no_entry_sign=\xd83d\xdeab
no_good=\xd83d\xde45
no_mobile_phones=\xd83d\xdcf5
no_mouth=\xd83d\xde36
no_pedestrians=\xd83d\xdeb7
no_smoking=\xd83d\xdead
non-potable_water=\xd83d\xdeb1
norfolk_island=\xd83c\xddf3\xd83c\xddeb
north_korea=\xd83c\xddf0\xd83c\xddf5
northern_mariana_islands=\xd83c\xddf2\xd83c\xddf5
norway=\xd83c\xddf3\xd83c\xddf4
nose=\xd83d\xdc43
notebook=\xd83d\xdcd3
notebook_with_decorative_cover=\xd83d\xdcd4
notes=\xd83c\xdfb6
nut_and_bolt=\xd83d\xdd29
o=\x2b55
o2=\xd83c\xdd7e
ocean=\xd83c\xdf0a
octopus=\xd83d\xdc19
oden=\xd83c\xdf62
office=\xd83c\xdfe2
oil_drum=\xd83d\xdee2
ok=\xd83c\xdd97
ok_hand=\xd83d\xdc4c
ok_person=\xd83d\xde46
old_key=\xd83d\xdddd
older_adult=\xd83e\xddd3