-
Notifications
You must be signed in to change notification settings - Fork 6
/
emoji2alias.py
1462 lines (1445 loc) · 61.5 KB
/
emoji2alias.py
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
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016 Wil Clouser <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# Intercepts emoji characters and converts them back to their alias. Useful if
# you're on a terminal or something that doesn't support emoji.
#
# History:
#
# 2017-04-19, Wil Clouser <[email protected]>:
# v0.3: Improved stability by only applying substitutions to the text sent
# instead of the whole IRC string (which includes other metadata)
# 2016-07-22, Wil Clouser <[email protected]>:
# v0.2: Turns out there are many emoji which do not have aliases! Now
# supporting them as well.
# Added support for Unicode Modifiers (like Fitzpatrick).
# 2016-03-15, Wil Clouser <[email protected]>:
# v0.1: Initial release, based on Mike Reinhardt's BSD
# licensed emoji_aliases.py
SCRIPT_NAME = "emoji2alias"
SCRIPT_AUTHOR = "Wil Clouser <[email protected]>"
SCRIPT_VERSION = "0.3"
SCRIPT_LICENSE = "MIT"
SCRIPT_DESC = "Replaces emoji characters with their names"
import_ok = True
try:
import weechat as w
except:
print "Script must be run under weechat. http://www.weechat.org"
import_ok = False
import re
# This is built from core.zip:/common/uca/allkeys_CLDR.txt available to
# download from cldr.unicode.org/index/downloads . A script whacks any lines
# which *aren't* in the regex ranges below, then converts into a python
# dictionary format.
EMOJI_ALIASES = {
u'\U0001F300': u'[cyclone]',
u'\U0001F301': u'[foggy]',
u'\U0001F302': u'[closed umbrella]',
u'\U0001F303': u'[night with stars]',
u'\U0001F304': u'[sunrise over mountains]',
u'\U0001F305': u'[sunrise]',
u'\U0001F306': u'[cityscape at dusk]',
u'\U0001F307': u'[sunset over buildings]',
u'\U0001F308': u'[rainbow]',
u'\U0001F309': u'[bridge at night]',
u'\U0001F30A': u'[water wave]',
u'\U0001F30B': u'[volcano]',
u'\U0001F30C': u'[milky way]',
u'\U0001F30D': u'[earth globe europe-africa]',
u'\U0001F30E': u'[earth globe americas]',
u'\U0001F30F': u'[earth globe asia-australia]',
u'\U0001F310': u'[globe with meridians]',
u'\U0001F311': u'[new moon symbol]',
u'\U0001F312': u'[waxing crescent moon symbol]',
u'\U0001F313': u'[first quarter moon symbol]',
u'\U0001F314': u'[waxing gibbous moon symbol]',
u'\U0001F315': u'[full moon symbol]',
u'\U0001F316': u'[waning gibbous moon symbol]',
u'\U0001F317': u'[last quarter moon symbol]',
u'\U0001F318': u'[waning crescent moon symbol]',
u'\U0001F319': u'[crescent moon]',
u'\U0001F31A': u'[new moon with face]',
u'\U0001F31B': u'[first quarter moon with face]',
u'\U0001F31C': u'[last quarter moon with face]',
u'\U0001F31D': u'[full moon with face]',
u'\U0001F31E': u'[sun with face]',
u'\U0001F31F': u'[glowing star]',
u'\U0001F320': u'[shooting star]',
u'\U0001F321': u'[thermometer]',
u'\U0001F322': u'[black droplet]',
u'\U0001F323': u'[white sun]',
u'\U0001F324': u'[white sun with small cloud]',
u'\U0001F325': u'[white sun behind cloud]',
u'\U0001F326': u'[white sun behind cloud with rain]',
u'\U0001F327': u'[cloud with rain]',
u'\U0001F328': u'[cloud with snow]',
u'\U0001F329': u'[cloud with lightning]',
u'\U0001F32A': u'[cloud with tornado]',
u'\U0001F32B': u'[fog]',
u'\U0001F32C': u'[wind blowing face]',
u'\U0001F32D': u'[hot dog]',
u'\U0001F32E': u'[taco]',
u'\U0001F32F': u'[burrito]',
u'\U0001F330': u'[chestnut]',
u'\U0001F331': u'[seedling]',
u'\U0001F332': u'[evergreen tree]',
u'\U0001F333': u'[deciduous tree]',
u'\U0001F334': u'[palm tree]',
u'\U0001F335': u'[cactus]',
u'\U0001F336': u'[hot pepper]',
u'\U0001F337': u'[tulip]',
u'\U0001F338': u'[cherry blossom]',
u'\U0001F339': u'[rose]',
u'\U0001F33A': u'[hibiscus]',
u'\U0001F33B': u'[sunflower]',
u'\U0001F33C': u'[blossom]',
u'\U0001F33D': u'[ear of maize]',
u'\U0001F33E': u'[ear of rice]',
u'\U0001F33F': u'[herb]',
u'\U0001F340': u'[four leaf clover]',
u'\U0001F341': u'[maple leaf]',
u'\U0001F342': u'[fallen leaf]',
u'\U0001F343': u'[leaf fluttering in wind]',
u'\U0001F344': u'[mushroom]',
u'\U0001F345': u'[tomato]',
u'\U0001F346': u'[aubergine]',
u'\U0001F347': u'[grapes]',
u'\U0001F348': u'[melon]',
u'\U0001F349': u'[watermelon]',
u'\U0001F34A': u'[tangerine]',
u'\U0001F34B': u'[lemon]',
u'\U0001F34C': u'[banana]',
u'\U0001F34D': u'[pineapple]',
u'\U0001F34E': u'[red apple]',
u'\U0001F34F': u'[green apple]',
u'\U0001F350': u'[pear]',
u'\U0001F351': u'[peach]',
u'\U0001F352': u'[cherries]',
u'\U0001F353': u'[strawberry]',
u'\U0001F354': u'[hamburger]',
u'\U0001F355': u'[slice of pizza]',
u'\U0001F356': u'[meat on bone]',
u'\U0001F357': u'[poultry leg]',
u'\U0001F358': u'[rice cracker]',
u'\U0001F359': u'[rice ball]',
u'\U0001F35A': u'[cooked rice]',
u'\U0001F35B': u'[curry and rice]',
u'\U0001F35C': u'[steaming bowl]',
u'\U0001F35D': u'[spaghetti]',
u'\U0001F35E': u'[bread]',
u'\U0001F35F': u'[french fries]',
u'\U0001F360': u'[roasted sweet potato]',
u'\U0001F361': u'[dango]',
u'\U0001F362': u'[oden]',
u'\U0001F363': u'[sushi]',
u'\U0001F364': u'[fried shrimp]',
u'\U0001F365': u'[fish cake with swirl design]',
u'\U0001F366': u'[soft ice cream]',
u'\U0001F367': u'[shaved ice]',
u'\U0001F368': u'[ice cream]',
u'\U0001F369': u'[doughnut]',
u'\U0001F36A': u'[cookie]',
u'\U0001F36B': u'[chocolate bar]',
u'\U0001F36C': u'[candy]',
u'\U0001F36D': u'[lollipop]',
u'\U0001F36E': u'[custard]',
u'\U0001F36F': u'[honey pot]',
u'\U0001F370': u'[shortcake]',
u'\U0001F371': u'[bento box]',
u'\U0001F372': u'[pot of food]',
u'\U0001F373': u'[cooking]',
u'\U0001F374': u'[fork and knife]',
u'\U0001F375': u'[teacup without handle]',
u'\U0001F376': u'[sake bottle and cup]',
u'\U0001F377': u'[wine glass]',
u'\U0001F378': u'[cocktail glass]',
u'\U0001F379': u'[tropical drink]',
u'\U0001F37A': u'[beer mug]',
u'\U0001F37B': u'[clinking beer mugs]',
u'\U0001F37C': u'[baby bottle]',
u'\U0001F37D': u'[fork and knife with plate]',
u'\U0001F37E': u'[bottle with popping cork]',
u'\U0001F37F': u'[popcorn]',
u'\U0001F380': u'[ribbon]',
u'\U0001F381': u'[wrapped present]',
u'\U0001F382': u'[birthday cake]',
u'\U0001F383': u'[jack-o-lantern]',
u'\U0001F384': u'[christmas tree]',
u'\U0001F385': u'[father christmas]',
u'\U0001F386': u'[fireworks]',
u'\U0001F387': u'[firework sparkler]',
u'\U0001F388': u'[balloon]',
u'\U0001F389': u'[party popper]',
u'\U0001F38A': u'[confetti ball]',
u'\U0001F38B': u'[tanabata tree]',
u'\U0001F38C': u'[crossed flags]',
u'\U0001F38D': u'[pine decoration]',
u'\U0001F38E': u'[japanese dolls]',
u'\U0001F38F': u'[carp streamer]',
u'\U0001F390': u'[wind chime]',
u'\U0001F391': u'[moon viewing ceremony]',
u'\U0001F392': u'[school satchel]',
u'\U0001F393': u'[graduation cap]',
u'\U0001F394': u'[heart with tip on the left]',
u'\U0001F395': u'[bouquet of flowers]',
u'\U0001F396': u'[military medal]',
u'\U0001F397': u'[reminder ribbon]',
u'\U0001F398': u'[musical keyboard with jacks]',
u'\U0001F399': u'[studio microphone]',
u'\U0001F39A': u'[level slider]',
u'\U0001F39B': u'[control knobs]',
u'\U0001F39C': u'[beamed ascending musical notes]',
u'\U0001F39D': u'[beamed descending musical notes]',
u'\U0001F39E': u'[film frames]',
u'\U0001F39F': u'[admission tickets]',
u'\U0001F3A0': u'[carousel horse]',
u'\U0001F3A1': u'[ferris wheel]',
u'\U0001F3A2': u'[roller coaster]',
u'\U0001F3A3': u'[fishing pole and fish]',
u'\U0001F3A4': u'[microphone]',
u'\U0001F3A5': u'[movie camera]',
u'\U0001F3A6': u'[cinema]',
u'\U0001F3A7': u'[headphone]',
u'\U0001F3A8': u'[artist palette]',
u'\U0001F3A9': u'[top hat]',
u'\U0001F3AA': u'[circus tent]',
u'\U0001F3AB': u'[ticket]',
u'\U0001F3AC': u'[clapper board]',
u'\U0001F3AD': u'[performing arts]',
u'\U0001F3AE': u'[video game]',
u'\U0001F3AF': u'[direct hit]',
u'\U0001F3B0': u'[slot machine]',
u'\U0001F3B1': u'[billiards]',
u'\U0001F3B2': u'[game die]',
u'\U0001F3B3': u'[bowling]',
u'\U0001F3B4': u'[flower playing cards]',
u'\U0001F3B5': u'[musical note]',
u'\U0001F3B6': u'[multiple musical notes]',
u'\U0001F3B7': u'[saxophone]',
u'\U0001F3B8': u'[guitar]',
u'\U0001F3B9': u'[musical keyboard]',
u'\U0001F3BA': u'[trumpet]',
u'\U0001F3BB': u'[violin]',
u'\U0001F3BC': u'[musical score]',
u'\U0001F3BD': u'[running shirt with sash]',
u'\U0001F3BE': u'[tennis racquet and ball]',
u'\U0001F3BF': u'[ski and ski boot]',
u'\U0001F3C0': u'[basketball and hoop]',
u'\U0001F3C1': u'[chequered flag]',
u'\U0001F3C2': u'[snowboarder]',
u'\U0001F3C3': u'[runner]',
u'\U0001F3C4': u'[surfer]',
u'\U0001F3C5': u'[sports medal]',
u'\U0001F3C6': u'[trophy]',
u'\U0001F3C7': u'[horse racing]',
u'\U0001F3C8': u'[american football]',
u'\U0001F3C9': u'[rugby football]',
u'\U0001F3CA': u'[swimmer]',
u'\U0001F3CB': u'[weight lifter]',
u'\U0001F3CC': u'[golfer]',
u'\U0001F3CD': u'[racing motorcycle]',
u'\U0001F3CE': u'[racing car]',
u'\U0001F3CF': u'[cricket bat and ball]',
u'\U0001F3D0': u'[volleyball]',
u'\U0001F3D1': u'[field hockey stick and ball]',
u'\U0001F3D2': u'[ice hockey stick and puck]',
u'\U0001F3D3': u'[table tennis paddle and ball]',
u'\U0001F3D4': u'[snow capped mountain]',
u'\U0001F3D5': u'[camping]',
u'\U0001F3D6': u'[beach with umbrella]',
u'\U0001F3D7': u'[building construction]',
u'\U0001F3D8': u'[house buildings]',
u'\U0001F3D9': u'[cityscape]',
u'\U0001F3DA': u'[derelict house building]',
u'\U0001F3DB': u'[classical building]',
u'\U0001F3DC': u'[desert]',
u'\U0001F3DD': u'[desert island]',
u'\U0001F3DE': u'[national park]',
u'\U0001F3DF': u'[stadium]',
u'\U0001F3E0': u'[house building]',
u'\U0001F3E1': u'[house with garden]',
u'\U0001F3E2': u'[office building]',
u'\U0001F3E3': u'[japanese post office]',
u'\U0001F3E4': u'[european post office]',
u'\U0001F3E5': u'[hospital]',
u'\U0001F3E6': u'[bank]',
u'\U0001F3E7': u'[automated teller machine]',
u'\U0001F3E8': u'[hotel]',
u'\U0001F3E9': u'[love hotel]',
u'\U0001F3EA': u'[convenience store]',
u'\U0001F3EB': u'[school]',
u'\U0001F3EC': u'[department store]',
u'\U0001F3ED': u'[factory]',
u'\U0001F3EE': u'[izakaya lantern]',
u'\U0001F3EF': u'[japanese castle]',
u'\U0001F3F0': u'[european castle]',
u'\U0001F3F1': u'[white pennant]',
u'\U0001F3F2': u'[black pennant]',
u'\U0001F3F3': u'[waving white flag]',
u'\U0001F3F4': u'[waving black flag]',
u'\U0001F3F5': u'[rosette]',
u'\U0001F3F6': u'[black rosette]',
u'\U0001F3F7': u'[label]',
u'\U0001F3F8': u'[badminton racquet and shuttlecock]',
u'\U0001F3F9': u'[bow and arrow]',
u'\U0001F3FA': u'[amphora]',
u'\U0001F3FB': u'[emoji modifier fitzpatrick type-1-2]',
u'\U0001F3FC': u'[emoji modifier fitzpatrick type-3]',
u'\U0001F3FD': u'[emoji modifier fitzpatrick type-4]',
u'\U0001F3FE': u'[emoji modifier fitzpatrick type-5]',
u'\U0001F3FF': u'[emoji modifier fitzpatrick type-6]',
u'\U0001F400': u'[rat]',
u'\U0001F401': u'[mouse]',
u'\U0001F402': u'[ox]',
u'\U0001F403': u'[water buffalo]',
u'\U0001F404': u'[cow]',
u'\U0001F405': u'[tiger]',
u'\U0001F406': u'[leopard]',
u'\U0001F407': u'[rabbit]',
u'\U0001F408': u'[cat]',
u'\U0001F409': u'[dragon]',
u'\U0001F40A': u'[crocodile]',
u'\U0001F40B': u'[whale]',
u'\U0001F40C': u'[snail]',
u'\U0001F40D': u'[snake]',
u'\U0001F40E': u'[horse]',
u'\U0001F40F': u'[ram]',
u'\U0001F410': u'[goat]',
u'\U0001F411': u'[sheep]',
u'\U0001F412': u'[monkey]',
u'\U0001F413': u'[rooster]',
u'\U0001F414': u'[chicken]',
u'\U0001F415': u'[dog]',
u'\U0001F416': u'[pig]',
u'\U0001F417': u'[boar]',
u'\U0001F418': u'[elephant]',
u'\U0001F419': u'[octopus]',
u'\U0001F41A': u'[spiral shell]',
u'\U0001F41B': u'[bug]',
u'\U0001F41C': u'[ant]',
u'\U0001F41D': u'[honeybee]',
u'\U0001F41E': u'[lady beetle]',
u'\U0001F41F': u'[fish]',
u'\U0001F420': u'[tropical fish]',
u'\U0001F421': u'[blowfish]',
u'\U0001F422': u'[turtle]',
u'\U0001F423': u'[hatching chick]',
u'\U0001F424': u'[baby chick]',
u'\U0001F425': u'[front-facing baby chick]',
u'\U0001F426': u'[bird]',
u'\U0001F427': u'[penguin]',
u'\U0001F428': u'[koala]',
u'\U0001F429': u'[poodle]',
u'\U0001F42A': u'[dromedary camel]',
u'\U0001F42B': u'[bactrian camel]',
u'\U0001F42C': u'[dolphin]',
u'\U0001F42D': u'[mouse face]',
u'\U0001F42E': u'[cow face]',
u'\U0001F42F': u'[tiger face]',
u'\U0001F430': u'[rabbit face]',
u'\U0001F431': u'[cat face]',
u'\U0001F432': u'[dragon face]',
u'\U0001F433': u'[spouting whale]',
u'\U0001F434': u'[horse face]',
u'\U0001F435': u'[monkey face]',
u'\U0001F436': u'[dog face]',
u'\U0001F437': u'[pig face]',
u'\U0001F438': u'[frog face]',
u'\U0001F439': u'[hamster face]',
u'\U0001F43A': u'[wolf face]',
u'\U0001F43B': u'[bear face]',
u'\U0001F43C': u'[panda face]',
u'\U0001F43D': u'[pig nose]',
u'\U0001F43E': u'[paw prints]',
u'\U0001F43F': u'[chipmunk]',
u'\U0001F440': u'[eyes]',
u'\U0001F441': u'[eye]',
u'\U0001F442': u'[ear]',
u'\U0001F443': u'[nose]',
u'\U0001F444': u'[mouth]',
u'\U0001F445': u'[tongue]',
u'\U0001F446': u'[white up pointing backhand index]',
u'\U0001F447': u'[white down pointing backhand index]',
u'\U0001F448': u'[white left pointing backhand index]',
u'\U0001F449': u'[white right pointing backhand index]',
u'\U0001F44A': u'[fisted hand sign]',
u'\U0001F44B': u'[waving hand sign]',
u'\U0001F44C': u'[ok hand sign]',
u'\U0001F44D': u'[thumbs up sign]',
u'\U0001F44E': u'[thumbs down sign]',
u'\U0001F44F': u'[clapping hands sign]',
u'\U0001F450': u'[open hands sign]',
u'\U0001F451': u'[crown]',
u'\U0001F452': u'[womans hat]',
u'\U0001F453': u'[eyeglasses]',
u'\U0001F454': u'[necktie]',
u'\U0001F455': u'[t-shirt]',
u'\U0001F456': u'[jeans]',
u'\U0001F457': u'[dress]',
u'\U0001F458': u'[kimono]',
u'\U0001F459': u'[bikini]',
u'\U0001F45A': u'[womans clothes]',
u'\U0001F45B': u'[purse]',
u'\U0001F45C': u'[handbag]',
u'\U0001F45D': u'[pouch]',
u'\U0001F45E': u'[mans shoe]',
u'\U0001F45F': u'[athletic shoe]',
u'\U0001F460': u'[high-heeled shoe]',
u'\U0001F461': u'[womans sandal]',
u'\U0001F462': u'[womans boots]',
u'\U0001F463': u'[footprints]',
u'\U0001F464': u'[bust in silhouette]',
u'\U0001F465': u'[busts in silhouette]',
u'\U0001F466': u'[boy]',
u'\U0001F467': u'[girl]',
u'\U0001F468': u'[man]',
u'\U0001F469': u'[woman]',
u'\U0001F46A': u'[family]',
u'\U0001F46B': u'[man and woman holding hands]',
u'\U0001F46C': u'[two men holding hands]',
u'\U0001F46D': u'[two women holding hands]',
u'\U0001F46E': u'[police officer]',
u'\U0001F46F': u'[woman with bunny ears]',
u'\U0001F470': u'[bride with veil]',
u'\U0001F471': u'[person with blond hair]',
u'\U0001F472': u'[man with gua pi mao]',
u'\U0001F473': u'[man with turban]',
u'\U0001F474': u'[older man]',
u'\U0001F475': u'[older woman]',
u'\U0001F476': u'[baby]',
u'\U0001F477': u'[construction worker]',
u'\U0001F478': u'[princess]',
u'\U0001F479': u'[japanese ogre]',
u'\U0001F47A': u'[japanese goblin]',
u'\U0001F47B': u'[ghost]',
u'\U0001F47C': u'[baby angel]',
u'\U0001F47D': u'[extraterrestrial alien]',
u'\U0001F47E': u'[alien monster]',
u'\U0001F47F': u'[imp]',
u'\U0001F480': u'[skull]',
u'\U0001F481': u'[information desk person]',
u'\U0001F482': u'[guardsman]',
u'\U0001F483': u'[dancer]',
u'\U0001F484': u'[lipstick]',
u'\U0001F485': u'[nail polish]',
u'\U0001F486': u'[face massage]',
u'\U0001F487': u'[haircut]',
u'\U0001F488': u'[barber pole]',
u'\U0001F489': u'[syringe]',
u'\U0001F48A': u'[pill]',
u'\U0001F48B': u'[kiss mark]',
u'\U0001F48C': u'[love letter]',
u'\U0001F48D': u'[ring]',
u'\U0001F48E': u'[gem stone]',
u'\U0001F48F': u'[kiss]',
u'\U0001F490': u'[bouquet]',
u'\U0001F491': u'[couple with heart]',
u'\U0001F492': u'[wedding]',
u'\U0001F493': u'[beating heart]',
u'\U0001F494': u'[broken heart]',
u'\U0001F495': u'[two hearts]',
u'\U0001F496': u'[sparkling heart]',
u'\U0001F497': u'[growing heart]',
u'\U0001F498': u'[heart with arrow]',
u'\U0001F499': u'[blue heart]',
u'\U0001F49A': u'[green heart]',
u'\U0001F49B': u'[yellow heart]',
u'\U0001F49C': u'[purple heart]',
u'\U0001F49D': u'[heart with ribbon]',
u'\U0001F49E': u'[revolving hearts]',
u'\U0001F49F': u'[heart decoration]',
u'\U0001F4A0': u'[diamond shape with a dot inside]',
u'\U0001F4A1': u'[electric light bulb]',
u'\U0001F4A2': u'[anger symbol]',
u'\U0001F4A3': u'[bomb]',
u'\U0001F4A4': u'[sleeping symbol]',
u'\U0001F4A5': u'[collision symbol]',
u'\U0001F4A6': u'[splashing sweat symbol]',
u'\U0001F4A7': u'[droplet]',
u'\U0001F4A8': u'[dash symbol]',
u'\U0001F4A9': u'[pile of poo]',
u'\U0001F4AA': u'[flexed biceps]',
u'\U0001F4AB': u'[dizzy symbol]',
u'\U0001F4AC': u'[speech balloon]',
u'\U0001F4AD': u'[thought balloon]',
u'\U0001F4AE': u'[white flower]',
u'\U0001F4AF': u'[hundred points symbol]',
u'\U0001F4B0': u'[money bag]',
u'\U0001F4B1': u'[currency exchange]',
u'\U0001F4B2': u'[heavy dollar sign]',
u'\U0001F4B3': u'[credit card]',
u'\U0001F4B4': u'[banknote with yen sign]',
u'\U0001F4B5': u'[banknote with dollar sign]',
u'\U0001F4B6': u'[banknote with euro sign]',
u'\U0001F4B7': u'[banknote with pound sign]',
u'\U0001F4B8': u'[money with wings]',
u'\U0001F4B9': u'[chart with upwards trend and yen sign]',
u'\U0001F4BA': u'[seat]',
u'\U0001F4BB': u'[personal computer]',
u'\U0001F4BC': u'[briefcase]',
u'\U0001F4BD': u'[minidisc]',
u'\U0001F4BE': u'[floppy disk]',
u'\U0001F4BF': u'[optical disc]',
u'\U0001F4C0': u'[dvd]',
u'\U0001F4C1': u'[file folder]',
u'\U0001F4C2': u'[open file folder]',
u'\U0001F4C3': u'[page with curl]',
u'\U0001F4C4': u'[page facing up]',
u'\U0001F4C5': u'[calendar]',
u'\U0001F4C6': u'[tear-off calendar]',
u'\U0001F4C7': u'[card index]',
u'\U0001F4C8': u'[chart with upwards trend]',
u'\U0001F4C9': u'[chart with downwards trend]',
u'\U0001F4CA': u'[bar chart]',
u'\U0001F4CB': u'[clipboard]',
u'\U0001F4CC': u'[pushpin]',
u'\U0001F4CD': u'[round pushpin]',
u'\U0001F4CE': u'[paperclip]',
u'\U0001F4CF': u'[straight ruler]',
u'\U0001F4D0': u'[triangular ruler]',
u'\U0001F4D1': u'[bookmark tabs]',
u'\U0001F4D2': u'[ledger]',
u'\U0001F4D3': u'[notebook]',
u'\U0001F4D4': u'[notebook with decorative cover]',
u'\U0001F4D5': u'[closed book]',
u'\U0001F4D6': u'[open book]',
u'\U0001F4D7': u'[green book]',
u'\U0001F4D8': u'[blue book]',
u'\U0001F4D9': u'[orange book]',
u'\U0001F4DA': u'[books]',
u'\U0001F4DB': u'[name badge]',
u'\U0001F4DC': u'[scroll]',
u'\U0001F4DD': u'[memo]',
u'\U0001F4DE': u'[telephone receiver]',
u'\U0001F4DF': u'[pager]',
u'\U0001F4E0': u'[fax machine]',
u'\U0001F4E1': u'[satellite antenna]',
u'\U0001F4E2': u'[public address loudspeaker]',
u'\U0001F4E3': u'[cheering megaphone]',
u'\U0001F4E4': u'[outbox tray]',
u'\U0001F4E5': u'[inbox tray]',
u'\U0001F4E6': u'[package]',
u'\U0001F4E7': u'[e-mail symbol]',
u'\U0001F4E8': u'[incoming envelope]',
u'\U0001F4E9': u'[envelope with downwards arrow above]',
u'\U0001F4EA': u'[closed mailbox with lowered flag]',
u'\U0001F4EB': u'[closed mailbox with raised flag]',
u'\U0001F4EC': u'[open mailbox with raised flag]',
u'\U0001F4ED': u'[open mailbox with lowered flag]',
u'\U0001F4EE': u'[postbox]',
u'\U0001F4EF': u'[postal horn]',
u'\U0001F4F0': u'[newspaper]',
u'\U0001F4F1': u'[mobile phone]',
u'\U0001F4F2': u'[mobile phone with rightwards arrow at left]',
u'\U0001F4F3': u'[vibration mode]',
u'\U0001F4F4': u'[mobile phone off]',
u'\U0001F4F5': u'[no mobile phones]',
u'\U0001F4F6': u'[antenna with bars]',
u'\U0001F4F7': u'[camera]',
u'\U0001F4F8': u'[camera with flash]',
u'\U0001F4F9': u'[video camera]',
u'\U0001F4FA': u'[television]',
u'\U0001F4FB': u'[radio]',
u'\U0001F4FC': u'[videocassette]',
u'\U0001F4FD': u'[film projector]',
u'\U0001F4FE': u'[portable stereo]',
u'\U0001F4FF': u'[prayer beads]',
u'\U0001F500': u'[twisted rightwards arrows]',
u'\U0001F501': u'[clockwise rightwards and leftwards open circle arrows]',
u'\U0001F502': u'[clockwise rightwards and leftwards open circle arrows with circled one overlay]',
u'\U0001F503': u'[clockwise downwards and upwards open circle arrows]',
u'\U0001F504': u'[anticlockwise downwards and upwards open circle arrows]',
u'\U0001F505': u'[low brightness symbol]',
u'\U0001F506': u'[high brightness symbol]',
u'\U0001F507': u'[speaker with cancellation stroke]',
u'\U0001F508': u'[speaker]',
u'\U0001F509': u'[speaker with one sound wave]',
u'\U0001F50A': u'[speaker with three sound waves]',
u'\U0001F50B': u'[battery]',
u'\U0001F50C': u'[electric plug]',
u'\U0001F50D': u'[left-pointing magnifying glass]',
u'\U0001F50E': u'[right-pointing magnifying glass]',
u'\U0001F50F': u'[lock with ink pen]',
u'\U0001F510': u'[closed lock with key]',
u'\U0001F511': u'[key]',
u'\U0001F512': u'[lock]',
u'\U0001F513': u'[open lock]',
u'\U0001F514': u'[bell]',
u'\U0001F515': u'[bell with cancellation stroke]',
u'\U0001F516': u'[bookmark]',
u'\U0001F517': u'[link symbol]',
u'\U0001F518': u'[radio button]',
u'\U0001F519': u'[back with leftwards arrow above]',
u'\U0001F51A': u'[end with leftwards arrow above]',
u'\U0001F51B': u'[on with exclamation mark with left right arrow above]',
u'\U0001F51C': u'[soon with rightwards arrow above]',
u'\U0001F51D': u'[top with upwards arrow above]',
u'\U0001F51E': u'[no one under eighteen symbol]',
u'\U0001F51F': u'[keycap ten]',
u'\U0001F520': u'[input symbol for latin capital letters]',
u'\U0001F521': u'[input symbol for latin small letters]',
u'\U0001F522': u'[input symbol for numbers]',
u'\U0001F523': u'[input symbol for symbols]',
u'\U0001F524': u'[input symbol for latin letters]',
u'\U0001F525': u'[fire]',
u'\U0001F526': u'[electric torch]',
u'\U0001F527': u'[wrench]',
u'\U0001F528': u'[hammer]',
u'\U0001F529': u'[nut and bolt]',
u'\U0001F52A': u'[hocho]',
u'\U0001F52B': u'[pistol]',
u'\U0001F52C': u'[microscope]',
u'\U0001F52D': u'[telescope]',
u'\U0001F52E': u'[crystal ball]',
u'\U0001F52F': u'[six pointed star with middle dot]',
u'\U0001F530': u'[japanese symbol for beginner]',
u'\U0001F531': u'[trident emblem]',
u'\U0001F532': u'[black square button]',
u'\U0001F533': u'[white square button]',
u'\U0001F534': u'[large red circle]',
u'\U0001F535': u'[large blue circle]',
u'\U0001F536': u'[large orange diamond]',
u'\U0001F537': u'[large blue diamond]',
u'\U0001F538': u'[small orange diamond]',
u'\U0001F539': u'[small blue diamond]',
u'\U0001F53A': u'[up-pointing red triangle]',
u'\U0001F53B': u'[down-pointing red triangle]',
u'\U0001F53C': u'[up-pointing small red triangle]',
u'\U0001F53D': u'[down-pointing small red triangle]',
u'\U0001F53E': u'[lower right shadowed white circle]',
u'\U0001F53F': u'[upper right shadowed white circle]',
u'\U0001F540': u'[circled cross pommee]',
u'\U0001F541': u'[cross pommee with half-circle below]',
u'\U0001F542': u'[cross pommee]',
u'\U0001F543': u'[notched left semicircle with three dots]',
u'\U0001F544': u'[notched right semicircle with three dots]',
u'\U0001F545': u'[symbol for marks chapter]',
u'\U0001F546': u'[white latin cross]',
u'\U0001F547': u'[heavy latin cross]',
u'\U0001F548': u'[celtic cross]',
u'\U0001F549': u'[om symbol]',
u'\U0001F54A': u'[dove of peace]',
u'\U0001F54B': u'[kaaba]',
u'\U0001F54C': u'[mosque]',
u'\U0001F54D': u'[synagogue]',
u'\U0001F54E': u'[menorah with nine branches]',
u'\U0001F54F': u'[bowl of hygieia]',
u'\U0001F550': u'[clock face one oclock]',
u'\U0001F551': u'[clock face two oclock]',
u'\U0001F552': u'[clock face three oclock]',
u'\U0001F553': u'[clock face four oclock]',
u'\U0001F554': u'[clock face five oclock]',
u'\U0001F555': u'[clock face six oclock]',
u'\U0001F556': u'[clock face seven oclock]',
u'\U0001F557': u'[clock face eight oclock]',
u'\U0001F558': u'[clock face nine oclock]',
u'\U0001F559': u'[clock face ten oclock]',
u'\U0001F55A': u'[clock face eleven oclock]',
u'\U0001F55B': u'[clock face twelve oclock]',
u'\U0001F55C': u'[clock face one-thirty]',
u'\U0001F55D': u'[clock face two-thirty]',
u'\U0001F55E': u'[clock face three-thirty]',
u'\U0001F55F': u'[clock face four-thirty]',
u'\U0001F560': u'[clock face five-thirty]',
u'\U0001F561': u'[clock face six-thirty]',
u'\U0001F562': u'[clock face seven-thirty]',
u'\U0001F563': u'[clock face eight-thirty]',
u'\U0001F564': u'[clock face nine-thirty]',
u'\U0001F565': u'[clock face ten-thirty]',
u'\U0001F566': u'[clock face eleven-thirty]',
u'\U0001F567': u'[clock face twelve-thirty]',
u'\U0001F568': u'[right speaker]',
u'\U0001F569': u'[right speaker with one sound wave]',
u'\U0001F56A': u'[right speaker with three sound waves]',
u'\U0001F56B': u'[bullhorn]',
u'\U0001F56C': u'[bullhorn with sound waves]',
u'\U0001F56D': u'[ringing bell]',
u'\U0001F56E': u'[book]',
u'\U0001F56F': u'[candle]',
u'\U0001F570': u'[mantelpiece clock]',
u'\U0001F571': u'[black skull and crossbones]',
u'\U0001F572': u'[no piracy]',
u'\U0001F573': u'[hole]',
u'\U0001F574': u'[man in business suit levitating]',
u'\U0001F575': u'[sleuth or spy]',
u'\U0001F576': u'[dark sunglasses]',
u'\U0001F577': u'[spider]',
u'\U0001F578': u'[spider web]',
u'\U0001F579': u'[joystick]',
u'\U0001F57B': u'[left hand telephone receiver]',
u'\U0001F57C': u'[telephone receiver with page]',
u'\U0001F57D': u'[right hand telephone receiver]',
u'\U0001F57E': u'[white touchtone telephone]',
u'\U0001F57F': u'[black touchtone telephone]',
u'\U0001F580': u'[telephone on top of modem]',
u'\U0001F581': u'[clamshell mobile phone]',
u'\U0001F582': u'[back of envelope]',
u'\U0001F583': u'[stamped envelope]',
u'\U0001F584': u'[envelope with lightning]',
u'\U0001F585': u'[flying envelope]',
u'\U0001F586': u'[pen over stamped envelope]',
u'\U0001F587': u'[linked paperclips]',
u'\U0001F588': u'[black pushpin]',
u'\U0001F589': u'[lower left pencil]',
u'\U0001F58A': u'[lower left ballpoint pen]',
u'\U0001F58B': u'[lower left fountain pen]',
u'\U0001F58C': u'[lower left paintbrush]',
u'\U0001F58D': u'[lower left crayon]',
u'\U0001F58E': u'[left writing hand]',
u'\U0001F58F': u'[turned ok hand sign]',
u'\U0001F590': u'[raised hand with fingers splayed]',
u'\U0001F591': u'[reversed raised hand with fingers splayed]',
u'\U0001F592': u'[reversed thumbs up sign]',
u'\U0001F593': u'[reversed thumbs down sign]',
u'\U0001F594': u'[reversed victory hand]',
u'\U0001F595': u'[reversed hand with middle finger extended]',
u'\U0001F596': u'[raised hand with part between middle and ring fingers]',
u'\U0001F597': u'[white down pointing left hand index]',
u'\U0001F598': u'[sideways white left pointing index]',
u'\U0001F599': u'[sideways white right pointing index]',
u'\U0001F59A': u'[sideways black left pointing index]',
u'\U0001F59B': u'[sideways black right pointing index]',
u'\U0001F59C': u'[black left pointing backhand index]',
u'\U0001F59D': u'[black right pointing backhand index]',
u'\U0001F59E': u'[sideways white up pointing index]',
u'\U0001F59F': u'[sideways white down pointing index]',
u'\U0001F5A0': u'[sideways black up pointing index]',
u'\U0001F5A1': u'[sideways black down pointing index]',
u'\U0001F5A2': u'[black up pointing backhand index]',
u'\U0001F5A3': u'[black down pointing backhand index]',
u'\U0001F5A5': u'[desktop computer]',
u'\U0001F5A6': u'[keyboard and mouse]',
u'\U0001F5A7': u'[three networked computers]',
u'\U0001F5A8': u'[printer]',
u'\U0001F5A9': u'[pocket calculator]',
u'\U0001F5AA': u'[black hard shell floppy disk]',
u'\U0001F5AB': u'[white hard shell floppy disk]',
u'\U0001F5AC': u'[soft shell floppy disk]',
u'\U0001F5AD': u'[tape cartridge]',
u'\U0001F5AE': u'[wired keyboard]',
u'\U0001F5AF': u'[one button mouse]',
u'\U0001F5B0': u'[two button mouse]',
u'\U0001F5B1': u'[three button mouse]',
u'\U0001F5B2': u'[trackball]',
u'\U0001F5B3': u'[old personal computer]',
u'\U0001F5B4': u'[hard disk]',
u'\U0001F5B5': u'[screen]',
u'\U0001F5B6': u'[printer icon]',
u'\U0001F5B7': u'[fax icon]',
u'\U0001F5B8': u'[optical disc icon]',
u'\U0001F5B9': u'[document with text]',
u'\U0001F5BA': u'[document with text and picture]',
u'\U0001F5BB': u'[document with picture]',
u'\U0001F5BC': u'[frame with picture]',
u'\U0001F5BD': u'[frame with tiles]',
u'\U0001F5BE': u'[frame with an x]',
u'\U0001F5BF': u'[black folder]',
u'\U0001F5C0': u'[folder]',
u'\U0001F5C1': u'[open folder]',
u'\U0001F5C2': u'[card index dividers]',
u'\U0001F5C3': u'[card file box]',
u'\U0001F5C4': u'[file cabinet]',
u'\U0001F5C5': u'[empty note]',
u'\U0001F5C6': u'[empty note page]',
u'\U0001F5C7': u'[empty note pad]',
u'\U0001F5C8': u'[note]',
u'\U0001F5C9': u'[note page]',
u'\U0001F5CA': u'[note pad]',
u'\U0001F5CB': u'[empty document]',
u'\U0001F5CC': u'[empty page]',
u'\U0001F5CD': u'[empty pages]',
u'\U0001F5CE': u'[document]',
u'\U0001F5CF': u'[page]',
u'\U0001F5D0': u'[pages]',
u'\U0001F5D1': u'[wastebasket]',
u'\U0001F5D2': u'[spiral note pad]',
u'\U0001F5D3': u'[spiral calendar pad]',
u'\U0001F5D4': u'[desktop window]',
u'\U0001F5D5': u'[minimize]',
u'\U0001F5D6': u'[maximize]',
u'\U0001F5D7': u'[overlap]',
u'\U0001F5D8': u'[clockwise right and left semicircle arrows]',
u'\U0001F5D9': u'[cancellation x]',
u'\U0001F5DA': u'[increase font size symbol]',
u'\U0001F5DB': u'[decrease font size symbol]',
u'\U0001F5DC': u'[compression]',
u'\U0001F5DD': u'[old key]',
u'\U0001F5DE': u'[rolled-up newspaper]',
u'\U0001F5DF': u'[page with circled text]',
u'\U0001F5E0': u'[stock chart]',
u'\U0001F5E1': u'[dagger knife]',
u'\U0001F5E2': u'[lips]',
u'\U0001F5E3': u'[speaking head in silhouette]',
u'\U0001F5E4': u'[three rays above]',
u'\U0001F5E5': u'[three rays below]',
u'\U0001F5E6': u'[three rays left]',
u'\U0001F5E7': u'[three rays right]',
u'\U0001F5E8': u'[left speech bubble]',
u'\U0001F5E9': u'[right speech bubble]',
u'\U0001F5EA': u'[two speech bubbles]',
u'\U0001F5EB': u'[three speech bubbles]',
u'\U0001F5EC': u'[left thought bubble]',
u'\U0001F5ED': u'[right thought bubble]',
u'\U0001F5EE': u'[left anger bubble]',
u'\U0001F5EF': u'[right anger bubble]',
u'\U0001F5F0': u'[mood bubble]',
u'\U0001F5F1': u'[lightning mood bubble]',
u'\U0001F5F2': u'[lightning mood]',
u'\U0001F5F3': u'[ballot box with ballot]',
u'\U0001F5F4': u'[ballot script x]',
u'\U0001F5F5': u'[ballot box with script x]',
u'\U0001F5F6': u'[ballot bold script x]',
u'\U0001F5F7': u'[ballot box with bold script x]',
u'\U0001F5F8': u'[light check mark]',
u'\U0001F5F9': u'[ballot box with bold check]',
u'\U0001F5FA': u'[world map]',
u'\U0001F5FB': u'[mount fuji]',
u'\U0001F5FC': u'[tokyo tower]',
u'\U0001F5FD': u'[statue of liberty]',
u'\U0001F5FE': u'[silhouette of japan]',
u'\U0001F5FF': u'[moyai]',
u'\U0001F600': u'[grinning face]',
u'\U0001F601': u'[grinning face with smiling eyes]',
u'\U0001F602': u'[face with tears of joy]',
u'\U0001F603': u'[smiling face with open mouth]',
u'\U0001F604': u'[smiling face with open mouth and smiling eyes]',
u'\U0001F605': u'[smiling face with open mouth and cold sweat]',
u'\U0001F606': u'[smiling face with open mouth and tightly-closed eyes]',
u'\U0001F607': u'[smiling face with halo]',
u'\U0001F608': u'[smiling face with horns]',
u'\U0001F609': u'[winking face]',
u'\U0001F60A': u'[smiling face with smiling eyes]',
u'\U0001F60B': u'[face savouring delicious food]',
u'\U0001F60C': u'[relieved face]',
u'\U0001F60D': u'[smiling face with heart-shaped eyes]',
u'\U0001F60E': u'[smiling face with sunglasses]',
u'\U0001F60F': u'[smirking face]',
u'\U0001F610': u'[neutral face]',
u'\U0001F611': u'[expressionless face]',
u'\U0001F612': u'[unamused face]',
u'\U0001F613': u'[face with cold sweat]',
u'\U0001F614': u'[pensive face]',
u'\U0001F615': u'[confused face]',
u'\U0001F616': u'[confounded face]',
u'\U0001F617': u'[kissing face]',
u'\U0001F618': u'[face throwing a kiss]',
u'\U0001F619': u'[kissing face with smiling eyes]',
u'\U0001F61A': u'[kissing face with closed eyes]',
u'\U0001F61B': u'[face with stuck-out tongue]',
u'\U0001F61C': u'[face with stuck-out tongue and winking eye]',
u'\U0001F61D': u'[face with stuck-out tongue and tightly-closed eyes]',
u'\U0001F61E': u'[disappointed face]',
u'\U0001F61F': u'[worried face]',
u'\U0001F620': u'[angry face]',
u'\U0001F621': u'[pouting face]',
u'\U0001F622': u'[crying face]',
u'\U0001F623': u'[persevering face]',
u'\U0001F624': u'[face with look of triumph]',
u'\U0001F625': u'[disappointed but relieved face]',
u'\U0001F626': u'[frowning face with open mouth]',
u'\U0001F627': u'[anguished face]',
u'\U0001F628': u'[fearful face]',
u'\U0001F629': u'[weary face]',
u'\U0001F62A': u'[sleepy face]',
u'\U0001F62B': u'[tired face]',
u'\U0001F62C': u'[grimacing face]',
u'\U0001F62D': u'[loudly crying face]',
u'\U0001F62E': u'[face with open mouth]',
u'\U0001F62F': u'[hushed face]',
u'\U0001F630': u'[face with open mouth and cold sweat]',
u'\U0001F631': u'[face screaming in fear]',
u'\U0001F632': u'[astonished face]',
u'\U0001F633': u'[flushed face]',
u'\U0001F634': u'[sleeping face]',
u'\U0001F635': u'[dizzy face]',
u'\U0001F636': u'[face without mouth]',
u'\U0001F637': u'[face with medical mask]',
u'\U0001F638': u'[grinning cat face with smiling eyes]',
u'\U0001F639': u'[cat face with tears of joy]',
u'\U0001F63A': u'[smiling cat face with open mouth]',
u'\U0001F63B': u'[smiling cat face with heart-shaped eyes]',
u'\U0001F63C': u'[cat face with wry smile]',
u'\U0001F63D': u'[kissing cat face with closed eyes]',
u'\U0001F63E': u'[pouting cat face]',
u'\U0001F63F': u'[crying cat face]',
u'\U0001F640': u'[weary cat face]',
u'\U0001F641': u'[slightly frowning face]',
u'\U0001F642': u'[slightly smiling face]',
u'\U0001F643': u'[upside-down face]',
u'\U0001F644': u'[face with rolling eyes]',
u'\U0001F645': u'[face with no good gesture]',
u'\U0001F646': u'[face with ok gesture]',
u'\U0001F647': u'[person bowing deeply]',
u'\U0001F648': u'[see-no-evil monkey]',
u'\U0001F649': u'[hear-no-evil monkey]',
u'\U0001F64A': u'[speak-no-evil monkey]',
u'\U0001F64B': u'[happy person raising one hand]',
u'\U0001F64C': u'[person raising both hands in celebration]',
u'\U0001F64D': u'[person frowning]',
u'\U0001F64E': u'[person with pouting face]',
u'\U0001F64F': u'[person with folded hands]',
u'\U0001F680': u'[rocket]',
u'\U0001F681': u'[helicopter]',
u'\U0001F682': u'[steam locomotive]',
u'\U0001F683': u'[railway car]',
u'\U0001F684': u'[high-speed train]',
u'\U0001F685': u'[high-speed train with bullet nose]',
u'\U0001F686': u'[train]',
u'\U0001F687': u'[metro]',
u'\U0001F688': u'[light rail]',
u'\U0001F689': u'[station]',
u'\U0001F68A': u'[tram]',
u'\U0001F68B': u'[tram car]',
u'\U0001F68C': u'[bus]',
u'\U0001F68D': u'[oncoming bus]',
u'\U0001F68E': u'[trolleybus]',
u'\U0001F68F': u'[bus stop]',
u'\U0001F690': u'[minibus]',
u'\U0001F691': u'[ambulance]',
u'\U0001F692': u'[fire engine]',
u'\U0001F693': u'[police car]',
u'\U0001F694': u'[oncoming police car]',
u'\U0001F695': u'[taxi]',
u'\U0001F696': u'[oncoming taxi]',
u'\U0001F697': u'[automobile]',
u'\U0001F698': u'[oncoming automobile]',
u'\U0001F699': u'[recreational vehicle]',
u'\U0001F69A': u'[delivery truck]',
u'\U0001F69B': u'[articulated lorry]',
u'\U0001F69C': u'[tractor]',
u'\U0001F69D': u'[monorail]',
u'\U0001F69E': u'[mountain railway]',
u'\U0001F69F': u'[suspension railway]',
u'\U0001F6A0': u'[mountain cableway]',
u'\U0001F6A1': u'[aerial tramway]',
u'\U0001F6A2': u'[ship]',
u'\U0001F6A3': u'[rowboat]',
u'\U0001F6A4': u'[speedboat]',
u'\U0001F6A5': u'[horizontal traffic light]',
u'\U0001F6A6': u'[vertical traffic light]',
u'\U0001F6A7': u'[construction sign]',
u'\U0001F6A8': u'[police cars revolving light]',
u'\U0001F6A9': u'[triangular flag on post]',
u'\U0001F6AA': u'[door]',
u'\U0001F6AB': u'[no entry sign]',
u'\U0001F6AC': u'[smoking symbol]',
u'\U0001F6AD': u'[no smoking symbol]',
u'\U0001F6AE': u'[put litter in its place symbol]',
u'\U0001F6AF': u'[do not litter symbol]',
u'\U0001F6B0': u'[potable water symbol]',
u'\U0001F6B1': u'[non-potable water symbol]',
u'\U0001F6B2': u'[bicycle]',
u'\U0001F6B3': u'[no bicycles]',
u'\U0001F6B4': u'[bicyclist]',
u'\U0001F6B5': u'[mountain bicyclist]',
u'\U0001F6B6': u'[pedestrian]',
u'\U0001F6B7': u'[no pedestrians]',
u'\U0001F6B8': u'[children crossing]',
u'\U0001F6B9': u'[mens symbol]',
u'\U0001F6BA': u'[womens symbol]',
u'\U0001F6BB': u'[restroom]',
u'\U0001F6BC': u'[baby symbol]',
u'\U0001F6BD': u'[toilet]',
u'\U0001F6BE': u'[water closet]',
u'\U0001F6BF': u'[shower]',
u'\U0001F6C0': u'[bath]',
u'\U0001F6C1': u'[bathtub]',
u'\U0001F6C2': u'[passport control]',
u'\U0001F6C3': u'[customs]',
u'\U0001F6C4': u'[baggage claim]',
u'\U0001F6C5': u'[left luggage]',
u'\U0001F6C6': u'[triangle with rounded corners]',
u'\U0001F6C7': u'[prohibited sign]',
u'\U0001F6C8': u'[circled information source]',
u'\U0001F6C9': u'[boys symbol]',
u'\U0001F6CA': u'[girls symbol]',
u'\U0001F6CB': u'[couch and lamp]',
u'\U0001F6CC': u'[sleeping accommodation]',
u'\U0001F6CD': u'[shopping bags]',
u'\U0001F6CE': u'[bellhop bell]',
u'\U0001F6CF': u'[bed]',
u'\U0001F6D0': u'[place of worship]',
u'\U0001F6E0': u'[hammer and wrench]',
u'\U0001F6E1': u'[shield]',
u'\U0001F6E2': u'[oil drum]',
u'\U0001F6E3': u'[motorway]',
u'\U0001F6E4': u'[railway track]',
u'\U0001F6E5': u'[motor boat]',
u'\U0001F6E6': u'[up-pointing military airplane]',
u'\U0001F6E7': u'[up-pointing airplane]',
u'\U0001F6E8': u'[up-pointing small airplane]',
u'\U0001F6E9': u'[small airplane]',
u'\U0001F6EA': u'[northeast-pointing airplane]',
u'\U0001F6EB': u'[airplane departure]',
u'\U0001F6EC': u'[airplane arriving]',
u'\U0001F6F0': u'[satellite]',