forked from jticket1024/espeak-en-us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en_emoji
1821 lines (1747 loc) ยท 69 KB
/
en_emoji
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
// Emoji and Other Symbol pronunciations for English
//
// Entries with `text|emoji` in the comments have text and emoji forms. They
// can be followed by [FE0E] to select the text style, and [FE0F] to select
// the emoji style.
//
// Entries with 'other' in the comments are not defined as emoji, but are other
// Unicode characters.
//
// NOTE: See `src/ucd-tools/data/espeak-ng/emoji-data.txt` for additional data
// in interpreting ZWJ emoji sequences.
$textmode
// 0000..007F : C0 Controls and Basic Latin
+ plus // [002B] other
// 0080..00FF : C1 Controls and Latin-1 Supplement
ยข cents // [00A2] other
ยฃ pound // [00A3] other
ยค currency sign // [00A4] other
ยฅ yen // [00A5] other
ยง section // [00A7] other
ยจ double dot // [00A8] other
ยฉ copyright // [00A9] text|emoji
ยฌ not sign // [00AC] other
ยฎ registered // [00AE] text|emoji
ยฐ degrees // [00B0] other
ยฑ plus or minus // [00B1] other
ยต micro // [00B5] other
ยถ paragraph // [00B6] other
ยผ a quarter // [00BC] other
ยฝ a half // [00BD] other
ยพ three quarters // [00BE] other
ร times // [00D7] other
รท divided by // [00F7] other
// 02B0..02FF : Spacing Modifier Letters
ห dot // [02D9] other
// 0900..097F : Devanagari
เฅค danda // [0964] other
// 2000..203C : General Punctuation
โผ double exclamation mark // [203C] text|emoji
โ exclamation question mark // [2049] text|emoji
// 20A0..20CF : Currency Symbols
โจ rupee // [20A8] other
โฌ euros // [20AC] other
โน rupee // [20B9] other
// 2100..214F : Letterlike Symbols
โ numero // [2116] other
โ prescription // [211E] other
โข trade mark // [2122] text|emoji
โน information // [2139] text|emoji
// 2150..218F : Number Forms
โ
one third // [2153] other
โ
two thirds // [2154] other
// 2190..21FF : Arrows
โ left arrow // [2190] other
โ up arrow // [2191] other
โ right arrow // [2192] other
โ down arrow // [2193] other
โ left right arrow // [2194] text|emoji
โ up down arrow // [2195] text|emoji
โ up left arrow // [2196] text|emoji
โ up right arrow // [2197] text|emoji
โ down right arrow // [2198] text|emoji
โ down left arrow // [2199] text|emoji
โฉ right arrow curving left // [21A9] text|emoji
โช left arrow curving right // [21AA] text|emoji
// 2200..22FF : Mathematical Operators
โ delta // [2202] other
โ sum sign // [2211] other
โ minus // [2212] other
โ asterisk // [2217] other
โ square root // [221A] other
โ cube root // [221B] other
โ proportional to // [221D] other
โ infinity // [221E] other
โซ integral // [222B] other
โฌ double integral // [222C] other
โด therefore // [2234] other
โต because // [2235] other
โ approximately // [2248] other
โ not equal to // [2260] other
โก identical to // [2261] other
โค less or equal to // [2264] other
โฅ greater or equal to // [2265] other
// 2300..23FF : Miscellaneous Technical
โ watch // [231A]
โ hourglass done // [231B]
โจ keyboard // [2328] text|emoji
โ eject button // [23CF] text|emoji
โฉ fast forward button // [23E9]
โช fast reverse button // [23EA]
โซ fast up button // [23EB]
โฌ fast down button // [23EC]
โญ next track button // [23ED] text|emoji
โฎ last track button // [23EE] text|emoji
โฏ play or pause button // [23EF] text|emoji
โฐ alarm clock // [23F0]
โฑ stopwatch // [23F1] text|emoji
โฒ timer clock // [23F2] text|emoji
โณ hourglass not done // [23F3]
โธ pause button // [23F8] text|emoji
โน stop button // [23F9] text|emoji
โบ record button // [23FA] text|emoji
// 2460..24FF : Enclosed Alphanumerics
โ circled m // [24C2] text|emoji
// 25A0..25FF : Geometric Shapes
โ black square // [25A0] other
โช black small square // [25AA] text|emoji
โซ white small square // [25AB] text|emoji
โถ play button // [25B6] text|emoji
โ reverse button // [25C0] text|emoji
โ black circle // [25CF] other
โป white medium square // [25FB] text|emoji
โผ black medium square // [25FC] text|emoji
โฝ white medium small square // [25FD]
โพ black medium small square // [25FE]
// 2600..26FF : Miscellaneous Symbols
โ sun // [2600] text|emoji
โ cloud // [2601] text|emoji
โ umbrella // [2602] text|emoji
โ snowman // [2603] text|emoji
โ comet // [2604] text|emoji
โ telephone // [260E] text|emoji
โ ballot box with check // [2611] text|emoji
โ umbrella with rain drops // [2614]
โ hot beverage // [2615]
โ shamrock // [2618] text|emoji
โ index pointing up // [261D] text|emoji
โ skull and crossbones // [2620] text|emoji
โข radioactive // [2622] text|emoji
โฃ biohazard // [2623] text|emoji
โฆ orthodox cross // [2626] text|emoji
โช star and crescent // [262A] text|emoji
โฎ peace symbol // [262E] text|emoji
โฏ yin yang // [262F] text|emoji
โธ wheel of dharma // [2638] text|emoji
โน frowning face // [2639] text|emoji
โบ smiling face // [263A] text|emoji
โ female sign // [2640] text|emoji
โ male sign // [2642] text|emoji
โ aries // [2648]
โ taurus // [2649]
โ gemini // [264A]
โ cancer // [264B]
โ leo // [264C]
โ virgo // [264D]
โ libra // [264E]
โ scorpio // [264F]
โ sagittarius // [2650]
โ capricorn // [2651]
โ aquarius // [2652]
โ pisces // [2653]
โ chess pawn // [265F] text|emoji
โ spade suit // [2660] text|emoji
โฃ club suit // [2663] text|emoji
โฅ heart suit // [2665] text|emoji
โฆ diamond suit // [2666] text|emoji
โจ hot springs // [2668] text|emoji
โญ flat // [266D] other
โฏ sharp // [266F] other
โป recycling symbol // [267B] text|emoji
โพ infinity // [267E] text|emoji
โฟ wheelchair symbol // [267F]
โ hammer and pick // [2692] text|emoji
โ anchor // [2693]
โ crossed swords // [2694] text|emoji
โ medical symbol // [2695] text|emoji
โ balance scale // [2696] text|emoji
โ alembic // [2697] text|emoji
โ gear // [2699] text|emoji
โ atom symbol // [269B] text|emoji
โ fleur de lis // [269C] text|emoji
โ warning // [26A0] text|emoji
โก high voltage // [26A1]
โช white circle // [26AA]
โซ black circle // [26AB]
โฐ coffin // [26B0] text|emoji
โฑ funeral urn // [26B1] text|emoji
โฝ soccer ball // [26BD]
โพ baseball // [26BE]
โ snowman without snow // [26C4]
โ
sun behind cloud // [26C5]
โ cloud with lightning and rain // [26C8] text|emoji
โ ophiuchus // [26CE]
โ pick // [26CF] text|emoji
โ rescue worker's helmet // [26D1] text|emoji
โ chains // [26D3] text|emoji
โ no entry // [26D4]
โฉ shinto shrine // [26E9] text|emoji
โช church // [26EA]
โฐ mountain // [26F0] text|emoji
โฑ umbrella on ground // [26F1] text|emoji
โฒ fountain // [26F2]
โณ flag in hole // [26F3]
โด ferry // [26F4] text|emoji
โต sailboat // [26F5]
โท skier // [26F7] text|emoji
โธ ice skate // [26F8] text|emoji
โน person bouncing ball // [26F9] text|emoji
โบ tent // [26FA]
โฝ fuel pump // [26FD]
// 2700..27BF : Dingbats
โ scissors // [2702] text|emoji
โ
white heavy check mark // [2705]
โ airplane // [2708] text|emoji
โ envelope // [2709] text|emoji
โ raised fist // [270A]
โ raised hand // [270B]
โ victory hand // [270C] text|emoji
โ writing hand // [270D] text|emoji
โ pencil // [270F] text|emoji
โ black nib // [2712] text|emoji
โ heavy check mark // [2714] text|emoji
โ heavy multiplication x // [2716] text|emoji
โ latin cross // [271D] text|emoji
โก star of david // [2721] text|emoji
โจ sparkles // [2728]
โณ eight spoked asterisk // [2733] text|emoji
โด eight pointed star // [2734] text|emoji
โ snowflake // [2744] text|emoji
โ sparkle // [2747] text|emoji
โ cross mark // [274C]
โ cross mark button // [274E]
โ question mark // [2753]
โ white question mark // [2754]
โ white exclamation mark // [2755]
โ exclamation mark // [2757]
โฃ heavy heart exclamation // [2763] text|emoji
โค red heart // [2764] text|emoji
โ heavy plus sign // [2795]
โ heavy minus sign // [2796]
โ heavy division sign // [2797]
โก right arrow // [27A1] text|emoji
โฐ curly loop // [27B0]
โฟ double curly loop // [27BF]
// 2900..297F : Supplemental Arrows-B
โคด right arrow curving up // [2934] text|emoji
โคต right arrow curving down // [2935] text|emoji
// 2B00..2BFF : Miscellaneous Symbols and Arrows
โฌ
left arrow // [2B05] text|emoji
โฌ up arrow // [2B06] text|emoji
โฌ down arrow // [2B07] text|emoji
โฌ black large square // [2B1B]
โฌ white large square // [2B1C]
โญ star // [2B50]
โญ heavy large circle // [2B55]
// 3000..303F : CJK Symbols and Punctuation
ใฐ wavy dash // [3030] text|emoji
ใฝ part alternation mark // [303D] text|emoji
// 3200..32FF : Enclosed CJK Letters and Months
ใ japanese congratulations button // [3297] text|emoji
ใ japanese secret button // [3299] text|emoji
// 1F100..1F1FF : Enclosed Alphanumeric Supplement
๐
ฐ a button blood type // [1F170] text|emoji
๐
ฑ b button blood type // [1F171] text|emoji
๐
พ o button blood type // [1F17E] text|emoji
๐
ฟ p button // [1F17F] text|emoji
๐ a b button blood type // [1F18E]
๐ c l button // [1F191]
๐ cool button // [1F192]
๐ free button // [1F193]
๐ i d button // [1F194]
๐ new button // [1F195]
๐ n g button // [1F196]
๐ o k button // [1F197]
๐ s o s button // [1F198]
๐ up exclamation mark button // [1F199]
๐ v s button // [1F19A]
// 1F200..1F2FF : Enclosed Ideographic Supplement
๐ japanese here button // [1F201]
๐ japanese service charge button // [1F202] text|emoji
๐ japanese free of charge button // [1F21A]
๐ฏ japanese reserved button // [1F22F]
๐ฒ japanese prohibited button // [1F232]
๐ณ japanese vacancy button // [1F233]
๐ด japanese passing grade button // [1F234]
๐ต japanese no vacancy button // [1F235]
๐ถ japanese not free of charge button // [1F236]
๐ท japanese monthly amount button // [1F237] text|emoji
๐ธ japanese application button // [1F238]
๐น japanese discount button // [1F239]
๐บ japanese open for business button // [1F23A]
๐ japanese bargain button // [1F250]
๐ japanese acceptable button // [1F251]
// 1F000..1F02F : Mahjong Tiles
๐ mahjong red dragon // [1F004]
// 1F0A0..1F0FF : Playing Cards
๐ joker // [1F0CF]
// 1F300..1F5FF : Miscellaneous Symbols and Pictographs
๐ cyclone // [1F300]
๐ foggy // [1F301]
๐ closed umbrella // [1F302]
๐ night with stars // [1F303]
๐ sunrise over mountains // [1F304]
๐
sunrise // [1F305]
๐ cityscape at dusk // [1F306]
๐ sunset // [1F307]
๐ rainbow // [1F308]
๐ bridge at night // [1F309]
๐ water wave // [1F30A]
๐ volcano // [1F30B]
๐ milky way // [1F30C]
๐ globe showing europe africa // [1F30D]
๐ globe showing americas // [1F30E]
๐ globe showing asia australia // [1F30F]
๐ globe with meridians // [1F310]
๐ new moon // [1F311]
๐ waxing crescent moon // [1F312]
๐ first quarter moon // [1F313]
๐ waxing gibbous moon // [1F314]
๐ full moon // [1F315]
๐ waning gibbous moon // [1F316]
๐ last quarter moon // [1F317]
๐ waning crescent moon // [1F318]
๐ crescent moon // [1F319]
๐ new moon face // [1F31A]
๐ first quarter moon face // [1F31B]
๐ last quarter moon face // [1F31C]
๐ full moon face // [1F31D]
๐ sun with face // [1F31E]
๐ glowing star // [1F31F]
๐ shooting star // [1F320]
๐ก thermometer // [1F321] text|emoji
๐ค sun behind small cloud // [1F324] text|emoji
๐ฅ sun behind large cloud // [1F325] text|emoji
๐ฆ sun behind rain cloud // [1F326] text|emoji
๐ง cloud with rain // [1F327] text|emoji
๐จ cloud with snow // [1F328] text|emoji
๐ฉ cloud with lightning // [1F329] text|emoji
๐ช tornado // [1F32A] text|emoji
๐ซ fog // [1F32B] text|emoji
๐ฌ wind face // [1F32C] text|emoji
๐ญ hot dog // [1F32D]
๐ฎ taco // [1F32E]
๐ฏ burrito // [1F32F]
๐ฐ chestnut // [1F330]
๐ฑ seedling // [1F331]
๐ฒ evergreen tree // [1F332]
๐ณ deciduous tree // [1F333]
๐ด palm tree // [1F334]
๐ต cactus // [1F335]
๐ถ hot pepper // [1F336] text|emoji
๐ท tulip // [1F337]
๐ธ cherry blossom // [1F338]
๐น rose // [1F339]
๐บ hibiscus // [1F33A]
๐ป sunflower // [1F33B]
๐ผ blossom // [1F33C]
๐ฝ ear of corn // [1F33D]
๐พ sheaf of rice // [1F33E]
๐ฟ herb // [1F33F]
๐ four leaf clover // [1F340]
๐ maple leaf // [1F341]
๐ fallen leaf // [1F342]
๐ leaf fluttering in wind // [1F343]
๐ mushroom // [1F344]
๐
tomato // [1F345]
๐ eggplant // [1F346]
๐ grapes // [1F347]
๐ melon // [1F348]
๐ watermelon // [1F349]
๐ tangerine // [1F34A]
๐ lemon // [1F34B]
๐ banana // [1F34C]
๐ pineapple // [1F34D]
๐ red apple // [1F34E]
๐ green apple // [1F34F]
๐ pear // [1F350]
๐ peach // [1F351]
๐ cherries // [1F352]
๐ strawberry // [1F353]
๐ hamburger // [1F354]
๐ pizza // [1F355]
๐ meat on bone // [1F356]
๐ poultry leg // [1F357]
๐ rice cracker // [1F358]
๐ rice ball // [1F359]
๐ cooked rice // [1F35A]
๐ curry rice // [1F35B]
๐ steaming bowl // [1F35C]
๐ spaghetti // [1F35D]
๐ bread // [1F35E]
๐ french fries // [1F35F]
๐ roasted sweet potato // [1F360]
๐ก dango // [1F361]
๐ข oden // [1F362]
๐ฃ sushi // [1F363]
๐ค fried shrimp // [1F364]
๐ฅ fish cake with swirl // [1F365]
๐ฆ soft ice cream // [1F366]
๐ง shaved ice // [1F367]
๐จ ice cream // [1F368]
๐ฉ doughnut // [1F369]
๐ช cookie // [1F36A]
๐ซ chocolate bar // [1F36B]
๐ฌ candy // [1F36C]
๐ญ lollipop // [1F36D]
๐ฎ custard // [1F36E]
๐ฏ honey pot // [1F36F]
๐ฐ shortcake // [1F370]
๐ฑ bento box // [1F371]
๐ฒ pot of food // [1F372]
๐ณ cooking // [1F373]
๐ด fork and knife // [1F374]
๐ต teacup without handle // [1F375]
๐ถ sake // [1F376]
๐ท wine glass // [1F377]
๐ธ cocktail glass // [1F378]
๐น tropical drink // [1F379]
๐บ beer mug // [1F37A]
๐ป clinking beer mugs // [1F37B]
๐ผ baby bottle // [1F37C]
๐ฝ fork and knife with plate // [1F37D] text|emoji
๐พ bottle with popping cork // [1F37E]
๐ฟ popcorn // [1F37F]
๐ ribbon // [1F380]
๐ wrapped gift // [1F381]
๐ birthday cake // [1F382]
๐ jack o'lantern // [1F383]
๐ christmas tree // [1F384]
๐
santa claus // [1F385]
๐ fireworks // [1F386]
๐ sparkler // [1F387]
๐ balloon // [1F388]
๐ party popper // [1F389]
๐ confetti ball // [1F38A]
๐ tanabata tree // [1F38B]
๐ crossed flags // [1F38C]
๐ pine decoration // [1F38D]
๐ japanese dolls // [1F38E]
๐ carp streamer // [1F38F]
๐ wind chime // [1F390]
๐ moon viewing ceremony // [1F391]
๐ school backpack // [1F392]
๐ graduation cap // [1F393]
๐ military medal // [1F396] text|emoji
๐ reminder ribbon // [1F397] text|emoji
๐ studio microphone // [1F399] text|emoji
๐ level slider // [1F39A] text|emoji
๐ control knobs // [1F39B] text|emoji
๐ film frames // [1F39E] text|emoji
๐ admission tickets // [1F39F] text|emoji
๐ carousel horse // [1F3A0]
๐ก ferris wheel // [1F3A1]
๐ข roller coaster // [1F3A2]
๐ฃ fishing pole // [1F3A3]
๐ค microphone // [1F3A4]
๐ฅ movie camera // [1F3A5]
๐ฆ cinema // [1F3A6]
๐ง headphone // [1F3A7]
๐จ artist palette // [1F3A8]
๐ฉ top hat // [1F3A9]
๐ช circus tent // [1F3AA]
๐ซ ticket // [1F3AB]
๐ฌ clapper board // [1F3AC]
๐ญ performing arts // [1F3AD]
๐ฎ video game // [1F3AE]
๐ฏ direct hit // [1F3AF]
๐ฐ slot machine // [1F3B0]
๐ฑ pool 8 ball // [1F3B1]
๐ฒ game die // [1F3B2]
๐ณ bowling // [1F3B3]
๐ด flower playing cards // [1F3B4]
๐ต musical note // [1F3B5]
๐ถ musical notes // [1F3B6]
๐ท saxophone // [1F3B7]
๐ธ guitar // [1F3B8]
๐น musical keyboard // [1F3B9]
๐บ trumpet // [1F3BA]
๐ป violin // [1F3BB]
๐ผ musical score // [1F3BC]
๐ฝ running shirt // [1F3BD]
๐พ tennis // [1F3BE]
๐ฟ skis // [1F3BF]
๐ basketball // [1F3C0]
๐ chequered flag // [1F3C1]
๐ snowboarder // [1F3C2]
๐ person running // [1F3C3]
๐ person surfing // [1F3C4]
๐
sports medal // [1F3C5]
๐ trophy // [1F3C6]
๐ horse racing // [1F3C7]
๐ american football // [1F3C8]
๐ rugby football // [1F3C9]
๐ person swimming // [1F3CA]
๐ person lifting weights // [1F3CB] text|emoji
๐ person golfing // [1F3CC] text|emoji
๐ motorcycle // [1F3CD] text|emoji
๐ racing car // [1F3CE] text|emoji
๐ cricket game // [1F3CF]
๐ volleyball // [1F3D0]
๐ field hockey // [1F3D1]
๐ ice hockey // [1F3D2]
๐ ping pong // [1F3D3]
๐ snow capped mountain // [1F3D4] text|emoji
๐ camping // [1F3D5] text|emoji
๐ beach with umbrella // [1F3D6] text|emoji
๐ building construction // [1F3D7] text|emoji
๐ house // [1F3D8] text|emoji
๐ cityscape // [1F3D9] text|emoji
๐ derelict house // [1F3DA] text|emoji
๐ classical building // [1F3DB] text|emoji
๐ desert // [1F3DC] text|emoji
๐ desert island // [1F3DD] text|emoji
๐ national park // [1F3DE] text|emoji
๐ stadium // [1F3DF] text|emoji
๐ houses // [1F3E0]
๐ก house with garden // [1F3E1]
๐ข office building // [1F3E2]
๐ฃ japanese post office // [1F3E3]
๐ค post office // [1F3E4]
๐ฅ hospital // [1F3E5]
๐ฆ bank // [1F3E6]
๐ง a t m sign // [1F3E7]
๐จ hotel // [1F3E8]
๐ฉ love hotel // [1F3E9]
๐ช convenience store // [1F3EA]
๐ซ school // [1F3EB]
๐ฌ department store // [1F3EC]
๐ญ factory // [1F3ED]
๐ฎ red paper lantern // [1F3EE]
๐ฏ japanese castle // [1F3EF]
๐ฐ castle // [1F3F0]
๐ณ white flag // [1F3F3] text|emoji
๐ด black flag // [1F3F4]
๐ต rosette // [1F3F5] text|emoji
๐ท label // [1F3F7] text|emoji
๐ธ badminton // [1F3F8]
๐น bow and arrow // [1F3F9]
๐บ amphora // [1F3FA]
๐ป light skin tone // [1F3FB]
๐ผ medium-light skin tone // [1F3FC]
๐ฝ medium skin tone // [1F3FD]
๐พ medium-dark skin tone // [1F3FE]
๐ฟ dark skin tone // [1F3FF]
๐ rat // [1F400]
๐ mouse // [1F401]
๐ ox // [1F402]
๐ water buffalo // [1F403]
๐ cow // [1F404]
๐
tiger // [1F405]
๐ leopard // [1F406]
๐ rabbit // [1F407]
๐ cat // [1F408]
๐ dragon // [1F409]
๐ crocodile // [1F40A]
๐ whale // [1F40B]
๐ snail // [1F40C]
๐ snake // [1F40D]
๐ horse // [1F40E]
๐ ram // [1F40F]
๐ goat // [1F410]
๐ ewe // [1F411]
๐ monkey // [1F412]
๐ rooster // [1F413]
๐ chicken // [1F414]
๐ dog // [1F415]
๐ pig // [1F416]
๐ boar // [1F417]
๐ elephant // [1F418]
๐ octopus // [1F419]
๐ spiral shell // [1F41A]
๐ bug // [1F41B]
๐ ant // [1F41C]
๐ honeybee // [1F41D]
๐ lady beetle // [1F41E]
๐ fish // [1F41F]
๐ tropical fish // [1F420]
๐ก blowfish // [1F421]
๐ข turtle // [1F422]
๐ฃ hatching chick // [1F423]
๐ค baby chick // [1F424]
๐ฅ front facing baby chick // [1F425]
๐ฆ bird // [1F426]
๐ง penguin // [1F427]
๐จ koala // [1F428]
๐ฉ poodle // [1F429]
๐ช camel // [1F42A]
๐ซ two hump camel // [1F42B]
๐ฌ dolphin // [1F42C]
๐ญ mouse face // [1F42D]
๐ฎ cow face // [1F42E]
๐ฏ tiger face // [1F42F]
๐ฐ rabbit face // [1F430]
๐ฑ cat face // [1F431]
๐ฒ dragon face // [1F432]
๐ณ spouting whale // [1F433]
๐ด horse face // [1F434]
๐ต monkey face // [1F435]
๐ถ dog face // [1F436]
๐ท pig face // [1F437]
๐ธ frog face // [1F438]
๐น hamster face // [1F439]
๐บ wolf face // [1F43A]
๐ป bear face // [1F43B]
๐ผ panda face // [1F43C]
๐ฝ pig nose // [1F43D]
๐พ paw prints // [1F43E]
๐ฟ chipmunk // [1F43F] text|emoji
๐ eyes // [1F440]
๐ eye // [1F441] text|emoji
๐ ear // [1F442]
๐ nose // [1F443]
๐ mouth // [1F444]
๐
tongue // [1F445]
๐ backhand index pointing up // [1F446]
๐ backhand index pointing down // [1F447]
๐ backhand index pointing left // [1F448]
๐ backhand index pointing right // [1F449]
๐ oncoming fist // [1F44A]
๐ waving hand // [1F44B]
๐ o k hand // [1F44C]
๐ thumbs up // [1F44D]
๐ thumbs down // [1F44E]
๐ clapping hands // [1F44F]
๐ open hands // [1F450]
๐ crown // [1F451]
๐ woman's hat // [1F452]
๐ glasses // [1F453]
๐ necktie // [1F454]
๐ t shirt // [1F455]
๐ jeans // [1F456]
๐ dress // [1F457]
๐ kimono // [1F458]
๐ bikini // [1F459]
๐ woman's clothes // [1F45A]
๐ purse // [1F45B]
๐ handbag // [1F45C]
๐ clutch bag // [1F45D]
๐ man's shoe // [1F45E]
๐ running shoe // [1F45F]
๐ high heeled shoe // [1F460]
๐ก woman's sandal // [1F461]
๐ข woman's boot // [1F462]
๐ฃ footprints // [1F463]
๐ค bust in silhouette // [1F464]
๐ฅ busts in silhouette // [1F465]
๐ฆ boy // [1F466]
๐ง girl // [1F467]
๐จ man // [1F468]
๐ฉ woman // [1F469]
๐ช family // [1F46A]
๐ซ man and woman holding hands // [1F46B]
๐ฌ two men holding hands // [1F46C]
๐ญ two women holding hands // [1F46D]
๐ฎ police officer // [1F46E]
๐ฏ people with bunny ears // [1F46F]
๐ฐ bride with veil // [1F470]
๐ฑ blond haired person // [1F471]
๐ฒ man with chinese cap // [1F472]
๐ณ person wearing turban // [1F473]
๐ด old man // [1F474]
๐ต old woman // [1F475]
๐ถ baby // [1F476]
๐ท construction worker // [1F477]
๐ธ princess // [1F478]
๐น ogre // [1F479]
๐บ goblin // [1F47A]
๐ป ghost // [1F47B]
๐ผ baby angel // [1F47C]
๐ฝ alien // [1F47D]
๐พ alien monster // [1F47E]
๐ฟ angry face with horns // [1F47F]
๐ skull // [1F480]
๐ person tipping hand // [1F481]
๐ guard // [1F482]
๐ woman dancing // [1F483]
๐ lipstick // [1F484]
๐
nail polish // [1F485]
๐ person getting massage // [1F486]
๐ person getting haircut // [1F487]
๐ barber pole // [1F488]
๐ syringe // [1F489]
๐ pill // [1F48A]
๐ kiss mark // [1F48B]
๐ love letter // [1F48C]
๐ ring // [1F48D]
๐ gem stone // [1F48E]
๐ kiss // [1F48F]
๐ bouquet // [1F490]
๐ couple with heart // [1F491]
๐ wedding // [1F492]
๐ beating heart // [1F493]
๐ broken heart // [1F494]
๐ two hearts // [1F495]
๐ sparkling heart // [1F496]
๐ growing heart // [1F497]
๐ heart with arrow // [1F498]
๐ blue heart // [1F499]
๐ green heart // [1F49A]
๐ yellow heart // [1F49B]
๐ purple heart // [1F49C]
๐ heart with ribbon // [1F49D]
๐ revolving hearts // [1F49E]
๐ heart decoration // [1F49F]
๐ diamond with a dot // [1F4A0]
๐ก light bulb // [1F4A1]
๐ข anger symbol // [1F4A2]
๐ฃ bomb // [1F4A3]
๐ค zzz // [1F4A4]
๐ฅ collision // [1F4A5]
๐ฆ sweat droplets // [1F4A6]
๐ง droplet // [1F4A7]
๐จ dashing away // [1F4A8]
๐ฉ pile of poo // [1F4A9]
๐ช flexed biceps // [1F4AA]
๐ซ dizzy // [1F4AB]
๐ฌ speech balloon // [1F4AC]
๐ญ thought balloon // [1F4AD]
๐ฎ white flower // [1F4AE]
๐ฏ hundred points // [1F4AF]
๐ฐ money bag // [1F4B0]
๐ฑ currency exchange // [1F4B1]
๐ฒ heavy dollar sign // [1F4B2]
๐ณ credit card // [1F4B3]
๐ด yen banknote // [1F4B4]
๐ต dollar banknote // [1F4B5]
๐ถ euro banknote // [1F4B6]
๐ท pound banknote // [1F4B7]
๐ธ money with wings // [1F4B8]
๐น chart increasing with yen // [1F4B9]
๐บ seat // [1F4BA]
๐ป laptop computer // [1F4BB]
๐ผ briefcase // [1F4BC]
๐ฝ computer disk // [1F4BD]
๐พ floppy disk // [1F4BE]
๐ฟ optical disk // [1F4BF]
๐ dvd // [1F4C0]
๐ file folder // [1F4C1]
๐ open file folder // [1F4C2]
๐ page with curl // [1F4C3]
๐ page facing up // [1F4C4]
๐
calendar // [1F4C5]
๐ tear off calendar // [1F4C6]
๐ card index // [1F4C7]
๐ chart increasing // [1F4C8]
๐ chart decreasing // [1F4C9]
๐ bar chart // [1F4CA]
๐ clipboard // [1F4CB]
๐ pushpin // [1F4CC]
๐ round pushpin // [1F4CD]
๐ paperclip // [1F4CE]
๐ straight ruler // [1F4CF]
๐ triangular ruler // [1F4D0]
๐ bookmark tabs // [1F4D1]
๐ ledger // [1F4D2]
๐ notebook // [1F4D3]
๐ notebook with decorative cover // [1F4D4]
๐ closed book // [1F4D5]
๐ open book // [1F4D6]
๐ green book // [1F4D7]
๐ blue book // [1F4D8]
๐ orange book // [1F4D9]
๐ books // [1F4DA]
๐ name badge // [1F4DB]
๐ scroll // [1F4DC]
๐ memo // [1F4DD]
๐ telephone receiver // [1F4DE]
๐ pager // [1F4DF]
๐ fax machine // [1F4E0]
๐ก satellite antenna // [1F4E1]
๐ข loudspeaker // [1F4E2]
๐ฃ megaphone // [1F4E3]
๐ค outbox tray // [1F4E4]
๐ฅ inbox tray // [1F4E5]
๐ฆ package // [1F4E6]
๐ง e mail // [1F4E7]
๐จ incoming envelope // [1F4E8]
๐ฉ envelope with arrow // [1F4E9]
๐ช closed mailbox with lowered flag // [1F4EA]
๐ซ closed mailbox with raised flag // [1F4EB]
๐ฌ open mailbox with raised flag // [1F4EC]
๐ญ open mailbox with lowered flag // [1F4ED]
๐ฎ postbox // [1F4EE]
๐ฏ postal horn // [1F4EF]
๐ฐ newspaper // [1F4F0]
๐ฑ mobile phone // [1F4F1]
๐ฒ mobile phone with arrow // [1F4F2]
๐ณ vibration mode // [1F4F3]
๐ด mobile phone off // [1F4F4]
๐ต no mobile phones // [1F4F5]
๐ถ antenna bars // [1F4F6]
๐ท camera // [1F4F7]
๐ธ camera with flash // [1F4F8]
๐น video camera // [1F4F9]
๐บ television // [1F4FA]
๐ป radio // [1F4FB]
๐ผ videocassette // [1F4FC]
๐ฝ film projector // [1F4FD] text|emoji
๐ฟ prayer beads // [1F4FF]
๐ shuffle tracks button // [1F500]
๐ repeat button // [1F501]
๐ repeat single button // [1F502]
๐ clockwise vertical arrows // [1F503]
๐ counterclockwise arrows button // [1F504]
๐
dim button // [1F505]
๐ bright button // [1F506]
๐ muted speaker // [1F507]
๐ speaker low volume // [1F508]
๐ speaker medium volume // [1F509]
๐ speaker high volume // [1F50A]
๐ battery // [1F50B]
๐ electric plug // [1F50C]
๐ magnifying glass tilted left // [1F50D]
๐ magnifying glass tilted right // [1F50E]
๐ locked with pen // [1F50F]
๐ locked with key // [1F510]
๐ key // [1F511]
๐ locked // [1F512]
๐ unlocked // [1F513]
๐ bell // [1F514]
๐ bell with slash // [1F515]
๐ bookmark // [1F516]
๐ link // [1F517]
๐ radio button // [1F518]
๐ back arrow // [1F519]
๐ end arrow // [1F51A]
๐ on exclamation mark arrow // [1F51B]
๐ soon arrow // [1F51C]
๐ top arrow // [1F51D]
๐ no one under eighteen // [1F51E]
๐ keycap 10 // [1F51F]
๐ input latin uppercase // [1F520]
๐ก input latin lowercase // [1F521]
๐ข input numbers // [1F522]
๐ฃ input symbols // [1F523]
๐ค input latin letters // [1F524]
๐ฅ fire // [1F525]
๐ฆ flashlight // [1F526]
๐ง wrench // [1F527]
๐จ hammer // [1F528]
๐ฉ nut and bolt // [1F529]
๐ช kitchen knife // [1F52A]
๐ซ pistol // [1F52B]
๐ฌ microscope // [1F52C]
๐ญ telescope // [1F52D]
๐ฎ crystal ball // [1F52E]
๐ฏ dotted six pointed star // [1F52F]
๐ฐ japanese symbol for beginner // [1F530]
๐ฑ trident emblem // [1F531]
๐ฒ black square button // [1F532]
๐ณ white square button // [1F533]
๐ด red circle // [1F534]
๐ต blue circle // [1F535]
๐ถ large orange diamond // [1F536]
๐ท large blue diamond // [1F537]
๐ธ small orange diamond // [1F538]
๐น small blue diamond // [1F539]
๐บ red triangle pointed up // [1F53A]
๐ป red triangle pointed down // [1F53B]
๐ผ upwards button // [1F53C]
๐ฝ downwards button // [1F53D]
๐ om // [1F549] text|emoji
๐ dove // [1F54A] text|emoji
๐ kaaba // [1F54B]
๐ mosque // [1F54C]
๐ synagogue // [1F54D]
๐ menorah // [1F54E]
๐ one o'clock // [1F550]
๐ two o'clock // [1F551]
๐ three o'clock // [1F552]
๐ four o'clock // [1F553]
๐ five o'clock // [1F554]
๐ six o'clock // [1F555]
๐ seven o'clock // [1F556]
๐ eight o'clock // [1F557]
๐ nine o'clock // [1F558]
๐ ten o'clock // [1F559]
๐ eleven o'clock // [1F55A]
๐ twelve o'clock // [1F55B]
๐ one thirty // [1F55C]
๐ two thirty // [1F55D]
๐ three thirty // [1F55E]
๐ four thirty // [1F55F]
๐ five thirty // [1F560]
๐ก six thirty // [1F561]
๐ข seven thirty // [1F562]
๐ฃ eight thirty // [1F563]
๐ค nine thirty // [1F564]
๐ฅ ten thirty // [1F565]
๐ฆ eleven thirty // [1F566]
๐ง twelve thirty // [1F567]
๐ฏ candle // [1F56F] text|emoji
๐ฐ mantelpiece clock // [1F570] text|emoji
๐ณ hole // [1F573] text|emoji
๐ด man in suit levitating // [1F574] text|emoji
๐ต detective // [1F575] text|emoji
๐ถ sunglasses // [1F576] text|emoji
๐ท spider // [1F577] text|emoji
๐ธ spider web // [1F578] text|emoji
๐น joystick // [1F579] text|emoji
๐บ man dancing // [1F57A]
๐ linked paperclips // [1F587] text|emoji
๐ pen // [1F58A] text|emoji
๐ fountain pen // [1F58B] text|emoji
๐ paintbrush // [1F58C] text|emoji
๐ crayon // [1F58D] text|emoji
๐ hand with fingers splayed // [1F590] text|emoji
๐ middle finger // [1F595]
๐ vulcan salute // [1F596]
๐ค black heart // [1F5A4]
๐ฅ desktop computer // [1F5A5] text|emoji
๐จ printer // [1F5A8] text|emoji
๐ฑ computer mouse // [1F5B1] text|emoji
๐ฒ trackball // [1F5B2] text|emoji
๐ผ framed picture // [1F5BC] text|emoji
๐ card index dividers // [1F5C2] text|emoji
๐ card file box // [1F5C3] text|emoji
๐ file cabinet // [1F5C4] text|emoji
๐ wastebasket // [1F5D1] text|emoji
๐ spiral notepad // [1F5D2] text|emoji
๐ spiral calendar // [1F5D3] text|emoji
๐ clamp // [1F5DC] text|emoji
๐ old key // [1F5DD] text|emoji
๐ rolled up newspaper // [1F5DE] text|emoji
๐ก dagger // [1F5E1] text|emoji
๐ฃ speaking head // [1F5E3] text|emoji
๐จ left speech bubble // [1F5E8] text|emoji
๐ฏ right anger bubble // [1F5EF] text|emoji
๐ณ ballot box with ballot // [1F5F3] text|emoji
๐บ world map // [1F5FA] text|emoji
๐ป mount fuji // [1F5FB]
๐ผ tokyo tower // [1F5FC]
๐ฝ statue of liberty // [1F5FD]
๐พ map of japan // [1F5FE]
๐ฟ moai // [1F5FF]
// 1F600..1F64F : Emoticons
๐ grinning face // [1F600]
๐ beaming face with smiling eyes // [1F601]
๐ face with tears of joy // [1F602]
๐ grinning face with big eyes // [1F603]
๐ grinning face with smiling eyes // [1F604]
๐
grinning face with sweat // [1F605]
๐ grinning squinting face // [1F606]
๐ smiling face with halo // [1F607]
๐ smiling face with horns // [1F608]
๐ winking face // [1F609]
๐ smiling face with smiling eyes // [1F60A]
๐ face savoring food // [1F60B]
๐ relieved face // [1F60C]
๐ smiling face with heart eyes // [1F60D]
๐ smiling face with sunglasses // [1F60E]
๐ smirking face // [1F60F]
๐ neutral face // [1F610]
๐ expressionless face // [1F611]
๐ unamused face // [1F612]
๐ downcast face with sweat // [1F613]
๐ pensive face // [1F614]
๐ confused face // [1F615]
๐ confounded face // [1F616]