-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemoji.mac
1833 lines (1825 loc) · 80.7 KB
/
emoji.mac
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
/*絵文字のリスト
リストは以下URLから作りました。
Emoji List, v13.1
https://unicode.org/emoji/charts/emoji-list.html
*/
#g_dll_ohtorii_tools=val(getarg(30));
$label=getarg(0);
$arg=getarg(1);
call $label, $arg;
endmacro $$return;
gather_candidates:
return
@"😀 @description grinning face U+1F600
😃 @description grinning face with big eyes U+1F603
😄 @description grinning face with smiling eyes U+1F604
😁 @description beaming face with smiling eyes U+1F601
😆 @description grinning squinting face U+1F606
😅 @description grinning face with sweat U+1F605
🤣 @description rolling on the floor laughing U+1F923
😂 @description face with tears of joy U+1F602
🙂 @description slightly smiling face U+1F642
🙃 @description upside-down face U+1F643
😉 @description winking face U+1F609
😊 @description smiling face with smiling eyes U+1F60A
😇 @description smiling face with halo U+1F607
🥰 @description smiling face with hearts U+1F970
😍 @description smiling face with heart-eyes U+1F60D
🤩 @description star-struck U+1F929
😘 @description face blowing a kiss U+1F618
😗 @description kissing face U+1F617
☺ @description smiling face U+263A
😚 @description kissing face with closed eyes U+1F61A
😙 @description kissing face with smiling eyes U+1F619
🥲 @description smiling face with tear U+1F972
😋 @description face savoring food U+1F60B
😛 @description face with tongue U+1F61B
😜 @description winking face with tongue U+1F61C
🤪 @description zany face U+1F92A
😝 @description squinting face with tongue U+1F61D
🤑 @description money-mouth face U+1F911
🤗 @description hugging face U+1F917
🤭 @description face with hand over mouth U+1F92D
🤫 @description shushing face U+1F92B
🤔 @description thinking face U+1F914
🤐 @description zipper-mouth face U+1F910
🤨 @description face with raised eyebrow U+1F928
😐 @description neutral face U+1F610
😑 @description expressionless face U+1F611
😶 @description face without mouth U+1F636
😶🌫️ @description face in clouds U+1F636 U+200D U+1F32B U+FE0F
😏 @description smirking face U+1F60F
😒 @description unamused face U+1F612
🙄 @description face with rolling eyes U+1F644
😬 @description grimacing face U+1F62C
😮💨 @description face exhaling U+1F62E U+200D U+1F4A8
🤥 @description lying face U+1F925
😌 @description relieved face U+1F60C
😔 @description pensive face U+1F614
😪 @description sleepy face U+1F62A
🤤 @description drooling face U+1F924
😴 @description sleeping face U+1F634
😷 @description face with medical mask U+1F637
🤒 @description face with thermometer U+1F912
🤕 @description face with head-bandage U+1F915
🤢 @description nauseated face U+1F922
🤮 @description face vomiting U+1F92E
🤧 @description sneezing face U+1F927
🥵 @description hot face U+1F975
🥶 @description cold face U+1F976
🥴 @description woozy face U+1F974
😵 @description knocked-out face U+1F635
😵💫 @description face with spiral eyes U+1F635 U+200D U+1F4AB
🤯 @description exploding head U+1F92F
🤠 @description cowboy hat face U+1F920
🥳 @description partying face U+1F973
🥸 @description disguised face U+1F978
😎 @description smiling face with sunglasses U+1F60E
🤓 @description nerd face U+1F913
🧐 @description face with monocle U+1F9D0
😕 @description confused face U+1F615
😟 @description worried face U+1F61F
🙁 @description slightly frowning face U+1F641
☹ @description frowning face U+2639
😮 @description face with open mouth U+1F62E
😯 @description hushed face U+1F62F
😲 @description astonished face U+1F632
😳 @description flushed face U+1F633
🥺 @description pleading face U+1F97A
😦 @description frowning face with open mouth U+1F626
😧 @description anguished face U+1F627
😨 @description fearful face U+1F628
😰 @description anxious face with sweat U+1F630
😥 @description sad but relieved face U+1F625
😢 @description crying face U+1F622
😭 @description loudly crying face U+1F62D
😱 @description face screaming in fear U+1F631
😖 @description confounded face U+1F616
😣 @description persevering face U+1F623
😞 @description disappointed face U+1F61E
😓 @description downcast face with sweat U+1F613
😩 @description weary face U+1F629
😫 @description tired face U+1F62B
🥱 @description yawning face U+1F971
😤 @description face with steam from nose U+1F624
😡 @description pouting face U+1F621
😠 @description angry face U+1F620
🤬 @description face with symbols on mouth U+1F92C
😈 @description smiling face with horns U+1F608
👿 @description angry face with horns U+1F47F
💀 @description skull U+1F480
☠ @description skull and crossbones U+2620
💩 @description pile of poo U+1F4A9
🤡 @description clown face U+1F921
👹 @description ogre U+1F479
👺 @description goblin U+1F47A
👻 @description ghost U+1F47B
👽 @description alien U+1F47D
👾 @description alien monster U+1F47E
🤖 @description robot U+1F916
😺 @description grinning cat U+1F63A
😸 @description grinning cat with smiling eyes U+1F638
😹 @description cat with tears of joy U+1F639
😻 @description smiling cat with heart-eyes U+1F63B
😼 @description cat with wry smile U+1F63C
😽 @description kissing cat U+1F63D
🙀 @description weary cat U+1F640
😿 @description crying cat U+1F63F
😾 @description pouting cat U+1F63E
🙈 @description see-no-evil monkey U+1F648
🙉 @description hear-no-evil monkey U+1F649
🙊 @description speak-no-evil monkey U+1F64A
💋 @description kiss mark U+1F48B
💌 @description love letter U+1F48C
💘 @description heart with arrow U+1F498
💝 @description heart with ribbon U+1F49D
💖 @description sparkling heart U+1F496
💗 @description growing heart U+1F497
💓 @description beating heart U+1F493
💞 @description revolving hearts U+1F49E
💕 @description two hearts U+1F495
💟 @description heart decoration U+1F49F
❣ @description heart exclamation U+2763
💔 @description broken heart U+1F494
❤️🔥 @description heart on fire U+2764 U+FE0F U+200D U+1F525
❤️🩹 @description mending heart U+2764 U+FE0F U+200D U+1FA79
❤ @description red heart U+2764
🧡 @description orange heart U+1F9E1
💛 @description yellow heart U+1F49B
💚 @description green heart U+1F49A
💙 @description blue heart U+1F499
💜 @description purple heart U+1F49C
🤎 @description brown heart U+1F90E
🖤 @description black heart U+1F5A4
🤍 @description white heart U+1F90D
💯 @description hundred points U+1F4AF
💢 @description anger symbol U+1F4A2
💥 @description collision U+1F4A5
💫 @description dizzy U+1F4AB
💦 @description sweat droplets U+1F4A6
💨 @description dashing away U+1F4A8
🕳 @description hole U+1F573
💣 @description bomb U+1F4A3
💬 @description speech balloon U+1F4AC
👁️🗨️ @description eye in speech bubble U+1F441 U+FE0F U+200D U+1F5E8 U+FE0F
🗨 @description left speech bubble U+1F5E8
🗯 @description right anger bubble U+1F5EF
💭 @description thought balloon U+1F4AD
💤 @description zzz U+1F4A4
👋 @description waving hand U+1F44B
🤚 @description raised back of hand U+1F91A
🖐 @description hand with fingers splayed U+1F590
✋ @description raised hand U+270B
🖖 @description vulcan salute U+1F596
👌 @description OK hand U+1F44C
🤌 @description pinched fingers U+1F90C
🤏 @description pinching hand U+1F90F
✌ @description victory hand U+270C
🤞 @description crossed fingers U+1F91E
🤟 @description love-you gesture U+1F91F
🤘 @description sign of the horns U+1F918
🤙 @description call me hand U+1F919
👈 @description backhand index pointing left U+1F448
👉 @description backhand index pointing right U+1F449
👆 @description backhand index pointing up U+1F446
🖕 @description middle finger U+1F595
👇 @description backhand index pointing down U+1F447
☝ @description index pointing up U+261D
👍 @description thumbs up U+1F44D
👎 @description thumbs down U+1F44E
✊ @description raised fist U+270A
👊 @description oncoming fist U+1F44A
🤛 @description left-facing fist U+1F91B
🤜 @description right-facing fist U+1F91C
👏 @description clapping hands U+1F44F
🙌 @description raising hands U+1F64C
👐 @description open hands U+1F450
🤲 @description palms up together U+1F932
🤝 @description handshake U+1F91D
🙏 @description folded hands U+1F64F
✍ @description writing hand U+270D
💅 @description nail polish U+1F485
🤳 @description selfie U+1F933
💪 @description flexed biceps U+1F4AA
🦾 @description mechanical arm U+1F9BE
🦿 @description mechanical leg U+1F9BF
🦵 @description leg U+1F9B5
🦶 @description foot U+1F9B6
👂 @description ear U+1F442
🦻 @description ear with hearing aid U+1F9BB
👃 @description nose U+1F443
🧠 @description brain U+1F9E0
🫀 @description anatomical heart U+1FAC0
🫁 @description lungs U+1FAC1
🦷 @description tooth U+1F9B7
🦴 @description bone U+1F9B4
👀 @description eyes U+1F440
👁 @description eye U+1F441
👅 @description tongue U+1F445
👄 @description mouth U+1F444
👶 @description baby U+1F476
🧒 @description child U+1F9D2
👦 @description boy U+1F466
👧 @description girl U+1F467
🧑 @description person U+1F9D1
👱 @description person: blond hair U+1F471
👨 @description man U+1F468
🧔 @description person: beard U+1F9D4
🧔♂️ @description man: beard U+1F9D4 U+200D U+2642 U+FE0F
🧔♀️ @description woman: beard U+1F9D4 U+200D U+2640 U+FE0F
👨🦰 @description man: red hair U+1F468 U+200D U+1F9B0
👨🦱 @description man: curly hair U+1F468 U+200D U+1F9B1
👨🦳 @description man: white hair U+1F468 U+200D U+1F9B3
👨🦲 @description man: bald U+1F468 U+200D U+1F9B2
👩 @description woman U+1F469
👩🦰 @description woman: red hair U+1F469 U+200D U+1F9B0
🧑🦰 @description person: red hair U+1F9D1 U+200D U+1F9B0
👩🦱 @description woman: curly hair U+1F469 U+200D U+1F9B1
🧑🦱 @description person: curly hair U+1F9D1 U+200D U+1F9B1
👩🦳 @description woman: white hair U+1F469 U+200D U+1F9B3
🧑🦳 @description person: white hair U+1F9D1 U+200D U+1F9B3
👩🦲 @description woman: bald U+1F469 U+200D U+1F9B2
🧑🦲 @description person: bald U+1F9D1 U+200D U+1F9B2
👱♀️ @description woman: blond hair U+1F471 U+200D U+2640 U+FE0F
👱♂️ @description man: blond hair U+1F471 U+200D U+2642 U+FE0F
🧓 @description older person U+1F9D3
👴 @description old man U+1F474
👵 @description old woman U+1F475
🙍 @description person frowning U+1F64D
🙍♂️ @description man frowning U+1F64D U+200D U+2642 U+FE0F
🙍♀️ @description woman frowning U+1F64D U+200D U+2640 U+FE0F
🙎 @description person pouting U+1F64E
🙎♂️ @description man pouting U+1F64E U+200D U+2642 U+FE0F
🙎♀️ @description woman pouting U+1F64E U+200D U+2640 U+FE0F
🙅 @description person gesturing NO U+1F645
🙅♂️ @description man gesturing NO U+1F645 U+200D U+2642 U+FE0F
🙅♀️ @description woman gesturing NO U+1F645 U+200D U+2640 U+FE0F
🙆 @description person gesturing OK U+1F646
🙆♂️ @description man gesturing OK U+1F646 U+200D U+2642 U+FE0F
🙆♀️ @description woman gesturing OK U+1F646 U+200D U+2640 U+FE0F
💁 @description person tipping hand U+1F481
💁♂️ @description man tipping hand U+1F481 U+200D U+2642 U+FE0F
💁♀️ @description woman tipping hand U+1F481 U+200D U+2640 U+FE0F
🙋 @description person raising hand U+1F64B
🙋♂️ @description man raising hand U+1F64B U+200D U+2642 U+FE0F
🙋♀️ @description woman raising hand U+1F64B U+200D U+2640 U+FE0F
🧏 @description deaf person U+1F9CF
🧏♂️ @description deaf man U+1F9CF U+200D U+2642 U+FE0F
🧏♀️ @description deaf woman U+1F9CF U+200D U+2640 U+FE0F
🙇 @description person bowing U+1F647
🙇♂️ @description man bowing U+1F647 U+200D U+2642 U+FE0F
🙇♀️ @description woman bowing U+1F647 U+200D U+2640 U+FE0F
🤦 @description person facepalming U+1F926
🤦♂️ @description man facepalming U+1F926 U+200D U+2642 U+FE0F
🤦♀️ @description woman facepalming U+1F926 U+200D U+2640 U+FE0F
🤷 @description person shrugging U+1F937
🤷♂️ @description man shrugging U+1F937 U+200D U+2642 U+FE0F
🤷♀️ @description woman shrugging U+1F937 U+200D U+2640 U+FE0F
🧑⚕️ @description health worker U+1F9D1 U+200D U+2695 U+FE0F
👨⚕️ @description man health worker U+1F468 U+200D U+2695 U+FE0F
👩⚕️ @description woman health worker U+1F469 U+200D U+2695 U+FE0F
🧑🎓 @description student U+1F9D1 U+200D U+1F393
👨🎓 @description man student U+1F468 U+200D U+1F393
👩🎓 @description woman student U+1F469 U+200D U+1F393
🧑🏫 @description teacher U+1F9D1 U+200D U+1F3EB
👨🏫 @description man teacher U+1F468 U+200D U+1F3EB
👩🏫 @description woman teacher U+1F469 U+200D U+1F3EB
🧑⚖️ @description judge U+1F9D1 U+200D U+2696 U+FE0F
👨⚖️ @description man judge U+1F468 U+200D U+2696 U+FE0F
👩⚖️ @description woman judge U+1F469 U+200D U+2696 U+FE0F
🧑🌾 @description farmer U+1F9D1 U+200D U+1F33E
👨🌾 @description man farmer U+1F468 U+200D U+1F33E
👩🌾 @description woman farmer U+1F469 U+200D U+1F33E
🧑🍳 @description cook U+1F9D1 U+200D U+1F373
👨🍳 @description man cook U+1F468 U+200D U+1F373
👩🍳 @description woman cook U+1F469 U+200D U+1F373
🧑🔧 @description mechanic U+1F9D1 U+200D U+1F527
👨🔧 @description man mechanic U+1F468 U+200D U+1F527
👩🔧 @description woman mechanic U+1F469 U+200D U+1F527
🧑🏭 @description factory worker U+1F9D1 U+200D U+1F3ED
👨🏭 @description man factory worker U+1F468 U+200D U+1F3ED
👩🏭 @description woman factory worker U+1F469 U+200D U+1F3ED
🧑💼 @description office worker U+1F9D1 U+200D U+1F4BC
👨💼 @description man office worker U+1F468 U+200D U+1F4BC
👩💼 @description woman office worker U+1F469 U+200D U+1F4BC
🧑🔬 @description scientist U+1F9D1 U+200D U+1F52C
👨🔬 @description man scientist U+1F468 U+200D U+1F52C
👩🔬 @description woman scientist U+1F469 U+200D U+1F52C
🧑🎤 @description singer U+1F9D1 U+200D U+1F3A4
👨🎤 @description man singer U+1F468 U+200D U+1F3A4
👩🎤 @description woman singer U+1F469 U+200D U+1F3A4
🧑🎨 @description artist U+1F9D1 U+200D U+1F3A8
👨🎨 @description man artist U+1F468 U+200D U+1F3A8
👩🎨 @description woman artist U+1F469 U+200D U+1F3A8
🧑✈️ @description pilot U+1F9D1 U+200D U+2708 U+FE0F
👨✈️ @description man pilot U+1F468 U+200D U+2708 U+FE0F
👩✈️ @description woman pilot U+1F469 U+200D U+2708 U+FE0F
🧑🚀 @description astronaut U+1F9D1 U+200D U+1F680
👨🚀 @description man astronaut U+1F468 U+200D U+1F680
👩🚀 @description woman astronaut U+1F469 U+200D U+1F680
🧑🚒 @description firefighter U+1F9D1 U+200D U+1F692
👨🚒 @description man firefighter U+1F468 U+200D U+1F692
👩🚒 @description woman firefighter U+1F469 U+200D U+1F692
👮 @description police officer U+1F46E
👮♂️ @description man police officer U+1F46E U+200D U+2642 U+FE0F
👮♀️ @description woman police officer U+1F46E U+200D U+2640 U+FE0F
🕵 @description detective U+1F575
🕵️♂️ @description man detective U+1F575 U+FE0F U+200D U+2642 U+FE0F
🕵️♀️ @description woman detective U+1F575 U+FE0F U+200D U+2640 U+FE0F
💂 @description guard U+1F482
💂♂️ @description man guard U+1F482 U+200D U+2642 U+FE0F
💂♀️ @description woman guard U+1F482 U+200D U+2640 U+FE0F
🥷 @description ninja U+1F977
👷 @description construction worker U+1F477
👷♂️ @description man construction worker U+1F477 U+200D U+2642 U+FE0F
👷♀️ @description woman construction worker U+1F477 U+200D U+2640 U+FE0F
🤴 @description prince U+1F934
👸 @description princess U+1F478
👳 @description person wearing turban U+1F473
👳♂️ @description man wearing turban U+1F473 U+200D U+2642 U+FE0F
👳♀️ @description woman wearing turban U+1F473 U+200D U+2640 U+FE0F
👲 @description person with skullcap U+1F472
🧕 @description woman with headscarf U+1F9D5
🤵 @description person in tuxedo U+1F935
🤵♂️ @description man in tuxedo U+1F935 U+200D U+2642 U+FE0F
🤵♀️ @description woman in tuxedo U+1F935 U+200D U+2640 U+FE0F
👰 @description person with veil U+1F470
👰♂️ @description man with veil U+1F470 U+200D U+2642 U+FE0F
👰♀️ @description woman with veil U+1F470 U+200D U+2640 U+FE0F
🤰 @description pregnant woman U+1F930
🤱 @description breast-feeding U+1F931
👩🍼 @description woman feeding baby U+1F469 U+200D U+1F37C
👨🍼 @description man feeding baby U+1F468 U+200D U+1F37C
🧑🍼 @description person feeding baby U+1F9D1 U+200D U+1F37C
👼 @description baby angel U+1F47C
🎅 @description Santa Claus U+1F385
🤶 @description Mrs. Claus U+1F936
🧑🎄 @description mx claus U+1F9D1 U+200D U+1F384
🦸 @description superhero U+1F9B8
🦸♂️ @description man superhero U+1F9B8 U+200D U+2642 U+FE0F
🦸♀️ @description woman superhero U+1F9B8 U+200D U+2640 U+FE0F
🦹 @description supervillain U+1F9B9
🦹♂️ @description man supervillain U+1F9B9 U+200D U+2642 U+FE0F
🦹♀️ @description woman supervillain U+1F9B9 U+200D U+2640 U+FE0F
🧙 @description mage U+1F9D9
🧙♂️ @description man mage U+1F9D9 U+200D U+2642 U+FE0F
🧙♀️ @description woman mage U+1F9D9 U+200D U+2640 U+FE0F
🧚 @description fairy U+1F9DA
🧚♂️ @description man fairy U+1F9DA U+200D U+2642 U+FE0F
🧚♀️ @description woman fairy U+1F9DA U+200D U+2640 U+FE0F
🧛 @description vampire U+1F9DB
🧛♂️ @description man vampire U+1F9DB U+200D U+2642 U+FE0F
🧛♀️ @description woman vampire U+1F9DB U+200D U+2640 U+FE0F
🧜 @description merperson U+1F9DC
🧜♂️ @description merman U+1F9DC U+200D U+2642 U+FE0F
🧜♀️ @description mermaid U+1F9DC U+200D U+2640 U+FE0F
🧝 @description elf U+1F9DD
🧝♂️ @description man elf U+1F9DD U+200D U+2642 U+FE0F
🧝♀️ @description woman elf U+1F9DD U+200D U+2640 U+FE0F
🧞 @description genie U+1F9DE
🧞♂️ @description man genie U+1F9DE U+200D U+2642 U+FE0F
🧞♀️ @description woman genie U+1F9DE U+200D U+2640 U+FE0F
🧟 @description zombie U+1F9DF
🧟♂️ @description man zombie U+1F9DF U+200D U+2642 U+FE0F
🧟♀️ @description woman zombie U+1F9DF U+200D U+2640 U+FE0F
💆 @description person getting massage U+1F486
💆♂️ @description man getting massage U+1F486 U+200D U+2642 U+FE0F
💆♀️ @description woman getting massage U+1F486 U+200D U+2640 U+FE0F
💇 @description person getting haircut U+1F487
💇♂️ @description man getting haircut U+1F487 U+200D U+2642 U+FE0F
💇♀️ @description woman getting haircut U+1F487 U+200D U+2640 U+FE0F
🚶 @description person walking U+1F6B6
🚶♂️ @description man walking U+1F6B6 U+200D U+2642 U+FE0F
🚶♀️ @description woman walking U+1F6B6 U+200D U+2640 U+FE0F
🧍 @description person standing U+1F9CD
🧍♂️ @description man standing U+1F9CD U+200D U+2642 U+FE0F
🧍♀️ @description woman standing U+1F9CD U+200D U+2640 U+FE0F
🧎 @description person kneeling U+1F9CE
🧎♂️ @description man kneeling U+1F9CE U+200D U+2642 U+FE0F
🧎♀️ @description woman kneeling U+1F9CE U+200D U+2640 U+FE0F
🧑🦯 @description person with white cane U+1F9D1 U+200D U+1F9AF
👨🦯 @description man with white cane U+1F468 U+200D U+1F9AF
👩🦯 @description woman with white cane U+1F469 U+200D U+1F9AF
🧑🦼 @description person in motorized wheelchair U+1F9D1 U+200D U+1F9BC
👨🦼 @description man in motorized wheelchair U+1F468 U+200D U+1F9BC
👩🦼 @description woman in motorized wheelchair U+1F469 U+200D U+1F9BC
🧑🦽 @description person in manual wheelchair U+1F9D1 U+200D U+1F9BD
👨🦽 @description man in manual wheelchair U+1F468 U+200D U+1F9BD
👩🦽 @description woman in manual wheelchair U+1F469 U+200D U+1F9BD
🏃 @description person running U+1F3C3
🏃♂️ @description man running U+1F3C3 U+200D U+2642 U+FE0F
🏃♀️ @description woman running U+1F3C3 U+200D U+2640 U+FE0F
💃 @description woman dancing U+1F483
🕺 @description man dancing U+1F57A
🕴 @description person in suit levitating U+1F574
👯 @description people with bunny ears U+1F46F
👯♂️ @description men with bunny ears U+1F46F U+200D U+2642 U+FE0F
👯♀️ @description women with bunny ears U+1F46F U+200D U+2640 U+FE0F
🧖 @description person in steamy room U+1F9D6
🧖♂️ @description man in steamy room U+1F9D6 U+200D U+2642 U+FE0F
🧖♀️ @description woman in steamy room U+1F9D6 U+200D U+2640 U+FE0F
🧗 @description person climbing U+1F9D7
🧗♂️ @description man climbing U+1F9D7 U+200D U+2642 U+FE0F
🧗♀️ @description woman climbing U+1F9D7 U+200D U+2640 U+FE0F
🤺 @description person fencing U+1F93A
🏇 @description horse racing U+1F3C7
⛷ @description skier U+26F7
🏂 @description snowboarder U+1F3C2
🏌 @description person golfing U+1F3CC
🏌️♂️ @description man golfing U+1F3CC U+FE0F U+200D U+2642 U+FE0F
🏌️♀️ @description woman golfing U+1F3CC U+FE0F U+200D U+2640 U+FE0F
🏄 @description person surfing U+1F3C4
🏄♂️ @description man surfing U+1F3C4 U+200D U+2642 U+FE0F
🏄♀️ @description woman surfing U+1F3C4 U+200D U+2640 U+FE0F
🚣 @description person rowing boat U+1F6A3
🚣♂️ @description man rowing boat U+1F6A3 U+200D U+2642 U+FE0F
🚣♀️ @description woman rowing boat U+1F6A3 U+200D U+2640 U+FE0F
🏊 @description person swimming U+1F3CA
🏊♂️ @description man swimming U+1F3CA U+200D U+2642 U+FE0F
🏊♀️ @description woman swimming U+1F3CA U+200D U+2640 U+FE0F
⛹ @description person bouncing ball U+26F9
⛹️♂️ @description man bouncing ball U+26F9 U+FE0F U+200D U+2642 U+FE0F
⛹️♀️ @description woman bouncing ball U+26F9 U+FE0F U+200D U+2640 U+FE0F
🏋 @description person lifting weights U+1F3CB
🏋️♂️ @description man lifting weights U+1F3CB U+FE0F U+200D U+2642 U+FE0F
🏋️♀️ @description woman lifting weights U+1F3CB U+FE0F U+200D U+2640 U+FE0F
🚴 @description person biking U+1F6B4
🚴♂️ @description man biking U+1F6B4 U+200D U+2642 U+FE0F
🚴♀️ @description woman biking U+1F6B4 U+200D U+2640 U+FE0F
🚵 @description person mountain biking U+1F6B5
🚵♂️ @description man mountain biking U+1F6B5 U+200D U+2642 U+FE0F
🚵♀️ @description woman mountain biking U+1F6B5 U+200D U+2640 U+FE0F
🤸 @description person cartwheeling U+1F938
🤸♂️ @description man cartwheeling U+1F938 U+200D U+2642 U+FE0F
🤸♀️ @description woman cartwheeling U+1F938 U+200D U+2640 U+FE0F
🤼 @description people wrestling U+1F93C
🤼♂️ @description men wrestling U+1F93C U+200D U+2642 U+FE0F
🤼♀️ @description women wrestling U+1F93C U+200D U+2640 U+FE0F
🤽 @description person playing water polo U+1F93D
🤽♂️ @description man playing water polo U+1F93D U+200D U+2642 U+FE0F
🤽♀️ @description woman playing water polo U+1F93D U+200D U+2640 U+FE0F
🤾 @description person playing handball U+1F93E
🤾♂️ @description man playing handball U+1F93E U+200D U+2642 U+FE0F
🤾♀️ @description woman playing handball U+1F93E U+200D U+2640 U+FE0F
🤹 @description person juggling U+1F939
🤹♂️ @description man juggling U+1F939 U+200D U+2642 U+FE0F
🤹♀️ @description woman juggling U+1F939 U+200D U+2640 U+FE0F
🧘 @description person in lotus position U+1F9D8
🧘♂️ @description man in lotus position U+1F9D8 U+200D U+2642 U+FE0F
🧘♀️ @description woman in lotus position U+1F9D8 U+200D U+2640 U+FE0F
🛀 @description person taking bath U+1F6C0
🛌 @description person in bed U+1F6CC
🧑🤝🧑 @description people holding hands U+1F9D1 U+200D U+1F91D U+200D U+1F9D1
👭 @description women holding hands U+1F46D
👫 @description woman and man holding hands U+1F46B
👬 @description men holding hands U+1F46C
💏 @description kiss U+1F48F
👩❤️💋👨 @description kiss: woman, man U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468
👨❤️💋👨 @description kiss: man, man U+1F468 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468
👩❤️💋👩 @description kiss: woman, woman U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469
💑 @description couple with heart U+1F491
👩❤️👨 @description couple with heart: woman, man U+1F469 U+200D U+2764 U+FE0F U+200D U+1F468
👨❤️👨 @description couple with heart: man, man U+1F468 U+200D U+2764 U+FE0F U+200D U+1F468
👩❤️👩 @description couple with heart: woman, woman U+1F469 U+200D U+2764 U+FE0F U+200D U+1F469
👪 @description family U+1F46A
👨👩👦 @description family: man, woman, boy U+1F468 U+200D U+1F469 U+200D U+1F466
👨👩👧 @description family: man, woman, girl U+1F468 U+200D U+1F469 U+200D U+1F467
👨👩👧👦 @description family: man, woman, girl, boy U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466
👨👩👦👦 @description family: man, woman, boy, boy U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466
👨👩👧👧 @description family: man, woman, girl, girl U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467
👨👨👦 @description family: man, man, boy U+1F468 U+200D U+1F468 U+200D U+1F466
👨👨👧 @description family: man, man, girl U+1F468 U+200D U+1F468 U+200D U+1F467
👨👨👧👦 @description family: man, man, girl, boy U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466
👨👨👦👦 @description family: man, man, boy, boy U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466
👨👨👧👧 @description family: man, man, girl, girl U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467
👩👩👦 @description family: woman, woman, boy U+1F469 U+200D U+1F469 U+200D U+1F466
👩👩👧 @description family: woman, woman, girl U+1F469 U+200D U+1F469 U+200D U+1F467
👩👩👧👦 @description family: woman, woman, girl, boy U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466
👩👩👦👦 @description family: woman, woman, boy, boy U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466
👩👩👧👧 @description family: woman, woman, girl, girl U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467
👨👦 @description family: man, boy U+1F468 U+200D U+1F466
👨👦👦 @description family: man, boy, boy U+1F468 U+200D U+1F466 U+200D U+1F466
👨👧 @description family: man, girl U+1F468 U+200D U+1F467
👨👧👦 @description family: man, girl, boy U+1F468 U+200D U+1F467 U+200D U+1F466
👨👧👧 @description family: man, girl, girl U+1F468 U+200D U+1F467 U+200D U+1F467
👩👦 @description family: woman, boy U+1F469 U+200D U+1F466
👩👦👦 @description family: woman, boy, boy U+1F469 U+200D U+1F466 U+200D U+1F466
👩👧 @description family: woman, girl U+1F469 U+200D U+1F467
👩👧👦 @description family: woman, girl, boy U+1F469 U+200D U+1F467 U+200D U+1F466
👩👧👧 @description family: woman, girl, girl U+1F469 U+200D U+1F467 U+200D U+1F467
🗣 @description speaking head U+1F5E3
👤 @description bust in silhouette U+1F464
👥 @description busts in silhouette U+1F465
🫂 @description people hugging U+1FAC2
👣 @description footprints U+1F463
🦰 @description red hair U+1F9B0
🦱 @description curly hair U+1F9B1
🦳 @description white hair U+1F9B3
🦲 @description bald U+1F9B2
🐵 @description monkey face U+1F435
🐒 @description monkey U+1F412
🦍 @description gorilla U+1F98D
🦧 @description orangutan U+1F9A7
🐶 @description dog face U+1F436
🐕 @description dog U+1F415
🦮 @description guide dog U+1F9AE
🐕🦺 @description service dog U+1F415 U+200D U+1F9BA
🐩 @description poodle U+1F429
🐺 @description wolf U+1F43A
🦊 @description fox U+1F98A
🦝 @description raccoon U+1F99D
🐱 @description cat face U+1F431
🐈 @description cat U+1F408
🐈⬛ @description black cat U+1F408 U+200D U+2B1B
🦁 @description lion U+1F981
🐯 @description tiger face U+1F42F
🐅 @description tiger U+1F405
🐆 @description leopard U+1F406
🐴 @description horse face U+1F434
🐎 @description horse U+1F40E
🦄 @description unicorn U+1F984
🦓 @description zebra U+1F993
🦌 @description deer U+1F98C
🦬 @description bison U+1F9AC
🐮 @description cow face U+1F42E
🐂 @description ox U+1F402
🐃 @description water buffalo U+1F403
🐄 @description cow U+1F404
🐷 @description pig face U+1F437
🐖 @description pig U+1F416
🐗 @description boar U+1F417
🐽 @description pig nose U+1F43D
🐏 @description ram U+1F40F
🐑 @description ewe U+1F411
🐐 @description goat U+1F410
🐪 @description camel U+1F42A
🐫 @description two-hump camel U+1F42B
🦙 @description llama U+1F999
🦒 @description giraffe U+1F992
🐘 @description elephant U+1F418
🦣 @description mammoth U+1F9A3
🦏 @description rhinoceros U+1F98F
🦛 @description hippopotamus U+1F99B
🐭 @description mouse face U+1F42D
🐁 @description mouse U+1F401
🐀 @description rat U+1F400
🐹 @description hamster U+1F439
🐰 @description rabbit face U+1F430
🐇 @description rabbit U+1F407
🐿 @description chipmunk U+1F43F
🦫 @description beaver U+1F9AB
🦔 @description hedgehog U+1F994
🦇 @description bat U+1F987
🐻 @description bear U+1F43B
🐻❄️ @description polar bear U+1F43B U+200D U+2744 U+FE0F
🐨 @description koala U+1F428
🐼 @description panda U+1F43C
🦥 @description sloth U+1F9A5
🦦 @description otter U+1F9A6
🦨 @description skunk U+1F9A8
🦘 @description kangaroo U+1F998
🦡 @description badger U+1F9A1
🐾 @description paw prints U+1F43E
🦃 @description turkey U+1F983
🐔 @description chicken U+1F414
🐓 @description rooster U+1F413
🐣 @description hatching chick U+1F423
🐤 @description baby chick U+1F424
🐥 @description front-facing baby chick U+1F425
🐦 @description bird U+1F426
🐧 @description penguin U+1F427
🕊 @description dove U+1F54A
🦅 @description eagle U+1F985
🦆 @description duck U+1F986
🦢 @description swan U+1F9A2
🦉 @description owl U+1F989
🦤 @description dodo U+1F9A4
🪶 @description feather U+1FAB6
🦩 @description flamingo U+1F9A9
🦚 @description peacock U+1F99A
🦜 @description parrot U+1F99C
🐸 @description frog U+1F438
🐊 @description crocodile U+1F40A
🐢 @description turtle U+1F422
🦎 @description lizard U+1F98E
🐍 @description snake U+1F40D
🐲 @description dragon face U+1F432
🐉 @description dragon U+1F409
🦕 @description sauropod U+1F995
🦖 @description T-Rex U+1F996
🐳 @description spouting whale U+1F433
🐋 @description whale U+1F40B
🐬 @description dolphin U+1F42C
🦭 @description seal U+1F9AD
🐟 @description fish U+1F41F
🐠 @description tropical fish U+1F420
🐡 @description blowfish U+1F421
🦈 @description shark U+1F988
🐙 @description octopus U+1F419
🐚 @description spiral shell U+1F41A
🐌 @description snail U+1F40C
🦋 @description butterfly U+1F98B
🐛 @description bug U+1F41B
🐜 @description ant U+1F41C
🐝 @description honeybee U+1F41D
🪲 @description beetle U+1FAB2
🐞 @description lady beetle U+1F41E
🦗 @description cricket U+1F997
🪳 @description cockroach U+1FAB3
🕷 @description spider U+1F577
🕸 @description spider web U+1F578
🦂 @description scorpion U+1F982
🦟 @description mosquito U+1F99F
🪰 @description fly U+1FAB0
🪱 @description worm U+1FAB1
🦠 @description microbe U+1F9A0
💐 @description bouquet U+1F490
🌸 @description cherry blossom U+1F338
💮 @description white flower U+1F4AE
🏵 @description rosette U+1F3F5
🌹 @description rose U+1F339
🥀 @description wilted flower U+1F940
🌺 @description hibiscus U+1F33A
🌻 @description sunflower U+1F33B
🌼 @description blossom U+1F33C
🌷 @description tulip U+1F337
🌱 @description seedling U+1F331
🪴 @description potted plant U+1FAB4
🌲 @description evergreen tree U+1F332
🌳 @description deciduous tree U+1F333
🌴 @description palm tree U+1F334
🌵 @description cactus U+1F335
🌾 @description sheaf of rice U+1F33E
🌿 @description herb U+1F33F
☘ @description shamrock U+2618
🍀 @description four leaf clover U+1F340
🍁 @description maple leaf U+1F341
🍂 @description fallen leaf U+1F342
🍃 @description leaf fluttering in wind U+1F343
🍇 @description grapes U+1F347
🍈 @description melon U+1F348
🍉 @description watermelon U+1F349
🍊 @description tangerine U+1F34A
🍋 @description lemon U+1F34B
🍌 @description banana U+1F34C
🍍 @description pineapple U+1F34D
🥭 @description mango U+1F96D
🍎 @description red apple U+1F34E
🍏 @description green apple U+1F34F
🍐 @description pear U+1F350
🍑 @description peach U+1F351
🍒 @description cherries U+1F352
🍓 @description strawberry U+1F353
🫐 @description blueberries U+1FAD0
🥝 @description kiwi fruit U+1F95D
🍅 @description tomato U+1F345
🫒 @description olive U+1FAD2
🥥 @description coconut U+1F965
🥑 @description avocado U+1F951
🍆 @description eggplant U+1F346
🥔 @description potato U+1F954
🥕 @description carrot U+1F955
🌽 @description ear of corn U+1F33D
🌶 @description hot pepper U+1F336
🫑 @description bell pepper U+1FAD1
🥒 @description cucumber U+1F952
🥬 @description leafy green U+1F96C
🥦 @description broccoli U+1F966
🧄 @description garlic U+1F9C4
🧅 @description onion U+1F9C5
🍄 @description mushroom U+1F344
🥜 @description peanuts U+1F95C
🌰 @description chestnut U+1F330
🍞 @description bread U+1F35E
🥐 @description croissant U+1F950
🥖 @description baguette bread U+1F956
🫓 @description flatbread U+1FAD3
🥨 @description pretzel U+1F968
🥯 @description bagel U+1F96F
🥞 @description pancakes U+1F95E
🧇 @description waffle U+1F9C7
🧀 @description cheese wedge U+1F9C0
🍖 @description meat on bone U+1F356
🍗 @description poultry leg U+1F357
🥩 @description cut of meat U+1F969
🥓 @description bacon U+1F953
🍔 @description hamburger U+1F354
🍟 @description french fries U+1F35F
🍕 @description pizza U+1F355
🌭 @description hot dog U+1F32D
🥪 @description sandwich U+1F96A
🌮 @description taco U+1F32E
🌯 @description burrito U+1F32F
🫔 @description tamale U+1FAD4
🥙 @description stuffed flatbread U+1F959
🧆 @description falafel U+1F9C6
🥚 @description egg U+1F95A
🍳 @description cooking U+1F373
🥘 @description shallow pan of food U+1F958
🍲 @description pot of food U+1F372
🫕 @description fondue U+1FAD5
🥣 @description bowl with spoon U+1F963
🥗 @description green salad U+1F957
🍿 @description popcorn U+1F37F
🧈 @description butter U+1F9C8
🧂 @description salt U+1F9C2
🥫 @description canned food U+1F96B
🍱 @description bento box U+1F371
🍘 @description rice cracker U+1F358
🍙 @description rice ball U+1F359
🍚 @description cooked rice U+1F35A
🍛 @description curry rice U+1F35B
🍜 @description steaming bowl U+1F35C
🍝 @description spaghetti U+1F35D
🍠 @description roasted sweet potato U+1F360
🍢 @description oden U+1F362
🍣 @description sushi U+1F363
🍤 @description fried shrimp U+1F364
🍥 @description fish cake with swirl U+1F365
🥮 @description moon cake U+1F96E
🍡 @description dango U+1F361
🥟 @description dumpling U+1F95F
🥠 @description fortune cookie U+1F960
🥡 @description takeout box U+1F961
🦀 @description crab U+1F980
🦞 @description lobster U+1F99E
🦐 @description shrimp U+1F990
🦑 @description squid U+1F991
🦪 @description oyster U+1F9AA
🍦 @description soft ice cream U+1F366
🍧 @description shaved ice U+1F367
🍨 @description ice cream U+1F368
🍩 @description doughnut U+1F369
🍪 @description cookie U+1F36A
🎂 @description birthday cake U+1F382
🍰 @description shortcake U+1F370
🧁 @description cupcake U+1F9C1
🥧 @description pie U+1F967
🍫 @description chocolate bar U+1F36B
🍬 @description candy U+1F36C
🍭 @description lollipop U+1F36D
🍮 @description custard U+1F36E
🍯 @description honey pot U+1F36F
🍼 @description baby bottle U+1F37C
🥛 @description glass of milk U+1F95B
☕ @description hot beverage U+2615
🫖 @description teapot U+1FAD6
🍵 @description teacup without handle U+1F375
🍶 @description sake U+1F376
🍾 @description bottle with popping cork U+1F37E
🍷 @description wine glass U+1F377
🍸 @description cocktail glass U+1F378
🍹 @description tropical drink U+1F379
🍺 @description beer mug U+1F37A
🍻 @description clinking beer mugs U+1F37B
🥂 @description clinking glasses U+1F942
🥃 @description tumbler glass U+1F943
🥤 @description cup with straw U+1F964
🧋 @description bubble tea U+1F9CB
🧃 @description beverage box U+1F9C3
🧉 @description mate U+1F9C9
🧊 @description ice U+1F9CA
🥢 @description chopsticks U+1F962
🍽 @description fork and knife with plate U+1F37D
🍴 @description fork and knife U+1F374
🥄 @description spoon U+1F944
🔪 @description kitchen knife U+1F52A
🏺 @description amphora U+1F3FA
🌍 @description globe showing Europe-Africa U+1F30D
🌎 @description globe showing Americas U+1F30E
🌏 @description globe showing Asia-Australia U+1F30F
🌐 @description globe with meridians U+1F310
🗺 @description world map U+1F5FA
🗾 @description map of Japan U+1F5FE
🧭 @description compass U+1F9ED
🏔 @description snow-capped mountain U+1F3D4
⛰ @description mountain U+26F0
🌋 @description volcano U+1F30B
🗻 @description mount fuji U+1F5FB
🏕 @description camping U+1F3D5
🏖 @description beach with umbrella U+1F3D6
🏜 @description desert U+1F3DC
🏝 @description desert island U+1F3DD
🏞 @description national park U+1F3DE
🏟 @description stadium U+1F3DF
🏛 @description classical building U+1F3DB
🏗 @description building construction U+1F3D7
🧱 @description brick U+1F9F1
🪨 @description rock U+1FAA8
🪵 @description wood U+1FAB5
🛖 @description hut U+1F6D6
🏘 @description houses U+1F3D8
🏚 @description derelict house U+1F3DA
🏠 @description house U+1F3E0
🏡 @description house with garden U+1F3E1
🏢 @description office building U+1F3E2
🏣 @description Japanese post office U+1F3E3
🏤 @description post office U+1F3E4
🏥 @description hospital U+1F3E5
🏦 @description bank U+1F3E6
🏨 @description hotel U+1F3E8
🏩 @description love hotel U+1F3E9
🏪 @description convenience store U+1F3EA
🏫 @description school U+1F3EB
🏬 @description department store U+1F3EC
🏭 @description factory U+1F3ED
🏯 @description Japanese castle U+1F3EF
🏰 @description castle U+1F3F0
💒 @description wedding U+1F492
🗼 @description Tokyo tower U+1F5FC
🗽 @description Statue of Liberty U+1F5FD
⛪ @description church U+26EA
🕌 @description mosque U+1F54C
🛕 @description hindu temple U+1F6D5
🕍 @description synagogue U+1F54D
⛩ @description shinto shrine U+26E9
🕋 @description kaaba U+1F54B
⛲ @description fountain U+26F2
⛺ @description tent U+26FA
🌁 @description foggy U+1F301
🌃 @description night with stars U+1F303
🏙 @description cityscape U+1F3D9
🌄 @description sunrise over mountains U+1F304
🌅 @description sunrise U+1F305
🌆 @description cityscape at dusk U+1F306
🌇 @description sunset U+1F307
🌉 @description bridge at night U+1F309
♨ @description hot springs U+2668
🎠 @description carousel horse U+1F3A0
🎡 @description ferris wheel U+1F3A1
🎢 @description roller coaster U+1F3A2
💈 @description barber pole U+1F488
🎪 @description circus tent U+1F3AA
🚂 @description locomotive U+1F682
🚃 @description railway car U+1F683
🚄 @description high-speed train U+1F684
🚅 @description bullet train U+1F685
🚆 @description train U+1F686
🚇 @description metro U+1F687
🚈 @description light rail U+1F688
🚉 @description station U+1F689
🚊 @description tram U+1F68A
🚝 @description monorail U+1F69D
🚞 @description mountain railway U+1F69E
🚋 @description tram car U+1F68B
🚌 @description bus U+1F68C
🚍 @description oncoming bus U+1F68D
🚎 @description trolleybus U+1F68E
🚐 @description minibus U+1F690
🚑 @description ambulance U+1F691
🚒 @description fire engine U+1F692
🚓 @description police car U+1F693
🚔 @description oncoming police car U+1F694
🚕 @description taxi U+1F695
🚖 @description oncoming taxi U+1F696
🚗 @description automobile U+1F697
🚘 @description oncoming automobile U+1F698
🚙 @description sport utility vehicle U+1F699
🛻 @description pickup truck U+1F6FB
🚚 @description delivery truck U+1F69A
🚛 @description articulated lorry U+1F69B
🚜 @description tractor U+1F69C
🏎 @description racing car U+1F3CE
🏍 @description motorcycle U+1F3CD
🛵 @description motor scooter U+1F6F5
🦽 @description manual wheelchair U+1F9BD
🦼 @description motorized wheelchair U+1F9BC
🛺 @description auto rickshaw U+1F6FA
🚲 @description bicycle U+1F6B2
🛴 @description kick scooter U+1F6F4
🛹 @description skateboard U+1F6F9
🛼 @description roller skate U+1F6FC
🚏 @description bus stop U+1F68F
🛣 @description motorway U+1F6E3
🛤 @description railway track U+1F6E4
🛢 @description oil drum U+1F6E2
⛽ @description fuel pump U+26FD
🚨 @description police car light U+1F6A8
🚥 @description horizontal traffic light U+1F6A5
🚦 @description vertical traffic light U+1F6A6
🛑 @description stop sign U+1F6D1
🚧 @description construction U+1F6A7
⚓ @description anchor U+2693
⛵ @description sailboat U+26F5
🛶 @description canoe U+1F6F6
🚤 @description speedboat U+1F6A4
🛳 @description passenger ship U+1F6F3
⛴ @description ferry U+26F4
🛥 @description motor boat U+1F6E5
🚢 @description ship U+1F6A2
✈ @description airplane U+2708
🛩 @description small airplane U+1F6E9
🛫 @description airplane departure U+1F6EB
🛬 @description airplane arrival U+1F6EC
🪂 @description parachute U+1FA82
💺 @description seat U+1F4BA
🚁 @description helicopter U+1F681
🚟 @description suspension railway U+1F69F
🚠 @description mountain cableway U+1F6A0
🚡 @description aerial tramway U+1F6A1
🛰 @description satellite U+1F6F0
🚀 @description rocket U+1F680
🛸 @description flying saucer U+1F6F8
🛎 @description bellhop bell U+1F6CE
🧳 @description luggage U+1F9F3
⌛ @description hourglass done U+231B
⏳ @description hourglass not done U+23F3
⌚ @description watch U+231A
⏰ @description alarm clock U+23F0
⏱ @description stopwatch U+23F1
⏲ @description timer clock U+23F2
🕰 @description mantelpiece clock U+1F570
🕛 @description twelve o’clock U+1F55B
🕧 @description twelve-thirty U+1F567
🕐 @description one o’clock U+1F550
🕜 @description one-thirty U+1F55C
🕑 @description two o’clock U+1F551
🕝 @description two-thirty U+1F55D
🕒 @description three o’clock U+1F552
🕞 @description three-thirty U+1F55E
🕓 @description four o’clock U+1F553
🕟 @description four-thirty U+1F55F
🕔 @description five o’clock U+1F554
🕠 @description five-thirty U+1F560
🕕 @description six o’clock U+1F555
🕡 @description six-thirty U+1F561
🕖 @description seven o’clock U+1F556
🕢 @description seven-thirty U+1F562
🕗 @description eight o’clock U+1F557
🕣 @description eight-thirty U+1F563
🕘 @description nine o’clock U+1F558
🕤 @description nine-thirty U+1F564
🕙 @description ten o’clock U+1F559
🕥 @description ten-thirty U+1F565
🕚 @description eleven o’clock U+1F55A
🕦 @description eleven-thirty U+1F566
🌑 @description new moon U+1F311
🌒 @description waxing crescent moon U+1F312
🌓 @description first quarter moon U+1F313
🌔 @description waxing gibbous moon U+1F314
🌕 @description full moon U+1F315
🌖 @description waning gibbous moon U+1F316
🌗 @description last quarter moon U+1F317
🌘 @description waning crescent moon U+1F318
🌙 @description crescent moon U+1F319
🌚 @description new moon face U+1F31A
🌛 @description first quarter moon face U+1F31B
🌜 @description last quarter moon face U+1F31C
🌡 @description thermometer U+1F321
☀ @description sun U+2600
🌝 @description full moon face U+1F31D
🌞 @description sun with face U+1F31E
🪐 @description ringed planet U+1FA90
⭐ @description star U+2B50
🌟 @description glowing star U+1F31F
🌠 @description shooting star U+1F320
🌌 @description milky way U+1F30C
☁ @description cloud U+2601
⛅ @description sun behind cloud U+26C5
⛈ @description cloud with lightning and rain U+26C8
🌤 @description sun behind small cloud U+1F324
🌥 @description sun behind large cloud U+1F325
🌦 @description sun behind rain cloud U+1F326
🌧 @description cloud with rain U+1F327
🌨 @description cloud with snow U+1F328
🌩 @description cloud with lightning U+1F329
🌪 @description tornado U+1F32A
🌫 @description fog U+1F32B
🌬 @description wind face U+1F32C
🌀 @description cyclone U+1F300
🌈 @description rainbow U+1F308
🌂 @description closed umbrella U+1F302
☂ @description umbrella U+2602
☔ @description umbrella with rain drops U+2614
⛱ @description umbrella on ground U+26F1