forked from enescakir/emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.go
2012 lines (1998 loc) · 150 KB
/
constants.go
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
package emoji
// Code generated by github.com/NilPointer-Software/emoji/internal/generator DO NOT EDIT.
// Source: https://unicode.org/Public/emoji/latest/emoji-test.txt
// Unicode Version: 15.0
var (
// GROUP: Smileys & Emotion
// SUBGROUP: face-smiling
GrinningFace Emoji = "\U0001f600" // grinning face
GrinningFaceWithBigEyes Emoji = "\U0001f603" // grinning face with big eyes
GrinningFaceWithSmilingEyes Emoji = "\U0001f604" // grinning face with smiling eyes
BeamingFaceWithSmilingEyes Emoji = "\U0001f601" // beaming face with smiling eyes
GrinningSquintingFace Emoji = "\U0001f606" // grinning squinting face
GrinningFaceWithSweat Emoji = "\U0001f605" // grinning face with sweat
RollingOnTheFloorLaughing Emoji = "\U0001f923" // rolling on the floor laughing
FaceWithTearsOfJoy Emoji = "\U0001f602" // face with tears of joy
SlightlySmilingFace Emoji = "\U0001f642" // slightly smiling face
UpsideDownFace Emoji = "\U0001f643" // upside-down face
MeltingFace Emoji = "\U0001fae0" // melting face
WinkingFace Emoji = "\U0001f609" // winking face
SmilingFaceWithSmilingEyes Emoji = "\U0001f60a" // smiling face with smiling eyes
SmilingFaceWithHalo Emoji = "\U0001f607" // smiling face with halo
// SUBGROUP: face-affection
SmilingFaceWithHearts Emoji = "\U0001f970" // smiling face with hearts
SmilingFaceWithHeartEyes Emoji = "\U0001f60d" // smiling face with heart-eyes
StarStruck Emoji = "\U0001f929" // star-struck
FaceBlowingAKiss Emoji = "\U0001f618" // face blowing a kiss
KissingFace Emoji = "\U0001f617" // kissing face
SmilingFace Emoji = "\u263a\ufe0f" // smiling face
KissingFaceWithClosedEyes Emoji = "\U0001f61a" // kissing face with closed eyes
KissingFaceWithSmilingEyes Emoji = "\U0001f619" // kissing face with smiling eyes
SmilingFaceWithTear Emoji = "\U0001f972" // smiling face with tear
// SUBGROUP: face-tongue
FaceSavoringFood Emoji = "\U0001f60b" // face savoring food
FaceWithTongue Emoji = "\U0001f61b" // face with tongue
WinkingFaceWithTongue Emoji = "\U0001f61c" // winking face with tongue
ZanyFace Emoji = "\U0001f92a" // zany face
SquintingFaceWithTongue Emoji = "\U0001f61d" // squinting face with tongue
MoneyMouthFace Emoji = "\U0001f911" // money-mouth face
// SUBGROUP: face-hand
SmilingFaceWithOpenHands Emoji = "\U0001f917" // smiling face with open hands
FaceWithHandOverMouth Emoji = "\U0001f92d" // face with hand over mouth
FaceWithOpenEyesAndHandOverMouth Emoji = "\U0001fae2" // face with open eyes and hand over mouth
FaceWithPeekingEye Emoji = "\U0001fae3" // face with peeking eye
ShushingFace Emoji = "\U0001f92b" // shushing face
ThinkingFace Emoji = "\U0001f914" // thinking face
SalutingFace Emoji = "\U0001fae1" // saluting face
// SUBGROUP: face-neutral-skeptical
ZipperMouthFace Emoji = "\U0001f910" // zipper-mouth face
FaceWithRaisedEyebrow Emoji = "\U0001f928" // face with raised eyebrow
NeutralFace Emoji = "\U0001f610" // neutral face
ExpressionlessFace Emoji = "\U0001f611" // expressionless face
FaceWithoutMouth Emoji = "\U0001f636" // face without mouth
DottedLineFace Emoji = "\U0001fae5" // dotted line face
FaceInClouds Emoji = "\U0001f636\u200d\U0001f32b\ufe0f" // face in clouds
SmirkingFace Emoji = "\U0001f60f" // smirking face
UnamusedFace Emoji = "\U0001f612" // unamused face
FaceWithRollingEyes Emoji = "\U0001f644" // face with rolling eyes
GrimacingFace Emoji = "\U0001f62c" // grimacing face
FaceExhaling Emoji = "\U0001f62e\u200d\U0001f4a8" // face exhaling
LyingFace Emoji = "\U0001f925" // lying face
ShakingFace Emoji = "\U0001fae8" // shaking face
// SUBGROUP: face-sleepy
RelievedFace Emoji = "\U0001f60c" // relieved face
PensiveFace Emoji = "\U0001f614" // pensive face
SleepyFace Emoji = "\U0001f62a" // sleepy face
DroolingFace Emoji = "\U0001f924" // drooling face
SleepingFace Emoji = "\U0001f634" // sleeping face
// SUBGROUP: face-unwell
FaceWithMedicalMask Emoji = "\U0001f637" // face with medical mask
FaceWithThermometer Emoji = "\U0001f912" // face with thermometer
FaceWithHeadBandage Emoji = "\U0001f915" // face with head-bandage
NauseatedFace Emoji = "\U0001f922" // nauseated face
FaceVomiting Emoji = "\U0001f92e" // face vomiting
SneezingFace Emoji = "\U0001f927" // sneezing face
HotFace Emoji = "\U0001f975" // hot face
ColdFace Emoji = "\U0001f976" // cold face
WoozyFace Emoji = "\U0001f974" // woozy face
FaceWithCrossedOutEyes Emoji = "\U0001f635" // face with crossed-out eyes
FaceWithSpiralEyes Emoji = "\U0001f635\u200d\U0001f4ab" // face with spiral eyes
ExplodingHead Emoji = "\U0001f92f" // exploding head
// SUBGROUP: face-hat
CowboyHatFace Emoji = "\U0001f920" // cowboy hat face
PartyingFace Emoji = "\U0001f973" // partying face
DisguisedFace Emoji = "\U0001f978" // disguised face
// SUBGROUP: face-glasses
SmilingFaceWithSunglasses Emoji = "\U0001f60e" // smiling face with sunglasses
NerdFace Emoji = "\U0001f913" // nerd face
FaceWithMonocle Emoji = "\U0001f9d0" // face with monocle
// SUBGROUP: face-concerned
ConfusedFace Emoji = "\U0001f615" // confused face
FaceWithDiagonalMouth Emoji = "\U0001fae4" // face with diagonal mouth
WorriedFace Emoji = "\U0001f61f" // worried face
SlightlyFrowningFace Emoji = "\U0001f641" // slightly frowning face
FrowningFace Emoji = "\u2639\ufe0f" // frowning face
FaceWithOpenMouth Emoji = "\U0001f62e" // face with open mouth
HushedFace Emoji = "\U0001f62f" // hushed face
AstonishedFace Emoji = "\U0001f632" // astonished face
FlushedFace Emoji = "\U0001f633" // flushed face
PleadingFace Emoji = "\U0001f97a" // pleading face
FaceHoldingBackTears Emoji = "\U0001f979" // face holding back tears
FrowningFaceWithOpenMouth Emoji = "\U0001f626" // frowning face with open mouth
AnguishedFace Emoji = "\U0001f627" // anguished face
FearfulFace Emoji = "\U0001f628" // fearful face
AnxiousFaceWithSweat Emoji = "\U0001f630" // anxious face with sweat
SadButRelievedFace Emoji = "\U0001f625" // sad but relieved face
CryingFace Emoji = "\U0001f622" // crying face
LoudlyCryingFace Emoji = "\U0001f62d" // loudly crying face
FaceScreamingInFear Emoji = "\U0001f631" // face screaming in fear
ConfoundedFace Emoji = "\U0001f616" // confounded face
PerseveringFace Emoji = "\U0001f623" // persevering face
DisappointedFace Emoji = "\U0001f61e" // disappointed face
DowncastFaceWithSweat Emoji = "\U0001f613" // downcast face with sweat
WearyFace Emoji = "\U0001f629" // weary face
TiredFace Emoji = "\U0001f62b" // tired face
YawningFace Emoji = "\U0001f971" // yawning face
// SUBGROUP: face-negative
FaceWithSteamFromNose Emoji = "\U0001f624" // face with steam from nose
EnragedFace Emoji = "\U0001f621" // enraged face
AngryFace Emoji = "\U0001f620" // angry face
FaceWithSymbolsOnMouth Emoji = "\U0001f92c" // face with symbols on mouth
SmilingFaceWithHorns Emoji = "\U0001f608" // smiling face with horns
AngryFaceWithHorns Emoji = "\U0001f47f" // angry face with horns
Skull Emoji = "\U0001f480" // skull
SkullAndCrossbones Emoji = "\u2620\ufe0f" // skull and crossbones
// SUBGROUP: face-costume
PileOfPoo Emoji = "\U0001f4a9" // pile of poo
ClownFace Emoji = "\U0001f921" // clown face
Ogre Emoji = "\U0001f479" // ogre
Goblin Emoji = "\U0001f47a" // goblin
Ghost Emoji = "\U0001f47b" // ghost
Alien Emoji = "\U0001f47d" // alien
AlienMonster Emoji = "\U0001f47e" // alien monster
Robot Emoji = "\U0001f916" // robot
// SUBGROUP: cat-face
GrinningCat Emoji = "\U0001f63a" // grinning cat
GrinningCatWithSmilingEyes Emoji = "\U0001f638" // grinning cat with smiling eyes
CatWithTearsOfJoy Emoji = "\U0001f639" // cat with tears of joy
SmilingCatWithHeartEyes Emoji = "\U0001f63b" // smiling cat with heart-eyes
CatWithWrySmile Emoji = "\U0001f63c" // cat with wry smile
KissingCat Emoji = "\U0001f63d" // kissing cat
WearyCat Emoji = "\U0001f640" // weary cat
CryingCat Emoji = "\U0001f63f" // crying cat
PoutingCat Emoji = "\U0001f63e" // pouting cat
// SUBGROUP: monkey-face
SeeNoEvilMonkey Emoji = "\U0001f648" // see-no-evil monkey
HearNoEvilMonkey Emoji = "\U0001f649" // hear-no-evil monkey
SpeakNoEvilMonkey Emoji = "\U0001f64a" // speak-no-evil monkey
// SUBGROUP: heart
LoveLetter Emoji = "\U0001f48c" // love letter
HeartWithArrow Emoji = "\U0001f498" // heart with arrow
HeartWithRibbon Emoji = "\U0001f49d" // heart with ribbon
SparklingHeart Emoji = "\U0001f496" // sparkling heart
GrowingHeart Emoji = "\U0001f497" // growing heart
BeatingHeart Emoji = "\U0001f493" // beating heart
RevolvingHearts Emoji = "\U0001f49e" // revolving hearts
TwoHearts Emoji = "\U0001f495" // two hearts
HeartDecoration Emoji = "\U0001f49f" // heart decoration
HeartExclamation Emoji = "\u2763\ufe0f" // heart exclamation
BrokenHeart Emoji = "\U0001f494" // broken heart
HeartOnFire Emoji = "\u2764\ufe0f\u200d\U0001f525" // heart on fire
MendingHeart Emoji = "\u2764\ufe0f\u200d\U0001fa79" // mending heart
RedHeart Emoji = "\u2764\ufe0f" // red heart
PinkHeart Emoji = "\U0001fa77" // pink heart
OrangeHeart Emoji = "\U0001f9e1" // orange heart
YellowHeart Emoji = "\U0001f49b" // yellow heart
GreenHeart Emoji = "\U0001f49a" // green heart
BlueHeart Emoji = "\U0001f499" // blue heart
LightBlueHeart Emoji = "\U0001fa75" // light blue heart
PurpleHeart Emoji = "\U0001f49c" // purple heart
BrownHeart Emoji = "\U0001f90e" // brown heart
BlackHeart Emoji = "\U0001f5a4" // black heart
GreyHeart Emoji = "\U0001fa76" // grey heart
WhiteHeart Emoji = "\U0001f90d" // white heart
// SUBGROUP: emotion
KissMark Emoji = "\U0001f48b" // kiss mark
HundredPoints Emoji = "\U0001f4af" // hundred points
AngerSymbol Emoji = "\U0001f4a2" // anger symbol
Collision Emoji = "\U0001f4a5" // collision
Dizzy Emoji = "\U0001f4ab" // dizzy
SweatDroplets Emoji = "\U0001f4a6" // sweat droplets
DashingAway Emoji = "\U0001f4a8" // dashing away
Hole Emoji = "\U0001f573\ufe0f" // hole
SpeechBalloon Emoji = "\U0001f4ac" // speech balloon
EyeInSpeechBubble Emoji = "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f" // eye in speech bubble
LeftSpeechBubble Emoji = "\U0001f5e8\ufe0f" // left speech bubble
RightAngerBubble Emoji = "\U0001f5ef\ufe0f" // right anger bubble
ThoughtBalloon Emoji = "\U0001f4ad" // thought balloon
Zzz Emoji = "\U0001f4a4" // ZZZ
// GROUP: People & Body
// SUBGROUP: hand-fingers-open
WavingHand EmojiWithTone = newEmojiWithTone("\U0001f44b@") // waving hand
RaisedBackOfHand EmojiWithTone = newEmojiWithTone("\U0001f91a@") // raised back of hand
HandWithFingersSplayed EmojiWithTone = newEmojiWithTone("\U0001f590@").withDefaultTone("\ufe0f") // hand with fingers splayed
RaisedHand EmojiWithTone = newEmojiWithTone("\u270b@") // raised hand
VulcanSalute EmojiWithTone = newEmojiWithTone("\U0001f596@") // vulcan salute
RightwardsHand EmojiWithTone = newEmojiWithTone("\U0001faf1@") // rightwards hand
LeftwardsHand EmojiWithTone = newEmojiWithTone("\U0001faf2@") // leftwards hand
PalmDownHand EmojiWithTone = newEmojiWithTone("\U0001faf3@") // palm down hand
PalmUpHand EmojiWithTone = newEmojiWithTone("\U0001faf4@") // palm up hand
LeftwardsPushingHand EmojiWithTone = newEmojiWithTone("\U0001faf7@") // leftwards pushing hand
RightwardsPushingHand EmojiWithTone = newEmojiWithTone("\U0001faf8@") // rightwards pushing hand
// SUBGROUP: hand-fingers-partial
OkHand EmojiWithTone = newEmojiWithTone("\U0001f44c@") // OK hand
PinchedFingers EmojiWithTone = newEmojiWithTone("\U0001f90c@") // pinched fingers
PinchingHand EmojiWithTone = newEmojiWithTone("\U0001f90f@") // pinching hand
VictoryHand EmojiWithTone = newEmojiWithTone("\u270c@").withDefaultTone("\ufe0f") // victory hand
CrossedFingers EmojiWithTone = newEmojiWithTone("\U0001f91e@") // crossed fingers
HandWithIndexFingerAndThumbCrossed EmojiWithTone = newEmojiWithTone("\U0001faf0@") // hand with index finger and thumb crossed
LoveYouGesture EmojiWithTone = newEmojiWithTone("\U0001f91f@") // love-you gesture
SignOfTheHorns EmojiWithTone = newEmojiWithTone("\U0001f918@") // sign of the horns
CallMeHand EmojiWithTone = newEmojiWithTone("\U0001f919@") // call me hand
// SUBGROUP: hand-single-finger
BackhandIndexPointingLeft EmojiWithTone = newEmojiWithTone("\U0001f448@") // backhand index pointing left
BackhandIndexPointingRight EmojiWithTone = newEmojiWithTone("\U0001f449@") // backhand index pointing right
BackhandIndexPointingUp EmojiWithTone = newEmojiWithTone("\U0001f446@") // backhand index pointing up
MiddleFinger EmojiWithTone = newEmojiWithTone("\U0001f595@") // middle finger
BackhandIndexPointingDown EmojiWithTone = newEmojiWithTone("\U0001f447@") // backhand index pointing down
IndexPointingUp EmojiWithTone = newEmojiWithTone("\u261d@").withDefaultTone("\ufe0f") // index pointing up
IndexPointingAtTheViewer EmojiWithTone = newEmojiWithTone("\U0001faf5@") // index pointing at the viewer
// SUBGROUP: hand-fingers-closed
ThumbsUp EmojiWithTone = newEmojiWithTone("\U0001f44d@") // thumbs up
ThumbsDown EmojiWithTone = newEmojiWithTone("\U0001f44e@") // thumbs down
RaisedFist EmojiWithTone = newEmojiWithTone("\u270a@") // raised fist
OncomingFist EmojiWithTone = newEmojiWithTone("\U0001f44a@") // oncoming fist
LeftFacingFist EmojiWithTone = newEmojiWithTone("\U0001f91b@") // left-facing fist
RightFacingFist EmojiWithTone = newEmojiWithTone("\U0001f91c@") // right-facing fist
// SUBGROUP: hands
ClappingHands EmojiWithTone = newEmojiWithTone("\U0001f44f@") // clapping hands
RaisingHands EmojiWithTone = newEmojiWithTone("\U0001f64c@") // raising hands
HeartHands EmojiWithTone = newEmojiWithTone("\U0001faf6@") // heart hands
OpenHands EmojiWithTone = newEmojiWithTone("\U0001f450@") // open hands
PalmsUpTogether EmojiWithTone = newEmojiWithTone("\U0001f932@") // palms up together
Handshake EmojiWithTone = newEmojiWithTone("\U0001f91d@", "\U0001f91d@") // handshake
FoldedHands EmojiWithTone = newEmojiWithTone("\U0001f64f@") // folded hands
// SUBGROUP: hand-prop
WritingHand EmojiWithTone = newEmojiWithTone("\u270d@").withDefaultTone("\ufe0f") // writing hand
NailPolish EmojiWithTone = newEmojiWithTone("\U0001f485@") // nail polish
Selfie EmojiWithTone = newEmojiWithTone("\U0001f933@") // selfie
// SUBGROUP: body-parts
FlexedBiceps EmojiWithTone = newEmojiWithTone("\U0001f4aa@") // flexed biceps
MechanicalArm Emoji = "\U0001f9be" // mechanical arm
MechanicalLeg Emoji = "\U0001f9bf" // mechanical leg
Leg EmojiWithTone = newEmojiWithTone("\U0001f9b5@") // leg
Foot EmojiWithTone = newEmojiWithTone("\U0001f9b6@") // foot
Ear EmojiWithTone = newEmojiWithTone("\U0001f442@") // ear
EarWithHearingAid EmojiWithTone = newEmojiWithTone("\U0001f9bb@") // ear with hearing aid
Nose EmojiWithTone = newEmojiWithTone("\U0001f443@") // nose
Brain Emoji = "\U0001f9e0" // brain
AnatomicalHeart Emoji = "\U0001fac0" // anatomical heart
Lungs Emoji = "\U0001fac1" // lungs
Tooth Emoji = "\U0001f9b7" // tooth
Bone Emoji = "\U0001f9b4" // bone
Eyes Emoji = "\U0001f440" // eyes
Eye Emoji = "\U0001f441\ufe0f" // eye
Tongue Emoji = "\U0001f445" // tongue
Mouth Emoji = "\U0001f444" // mouth
BitingLip Emoji = "\U0001fae6" // biting lip
// SUBGROUP: person
Baby EmojiWithTone = newEmojiWithTone("\U0001f476@") // baby
Child EmojiWithTone = newEmojiWithTone("\U0001f9d2@") // child
Boy EmojiWithTone = newEmojiWithTone("\U0001f466@") // boy
Girl EmojiWithTone = newEmojiWithTone("\U0001f467@") // girl
Person EmojiWithTone = newEmojiWithTone("\U0001f9d1@") // person
PersonWithBlondHair EmojiWithTone = newEmojiWithTone("\U0001f471@") // person: blond hair
Man EmojiWithTone = newEmojiWithTone("\U0001f468@") // man
PersonWithBeard EmojiWithTone = newEmojiWithTone("\U0001f9d4@") // person: beard
ManWithBeard EmojiWithTone = newEmojiWithTone("\U0001f9d4@\u200d\u2642\ufe0f") // man: beard
WomanWithBeard EmojiWithTone = newEmojiWithTone("\U0001f9d4@\u200d\u2640\ufe0f") // woman: beard
ManWithRedHair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b0") // man: red hair
ManWithCurlyHair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b1") // man: curly hair
ManWithWhiteHair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b3") // man: white hair
ManBald EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b2") // man: bald
Woman EmojiWithTone = newEmojiWithTone("\U0001f469@") // woman
WomanWithRedHair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b0") // woman: red hair
PersonWithRedHair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b0") // person: red hair
WomanWithCurlyHair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b1") // woman: curly hair
PersonWithCurlyHair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b1") // person: curly hair
WomanWithWhiteHair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b3") // woman: white hair
PersonWithWhiteHair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b3") // person: white hair
WomanBald EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b2") // woman: bald
PersonBald EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b2") // person: bald
WomanWithBlondHair EmojiWithTone = newEmojiWithTone("\U0001f471@\u200d\u2640\ufe0f") // woman: blond hair
ManWithBlondHair EmojiWithTone = newEmojiWithTone("\U0001f471@\u200d\u2642\ufe0f") // man: blond hair
OlderPerson EmojiWithTone = newEmojiWithTone("\U0001f9d3@") // older person
OldMan EmojiWithTone = newEmojiWithTone("\U0001f474@") // old man
OldWoman EmojiWithTone = newEmojiWithTone("\U0001f475@") // old woman
// SUBGROUP: person-gesture
PersonFrowning EmojiWithTone = newEmojiWithTone("\U0001f64d@") // person frowning
ManFrowning EmojiWithTone = newEmojiWithTone("\U0001f64d@\u200d\u2642\ufe0f") // man frowning
WomanFrowning EmojiWithTone = newEmojiWithTone("\U0001f64d@\u200d\u2640\ufe0f") // woman frowning
PersonPouting EmojiWithTone = newEmojiWithTone("\U0001f64e@") // person pouting
ManPouting EmojiWithTone = newEmojiWithTone("\U0001f64e@\u200d\u2642\ufe0f") // man pouting
WomanPouting EmojiWithTone = newEmojiWithTone("\U0001f64e@\u200d\u2640\ufe0f") // woman pouting
PersonGesturingNo EmojiWithTone = newEmojiWithTone("\U0001f645@") // person gesturing NO
ManGesturingNo EmojiWithTone = newEmojiWithTone("\U0001f645@\u200d\u2642\ufe0f") // man gesturing NO
WomanGesturingNo EmojiWithTone = newEmojiWithTone("\U0001f645@\u200d\u2640\ufe0f") // woman gesturing NO
PersonGesturingOk EmojiWithTone = newEmojiWithTone("\U0001f646@") // person gesturing OK
ManGesturingOk EmojiWithTone = newEmojiWithTone("\U0001f646@\u200d\u2642\ufe0f") // man gesturing OK
WomanGesturingOk EmojiWithTone = newEmojiWithTone("\U0001f646@\u200d\u2640\ufe0f") // woman gesturing OK
PersonTippingHand EmojiWithTone = newEmojiWithTone("\U0001f481@") // person tipping hand
ManTippingHand EmojiWithTone = newEmojiWithTone("\U0001f481@\u200d\u2642\ufe0f") // man tipping hand
WomanTippingHand EmojiWithTone = newEmojiWithTone("\U0001f481@\u200d\u2640\ufe0f") // woman tipping hand
PersonRaisingHand EmojiWithTone = newEmojiWithTone("\U0001f64b@") // person raising hand
ManRaisingHand EmojiWithTone = newEmojiWithTone("\U0001f64b@\u200d\u2642\ufe0f") // man raising hand
WomanRaisingHand EmojiWithTone = newEmojiWithTone("\U0001f64b@\u200d\u2640\ufe0f") // woman raising hand
DeafPerson EmojiWithTone = newEmojiWithTone("\U0001f9cf@") // deaf person
DeafMan EmojiWithTone = newEmojiWithTone("\U0001f9cf@\u200d\u2642\ufe0f") // deaf man
DeafWoman EmojiWithTone = newEmojiWithTone("\U0001f9cf@\u200d\u2640\ufe0f") // deaf woman
PersonBowing EmojiWithTone = newEmojiWithTone("\U0001f647@") // person bowing
ManBowing EmojiWithTone = newEmojiWithTone("\U0001f647@\u200d\u2642\ufe0f") // man bowing
WomanBowing EmojiWithTone = newEmojiWithTone("\U0001f647@\u200d\u2640\ufe0f") // woman bowing
PersonFacepalming EmojiWithTone = newEmojiWithTone("\U0001f926@") // person facepalming
ManFacepalming EmojiWithTone = newEmojiWithTone("\U0001f926@\u200d\u2642\ufe0f") // man facepalming
WomanFacepalming EmojiWithTone = newEmojiWithTone("\U0001f926@\u200d\u2640\ufe0f") // woman facepalming
PersonShrugging EmojiWithTone = newEmojiWithTone("\U0001f937@") // person shrugging
ManShrugging EmojiWithTone = newEmojiWithTone("\U0001f937@\u200d\u2642\ufe0f") // man shrugging
WomanShrugging EmojiWithTone = newEmojiWithTone("\U0001f937@\u200d\u2640\ufe0f") // woman shrugging
// SUBGROUP: person-role
HealthWorker EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2695\ufe0f") // health worker
ManHealthWorker EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2695\ufe0f") // man health worker
WomanHealthWorker EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2695\ufe0f") // woman health worker
Student EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f393") // student
ManStudent EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f393") // man student
WomanStudent EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f393") // woman student
Teacher EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3eb") // teacher
ManTeacher EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3eb") // man teacher
WomanTeacher EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3eb") // woman teacher
Judge EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2696\ufe0f") // judge
ManJudge EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2696\ufe0f") // man judge
WomanJudge EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2696\ufe0f") // woman judge
Farmer EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f33e") // farmer
ManFarmer EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f33e") // man farmer
WomanFarmer EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f33e") // woman farmer
Cook EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f373") // cook
ManCook EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f373") // man cook
WomanCook EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f373") // woman cook
Mechanic EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f527") // mechanic
ManMechanic EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f527") // man mechanic
WomanMechanic EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f527") // woman mechanic
FactoryWorker EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3ed") // factory worker
ManFactoryWorker EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3ed") // man factory worker
WomanFactoryWorker EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3ed") // woman factory worker
OfficeWorker EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f4bc") // office worker
ManOfficeWorker EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f4bc") // man office worker
WomanOfficeWorker EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f4bc") // woman office worker
Scientist EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f52c") // scientist
ManScientist EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f52c") // man scientist
WomanScientist EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f52c") // woman scientist
Technologist EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f4bb") // technologist
ManTechnologist EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f4bb") // man technologist
WomanTechnologist EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f4bb") // woman technologist
Singer EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3a4") // singer
ManSinger EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3a4") // man singer
WomanSinger EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3a4") // woman singer
Artist EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3a8") // artist
ManArtist EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3a8") // man artist
WomanArtist EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3a8") // woman artist
Pilot EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2708\ufe0f") // pilot
ManPilot EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2708\ufe0f") // man pilot
WomanPilot EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2708\ufe0f") // woman pilot
Astronaut EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f680") // astronaut
ManAstronaut EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f680") // man astronaut
WomanAstronaut EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f680") // woman astronaut
Firefighter EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f692") // firefighter
ManFirefighter EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f692") // man firefighter
WomanFirefighter EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f692") // woman firefighter
PoliceOfficer EmojiWithTone = newEmojiWithTone("\U0001f46e@") // police officer
ManPoliceOfficer EmojiWithTone = newEmojiWithTone("\U0001f46e@\u200d\u2642\ufe0f") // man police officer
WomanPoliceOfficer EmojiWithTone = newEmojiWithTone("\U0001f46e@\u200d\u2640\ufe0f") // woman police officer
Detective EmojiWithTone = newEmojiWithTone("\U0001f575@").withDefaultTone("\ufe0f") // detective
ManDetective EmojiWithTone = newEmojiWithTone("\U0001f575@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man detective
WomanDetective EmojiWithTone = newEmojiWithTone("\U0001f575@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman detective
Guard EmojiWithTone = newEmojiWithTone("\U0001f482@") // guard
ManGuard EmojiWithTone = newEmojiWithTone("\U0001f482@\u200d\u2642\ufe0f") // man guard
WomanGuard EmojiWithTone = newEmojiWithTone("\U0001f482@\u200d\u2640\ufe0f") // woman guard
Ninja EmojiWithTone = newEmojiWithTone("\U0001f977@") // ninja
ConstructionWorker EmojiWithTone = newEmojiWithTone("\U0001f477@") // construction worker
ManConstructionWorker EmojiWithTone = newEmojiWithTone("\U0001f477@\u200d\u2642\ufe0f") // man construction worker
WomanConstructionWorker EmojiWithTone = newEmojiWithTone("\U0001f477@\u200d\u2640\ufe0f") // woman construction worker
PersonWithCrown EmojiWithTone = newEmojiWithTone("\U0001fac5@") // person with crown
Prince EmojiWithTone = newEmojiWithTone("\U0001f934@") // prince
Princess EmojiWithTone = newEmojiWithTone("\U0001f478@") // princess
PersonWearingTurban EmojiWithTone = newEmojiWithTone("\U0001f473@") // person wearing turban
ManWearingTurban EmojiWithTone = newEmojiWithTone("\U0001f473@\u200d\u2642\ufe0f") // man wearing turban
WomanWearingTurban EmojiWithTone = newEmojiWithTone("\U0001f473@\u200d\u2640\ufe0f") // woman wearing turban
PersonWithSkullcap EmojiWithTone = newEmojiWithTone("\U0001f472@") // person with skullcap
WomanWithHeadscarf EmojiWithTone = newEmojiWithTone("\U0001f9d5@") // woman with headscarf
PersonInTuxedo EmojiWithTone = newEmojiWithTone("\U0001f935@") // person in tuxedo
ManInTuxedo EmojiWithTone = newEmojiWithTone("\U0001f935@\u200d\u2642\ufe0f") // man in tuxedo
WomanInTuxedo EmojiWithTone = newEmojiWithTone("\U0001f935@\u200d\u2640\ufe0f") // woman in tuxedo
PersonWithVeil EmojiWithTone = newEmojiWithTone("\U0001f470@") // person with veil
ManWithVeil EmojiWithTone = newEmojiWithTone("\U0001f470@\u200d\u2642\ufe0f") // man with veil
WomanWithVeil EmojiWithTone = newEmojiWithTone("\U0001f470@\u200d\u2640\ufe0f") // woman with veil
PregnantWoman EmojiWithTone = newEmojiWithTone("\U0001f930@") // pregnant woman
PregnantMan EmojiWithTone = newEmojiWithTone("\U0001fac3@") // pregnant man
PregnantPerson EmojiWithTone = newEmojiWithTone("\U0001fac4@") // pregnant person
BreastFeeding EmojiWithTone = newEmojiWithTone("\U0001f931@") // breast-feeding
WomanFeedingBaby EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f37c") // woman feeding baby
ManFeedingBaby EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f37c") // man feeding baby
PersonFeedingBaby EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f37c") // person feeding baby
// SUBGROUP: person-fantasy
BabyAngel EmojiWithTone = newEmojiWithTone("\U0001f47c@") // baby angel
SantaClaus EmojiWithTone = newEmojiWithTone("\U0001f385@") // Santa Claus
MrsClaus EmojiWithTone = newEmojiWithTone("\U0001f936@") // Mrs. Claus
MxClaus EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f384") // mx claus
Superhero EmojiWithTone = newEmojiWithTone("\U0001f9b8@") // superhero
ManSuperhero EmojiWithTone = newEmojiWithTone("\U0001f9b8@\u200d\u2642\ufe0f") // man superhero
WomanSuperhero EmojiWithTone = newEmojiWithTone("\U0001f9b8@\u200d\u2640\ufe0f") // woman superhero
Supervillain EmojiWithTone = newEmojiWithTone("\U0001f9b9@") // supervillain
ManSupervillain EmojiWithTone = newEmojiWithTone("\U0001f9b9@\u200d\u2642\ufe0f") // man supervillain
WomanSupervillain EmojiWithTone = newEmojiWithTone("\U0001f9b9@\u200d\u2640\ufe0f") // woman supervillain
Mage EmojiWithTone = newEmojiWithTone("\U0001f9d9@") // mage
ManMage EmojiWithTone = newEmojiWithTone("\U0001f9d9@\u200d\u2642\ufe0f") // man mage
WomanMage EmojiWithTone = newEmojiWithTone("\U0001f9d9@\u200d\u2640\ufe0f") // woman mage
Fairy EmojiWithTone = newEmojiWithTone("\U0001f9da@") // fairy
ManFairy EmojiWithTone = newEmojiWithTone("\U0001f9da@\u200d\u2642\ufe0f") // man fairy
WomanFairy EmojiWithTone = newEmojiWithTone("\U0001f9da@\u200d\u2640\ufe0f") // woman fairy
Vampire EmojiWithTone = newEmojiWithTone("\U0001f9db@") // vampire
ManVampire EmojiWithTone = newEmojiWithTone("\U0001f9db@\u200d\u2642\ufe0f") // man vampire
WomanVampire EmojiWithTone = newEmojiWithTone("\U0001f9db@\u200d\u2640\ufe0f") // woman vampire
Merperson EmojiWithTone = newEmojiWithTone("\U0001f9dc@") // merperson
Merman EmojiWithTone = newEmojiWithTone("\U0001f9dc@\u200d\u2642\ufe0f") // merman
Mermaid EmojiWithTone = newEmojiWithTone("\U0001f9dc@\u200d\u2640\ufe0f") // mermaid
Elf EmojiWithTone = newEmojiWithTone("\U0001f9dd@") // elf
ManElf EmojiWithTone = newEmojiWithTone("\U0001f9dd@\u200d\u2642\ufe0f") // man elf
WomanElf EmojiWithTone = newEmojiWithTone("\U0001f9dd@\u200d\u2640\ufe0f") // woman elf
Genie Emoji = "\U0001f9de" // genie
ManGenie Emoji = "\U0001f9de\u200d\u2642\ufe0f" // man genie
WomanGenie Emoji = "\U0001f9de\u200d\u2640\ufe0f" // woman genie
Zombie Emoji = "\U0001f9df" // zombie
ManZombie Emoji = "\U0001f9df\u200d\u2642\ufe0f" // man zombie
WomanZombie Emoji = "\U0001f9df\u200d\u2640\ufe0f" // woman zombie
Troll Emoji = "\U0001f9cc" // troll
// SUBGROUP: person-activity
PersonGettingMassage EmojiWithTone = newEmojiWithTone("\U0001f486@") // person getting massage
ManGettingMassage EmojiWithTone = newEmojiWithTone("\U0001f486@\u200d\u2642\ufe0f") // man getting massage
WomanGettingMassage EmojiWithTone = newEmojiWithTone("\U0001f486@\u200d\u2640\ufe0f") // woman getting massage
PersonGettingHaircut EmojiWithTone = newEmojiWithTone("\U0001f487@") // person getting haircut
ManGettingHaircut EmojiWithTone = newEmojiWithTone("\U0001f487@\u200d\u2642\ufe0f") // man getting haircut
WomanGettingHaircut EmojiWithTone = newEmojiWithTone("\U0001f487@\u200d\u2640\ufe0f") // woman getting haircut
PersonWalking EmojiWithTone = newEmojiWithTone("\U0001f6b6@") // person walking
ManWalking EmojiWithTone = newEmojiWithTone("\U0001f6b6@\u200d\u2642\ufe0f") // man walking
WomanWalking EmojiWithTone = newEmojiWithTone("\U0001f6b6@\u200d\u2640\ufe0f") // woman walking
PersonStanding EmojiWithTone = newEmojiWithTone("\U0001f9cd@") // person standing
ManStanding EmojiWithTone = newEmojiWithTone("\U0001f9cd@\u200d\u2642\ufe0f") // man standing
WomanStanding EmojiWithTone = newEmojiWithTone("\U0001f9cd@\u200d\u2640\ufe0f") // woman standing
PersonKneeling EmojiWithTone = newEmojiWithTone("\U0001f9ce@") // person kneeling
ManKneeling EmojiWithTone = newEmojiWithTone("\U0001f9ce@\u200d\u2642\ufe0f") // man kneeling
WomanKneeling EmojiWithTone = newEmojiWithTone("\U0001f9ce@\u200d\u2640\ufe0f") // woman kneeling
PersonWithWhiteCane EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9af") // person with white cane
ManWithWhiteCane EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9af") // man with white cane
WomanWithWhiteCane EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9af") // woman with white cane
PersonInMotorizedWheelchair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9bc") // person in motorized wheelchair
ManInMotorizedWheelchair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9bc") // man in motorized wheelchair
WomanInMotorizedWheelchair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9bc") // woman in motorized wheelchair
PersonInManualWheelchair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9bd") // person in manual wheelchair
ManInManualWheelchair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9bd") // man in manual wheelchair
WomanInManualWheelchair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9bd") // woman in manual wheelchair
PersonRunning EmojiWithTone = newEmojiWithTone("\U0001f3c3@") // person running
ManRunning EmojiWithTone = newEmojiWithTone("\U0001f3c3@\u200d\u2642\ufe0f") // man running
WomanRunning EmojiWithTone = newEmojiWithTone("\U0001f3c3@\u200d\u2640\ufe0f") // woman running
WomanDancing EmojiWithTone = newEmojiWithTone("\U0001f483@") // woman dancing
ManDancing EmojiWithTone = newEmojiWithTone("\U0001f57a@") // man dancing
PersonInSuitLevitating EmojiWithTone = newEmojiWithTone("\U0001f574@").withDefaultTone("\ufe0f") // person in suit levitating
PeopleWithBunnyEars Emoji = "\U0001f46f" // people with bunny ears
MenWithBunnyEars Emoji = "\U0001f46f\u200d\u2642\ufe0f" // men with bunny ears
WomenWithBunnyEars Emoji = "\U0001f46f\u200d\u2640\ufe0f" // women with bunny ears
PersonInSteamyRoom EmojiWithTone = newEmojiWithTone("\U0001f9d6@") // person in steamy room
ManInSteamyRoom EmojiWithTone = newEmojiWithTone("\U0001f9d6@\u200d\u2642\ufe0f") // man in steamy room
WomanInSteamyRoom EmojiWithTone = newEmojiWithTone("\U0001f9d6@\u200d\u2640\ufe0f") // woman in steamy room
PersonClimbing EmojiWithTone = newEmojiWithTone("\U0001f9d7@") // person climbing
ManClimbing EmojiWithTone = newEmojiWithTone("\U0001f9d7@\u200d\u2642\ufe0f") // man climbing
WomanClimbing EmojiWithTone = newEmojiWithTone("\U0001f9d7@\u200d\u2640\ufe0f") // woman climbing
// SUBGROUP: person-sport
PersonFencing Emoji = "\U0001f93a" // person fencing
HorseRacing EmojiWithTone = newEmojiWithTone("\U0001f3c7@") // horse racing
Skier Emoji = "\u26f7\ufe0f" // skier
Snowboarder EmojiWithTone = newEmojiWithTone("\U0001f3c2@") // snowboarder
PersonGolfing EmojiWithTone = newEmojiWithTone("\U0001f3cc@").withDefaultTone("\ufe0f") // person golfing
ManGolfing EmojiWithTone = newEmojiWithTone("\U0001f3cc@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man golfing
WomanGolfing EmojiWithTone = newEmojiWithTone("\U0001f3cc@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman golfing
PersonSurfing EmojiWithTone = newEmojiWithTone("\U0001f3c4@") // person surfing
ManSurfing EmojiWithTone = newEmojiWithTone("\U0001f3c4@\u200d\u2642\ufe0f") // man surfing
WomanSurfing EmojiWithTone = newEmojiWithTone("\U0001f3c4@\u200d\u2640\ufe0f") // woman surfing
PersonRowingBoat EmojiWithTone = newEmojiWithTone("\U0001f6a3@") // person rowing boat
ManRowingBoat EmojiWithTone = newEmojiWithTone("\U0001f6a3@\u200d\u2642\ufe0f") // man rowing boat
WomanRowingBoat EmojiWithTone = newEmojiWithTone("\U0001f6a3@\u200d\u2640\ufe0f") // woman rowing boat
PersonSwimming EmojiWithTone = newEmojiWithTone("\U0001f3ca@") // person swimming
ManSwimming EmojiWithTone = newEmojiWithTone("\U0001f3ca@\u200d\u2642\ufe0f") // man swimming
WomanSwimming EmojiWithTone = newEmojiWithTone("\U0001f3ca@\u200d\u2640\ufe0f") // woman swimming
PersonBouncingBall EmojiWithTone = newEmojiWithTone("\u26f9@").withDefaultTone("\ufe0f") // person bouncing ball
ManBouncingBall EmojiWithTone = newEmojiWithTone("\u26f9@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man bouncing ball
WomanBouncingBall EmojiWithTone = newEmojiWithTone("\u26f9@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman bouncing ball
PersonLiftingWeights EmojiWithTone = newEmojiWithTone("\U0001f3cb@").withDefaultTone("\ufe0f") // person lifting weights
ManLiftingWeights EmojiWithTone = newEmojiWithTone("\U0001f3cb@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man lifting weights
WomanLiftingWeights EmojiWithTone = newEmojiWithTone("\U0001f3cb@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman lifting weights
PersonBiking EmojiWithTone = newEmojiWithTone("\U0001f6b4@") // person biking
ManBiking EmojiWithTone = newEmojiWithTone("\U0001f6b4@\u200d\u2642\ufe0f") // man biking
WomanBiking EmojiWithTone = newEmojiWithTone("\U0001f6b4@\u200d\u2640\ufe0f") // woman biking
PersonMountainBiking EmojiWithTone = newEmojiWithTone("\U0001f6b5@") // person mountain biking
ManMountainBiking EmojiWithTone = newEmojiWithTone("\U0001f6b5@\u200d\u2642\ufe0f") // man mountain biking
WomanMountainBiking EmojiWithTone = newEmojiWithTone("\U0001f6b5@\u200d\u2640\ufe0f") // woman mountain biking
PersonCartwheeling EmojiWithTone = newEmojiWithTone("\U0001f938@") // person cartwheeling
ManCartwheeling EmojiWithTone = newEmojiWithTone("\U0001f938@\u200d\u2642\ufe0f") // man cartwheeling
WomanCartwheeling EmojiWithTone = newEmojiWithTone("\U0001f938@\u200d\u2640\ufe0f") // woman cartwheeling
PeopleWrestling Emoji = "\U0001f93c" // people wrestling
MenWrestling Emoji = "\U0001f93c\u200d\u2642\ufe0f" // men wrestling
WomenWrestling Emoji = "\U0001f93c\u200d\u2640\ufe0f" // women wrestling
PersonPlayingWaterPolo EmojiWithTone = newEmojiWithTone("\U0001f93d@") // person playing water polo
ManPlayingWaterPolo EmojiWithTone = newEmojiWithTone("\U0001f93d@\u200d\u2642\ufe0f") // man playing water polo
WomanPlayingWaterPolo EmojiWithTone = newEmojiWithTone("\U0001f93d@\u200d\u2640\ufe0f") // woman playing water polo
PersonPlayingHandball EmojiWithTone = newEmojiWithTone("\U0001f93e@") // person playing handball
ManPlayingHandball EmojiWithTone = newEmojiWithTone("\U0001f93e@\u200d\u2642\ufe0f") // man playing handball
WomanPlayingHandball EmojiWithTone = newEmojiWithTone("\U0001f93e@\u200d\u2640\ufe0f") // woman playing handball
PersonJuggling EmojiWithTone = newEmojiWithTone("\U0001f939@") // person juggling
ManJuggling EmojiWithTone = newEmojiWithTone("\U0001f939@\u200d\u2642\ufe0f") // man juggling
WomanJuggling EmojiWithTone = newEmojiWithTone("\U0001f939@\u200d\u2640\ufe0f") // woman juggling
// SUBGROUP: person-resting
PersonInLotusPosition EmojiWithTone = newEmojiWithTone("\U0001f9d8@") // person in lotus position
ManInLotusPosition EmojiWithTone = newEmojiWithTone("\U0001f9d8@\u200d\u2642\ufe0f") // man in lotus position
WomanInLotusPosition EmojiWithTone = newEmojiWithTone("\U0001f9d8@\u200d\u2640\ufe0f") // woman in lotus position
PersonTakingBath EmojiWithTone = newEmojiWithTone("\U0001f6c0@") // person taking bath
PersonInBed EmojiWithTone = newEmojiWithTone("\U0001f6cc@") // person in bed
// SUBGROUP: family
PeopleHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f91d\u200d\U0001f9d1@", "\U0001f9d1@\u200d\U0001f91d\u200d\U0001f9d1@") // people holding hands
WomenHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f46d@", "\U0001f469@\u200d\U0001f91d\u200d\U0001f469@") // women holding hands
WomanAndManHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f46b@", "\U0001f469@\u200d\U0001f91d\u200d\U0001f468@") // woman and man holding hands
MenHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f46c@", "\U0001f468@\u200d\U0001f91d\u200d\U0001f468@") // men holding hands
Kiss EmojiWithTone = newEmojiWithTone("\U0001f48f@") // kiss
KissPersonPerson EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f9d1@", "\U0001f9d1@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f9d1@") // kiss: person, person, light skin tone, medium-light skin tone
KissWomanMan EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468@", "\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468@") // kiss: woman, man
KissManMan EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468@", "\U0001f468@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468@") // kiss: man, man
KissWomanWoman EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469@", "\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469@") // kiss: woman, woman
CoupleWithHeart EmojiWithTone = newEmojiWithTone("\U0001f491@") // couple with heart
CoupleWithHeartPersonPerson EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2764\ufe0f\u200d\U0001f9d1@", "\U0001f9d1@\u200d\u2764\ufe0f\u200d\U0001f9d1@") // couple with heart: person, person, light skin tone, medium-light skin tone
CoupleWithHeartWomanMan EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f468@", "\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f468@") // couple with heart: woman, man
CoupleWithHeartManMan EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2764\ufe0f\u200d\U0001f468@", "\U0001f468@\u200d\u2764\ufe0f\u200d\U0001f468@") // couple with heart: man, man
CoupleWithHeartWomanWoman EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f469@", "\U0001f469@\u200d\u2764\ufe0f\u200d\U0001f469@") // couple with heart: woman, woman
Family Emoji = "\U0001f46a" // family
FamilyManWomanBoy Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f466" // family: man, woman, boy
FamilyManWomanGirl Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f467" // family: man, woman, girl
FamilyManWomanGirlBoy Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466" // family: man, woman, girl, boy
FamilyManWomanBoyBoy Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466" // family: man, woman, boy, boy
FamilyManWomanGirlGirl Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467" // family: man, woman, girl, girl
FamilyManManBoy Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f466" // family: man, man, boy
FamilyManManGirl Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f467" // family: man, man, girl
FamilyManManGirlBoy Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466" // family: man, man, girl, boy
FamilyManManBoyBoy Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466" // family: man, man, boy, boy
FamilyManManGirlGirl Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467" // family: man, man, girl, girl
FamilyWomanWomanBoy Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f466" // family: woman, woman, boy
FamilyWomanWomanGirl Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f467" // family: woman, woman, girl
FamilyWomanWomanGirlBoy Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466" // family: woman, woman, girl, boy
FamilyWomanWomanBoyBoy Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466" // family: woman, woman, boy, boy
FamilyWomanWomanGirlGirl Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467" // family: woman, woman, girl, girl
FamilyManBoy Emoji = "\U0001f468\u200d\U0001f466" // family: man, boy
FamilyManBoyBoy Emoji = "\U0001f468\u200d\U0001f466\u200d\U0001f466" // family: man, boy, boy
FamilyManGirl Emoji = "\U0001f468\u200d\U0001f467" // family: man, girl
FamilyManGirlBoy Emoji = "\U0001f468\u200d\U0001f467\u200d\U0001f466" // family: man, girl, boy
FamilyManGirlGirl Emoji = "\U0001f468\u200d\U0001f467\u200d\U0001f467" // family: man, girl, girl
FamilyWomanBoy Emoji = "\U0001f469\u200d\U0001f466" // family: woman, boy
FamilyWomanBoyBoy Emoji = "\U0001f469\u200d\U0001f466\u200d\U0001f466" // family: woman, boy, boy
FamilyWomanGirl Emoji = "\U0001f469\u200d\U0001f467" // family: woman, girl
FamilyWomanGirlBoy Emoji = "\U0001f469\u200d\U0001f467\u200d\U0001f466" // family: woman, girl, boy
FamilyWomanGirlGirl Emoji = "\U0001f469\u200d\U0001f467\u200d\U0001f467" // family: woman, girl, girl
// SUBGROUP: person-symbol
SpeakingHead Emoji = "\U0001f5e3\ufe0f" // speaking head
BustInSilhouette Emoji = "\U0001f464" // bust in silhouette
BustsInSilhouette Emoji = "\U0001f465" // busts in silhouette
PeopleHugging Emoji = "\U0001fac2" // people hugging
Footprints Emoji = "\U0001f463" // footprints
// GROUP: Component
// SUBGROUP: skin-tone
LightSkinTone Emoji = "\U0001f3fb" // light skin tone
MediumLightSkinTone Emoji = "\U0001f3fc" // medium-light skin tone
MediumSkinTone Emoji = "\U0001f3fd" // medium skin tone
MediumDarkSkinTone Emoji = "\U0001f3fe" // medium-dark skin tone
DarkSkinTone Emoji = "\U0001f3ff" // dark skin tone
// SUBGROUP: hair-style
RedHair Emoji = "\U0001f9b0" // red hair
CurlyHair Emoji = "\U0001f9b1" // curly hair
WhiteHair Emoji = "\U0001f9b3" // white hair
Bald Emoji = "\U0001f9b2" // bald
// GROUP: Animals & Nature
// SUBGROUP: animal-mammal
MonkeyFace Emoji = "\U0001f435" // monkey face
Monkey Emoji = "\U0001f412" // monkey
Gorilla Emoji = "\U0001f98d" // gorilla
Orangutan Emoji = "\U0001f9a7" // orangutan
DogFace Emoji = "\U0001f436" // dog face
Dog Emoji = "\U0001f415" // dog
GuideDog Emoji = "\U0001f9ae" // guide dog
ServiceDog Emoji = "\U0001f415\u200d\U0001f9ba" // service dog
Poodle Emoji = "\U0001f429" // poodle
Wolf Emoji = "\U0001f43a" // wolf
Fox Emoji = "\U0001f98a" // fox
Raccoon Emoji = "\U0001f99d" // raccoon
CatFace Emoji = "\U0001f431" // cat face
Cat Emoji = "\U0001f408" // cat
BlackCat Emoji = "\U0001f408\u200d\u2b1b" // black cat
Lion Emoji = "\U0001f981" // lion
TigerFace Emoji = "\U0001f42f" // tiger face
Tiger Emoji = "\U0001f405" // tiger
Leopard Emoji = "\U0001f406" // leopard
HorseFace Emoji = "\U0001f434" // horse face
Moose Emoji = "\U0001face" // moose
Donkey Emoji = "\U0001facf" // donkey
Horse Emoji = "\U0001f40e" // horse
Unicorn Emoji = "\U0001f984" // unicorn
Zebra Emoji = "\U0001f993" // zebra
Deer Emoji = "\U0001f98c" // deer
Bison Emoji = "\U0001f9ac" // bison
CowFace Emoji = "\U0001f42e" // cow face
Ox Emoji = "\U0001f402" // ox
WaterBuffalo Emoji = "\U0001f403" // water buffalo
Cow Emoji = "\U0001f404" // cow
PigFace Emoji = "\U0001f437" // pig face
Pig Emoji = "\U0001f416" // pig
Boar Emoji = "\U0001f417" // boar
PigNose Emoji = "\U0001f43d" // pig nose
Ram Emoji = "\U0001f40f" // ram
Ewe Emoji = "\U0001f411" // ewe
Goat Emoji = "\U0001f410" // goat
Camel Emoji = "\U0001f42a" // camel
TwoHumpCamel Emoji = "\U0001f42b" // two-hump camel
Llama Emoji = "\U0001f999" // llama
Giraffe Emoji = "\U0001f992" // giraffe
Elephant Emoji = "\U0001f418" // elephant
Mammoth Emoji = "\U0001f9a3" // mammoth
Rhinoceros Emoji = "\U0001f98f" // rhinoceros
Hippopotamus Emoji = "\U0001f99b" // hippopotamus
MouseFace Emoji = "\U0001f42d" // mouse face
Mouse Emoji = "\U0001f401" // mouse
Rat Emoji = "\U0001f400" // rat
Hamster Emoji = "\U0001f439" // hamster
RabbitFace Emoji = "\U0001f430" // rabbit face
Rabbit Emoji = "\U0001f407" // rabbit
Chipmunk Emoji = "\U0001f43f\ufe0f" // chipmunk
Beaver Emoji = "\U0001f9ab" // beaver
Hedgehog Emoji = "\U0001f994" // hedgehog
Bat Emoji = "\U0001f987" // bat
Bear Emoji = "\U0001f43b" // bear
PolarBear Emoji = "\U0001f43b\u200d\u2744\ufe0f" // polar bear
Koala Emoji = "\U0001f428" // koala
Panda Emoji = "\U0001f43c" // panda
Sloth Emoji = "\U0001f9a5" // sloth
Otter Emoji = "\U0001f9a6" // otter
Skunk Emoji = "\U0001f9a8" // skunk
Kangaroo Emoji = "\U0001f998" // kangaroo
Badger Emoji = "\U0001f9a1" // badger
PawPrints Emoji = "\U0001f43e" // paw prints
// SUBGROUP: animal-bird
Turkey Emoji = "\U0001f983" // turkey
Chicken Emoji = "\U0001f414" // chicken
Rooster Emoji = "\U0001f413" // rooster
HatchingChick Emoji = "\U0001f423" // hatching chick
BabyChick Emoji = "\U0001f424" // baby chick
FrontFacingBabyChick Emoji = "\U0001f425" // front-facing baby chick
Bird Emoji = "\U0001f426" // bird
Penguin Emoji = "\U0001f427" // penguin
Dove Emoji = "\U0001f54a\ufe0f" // dove
Eagle Emoji = "\U0001f985" // eagle
Duck Emoji = "\U0001f986" // duck
Swan Emoji = "\U0001f9a2" // swan
Owl Emoji = "\U0001f989" // owl
Dodo Emoji = "\U0001f9a4" // dodo
Feather Emoji = "\U0001fab6" // feather
Flamingo Emoji = "\U0001f9a9" // flamingo
Peacock Emoji = "\U0001f99a" // peacock
Parrot Emoji = "\U0001f99c" // parrot
Wing Emoji = "\U0001fabd" // wing
BlackBird Emoji = "\U0001f426\u200d\u2b1b" // black bird
Goose Emoji = "\U0001fabf" // goose
// SUBGROUP: animal-amphibian
Frog Emoji = "\U0001f438" // frog
// SUBGROUP: animal-reptile
Crocodile Emoji = "\U0001f40a" // crocodile
Turtle Emoji = "\U0001f422" // turtle
Lizard Emoji = "\U0001f98e" // lizard
Snake Emoji = "\U0001f40d" // snake
DragonFace Emoji = "\U0001f432" // dragon face
Dragon Emoji = "\U0001f409" // dragon
Sauropod Emoji = "\U0001f995" // sauropod
TRex Emoji = "\U0001f996" // T-Rex
// SUBGROUP: animal-marine
SpoutingWhale Emoji = "\U0001f433" // spouting whale
Whale Emoji = "\U0001f40b" // whale
Dolphin Emoji = "\U0001f42c" // dolphin
Seal Emoji = "\U0001f9ad" // seal
Fish Emoji = "\U0001f41f" // fish
TropicalFish Emoji = "\U0001f420" // tropical fish
Blowfish Emoji = "\U0001f421" // blowfish
Shark Emoji = "\U0001f988" // shark
Octopus Emoji = "\U0001f419" // octopus
SpiralShell Emoji = "\U0001f41a" // spiral shell
Coral Emoji = "\U0001fab8" // coral
Jellyfish Emoji = "\U0001fabc" // jellyfish
// SUBGROUP: animal-bug
Snail Emoji = "\U0001f40c" // snail
Butterfly Emoji = "\U0001f98b" // butterfly
Bug Emoji = "\U0001f41b" // bug
Ant Emoji = "\U0001f41c" // ant
Honeybee Emoji = "\U0001f41d" // honeybee
Beetle Emoji = "\U0001fab2" // beetle
LadyBeetle Emoji = "\U0001f41e" // lady beetle
Cricket Emoji = "\U0001f997" // cricket
Cockroach Emoji = "\U0001fab3" // cockroach
Spider Emoji = "\U0001f577\ufe0f" // spider
SpiderWeb Emoji = "\U0001f578\ufe0f" // spider web
Scorpion Emoji = "\U0001f982" // scorpion
Mosquito Emoji = "\U0001f99f" // mosquito
Fly Emoji = "\U0001fab0" // fly
Worm Emoji = "\U0001fab1" // worm
Microbe Emoji = "\U0001f9a0" // microbe
// SUBGROUP: plant-flower
Bouquet Emoji = "\U0001f490" // bouquet
CherryBlossom Emoji = "\U0001f338" // cherry blossom
WhiteFlower Emoji = "\U0001f4ae" // white flower
Lotus Emoji = "\U0001fab7" // lotus
Rosette Emoji = "\U0001f3f5\ufe0f" // rosette
Rose Emoji = "\U0001f339" // rose
WiltedFlower Emoji = "\U0001f940" // wilted flower
Hibiscus Emoji = "\U0001f33a" // hibiscus
Sunflower Emoji = "\U0001f33b" // sunflower
Blossom Emoji = "\U0001f33c" // blossom
Tulip Emoji = "\U0001f337" // tulip
Hyacinth Emoji = "\U0001fabb" // hyacinth
// SUBGROUP: plant-other
Seedling Emoji = "\U0001f331" // seedling
PottedPlant Emoji = "\U0001fab4" // potted plant
EvergreenTree Emoji = "\U0001f332" // evergreen tree
DeciduousTree Emoji = "\U0001f333" // deciduous tree
PalmTree Emoji = "\U0001f334" // palm tree
Cactus Emoji = "\U0001f335" // cactus
SheafOfRice Emoji = "\U0001f33e" // sheaf of rice
Herb Emoji = "\U0001f33f" // herb
Shamrock Emoji = "\u2618\ufe0f" // shamrock
FourLeafClover Emoji = "\U0001f340" // four leaf clover
MapleLeaf Emoji = "\U0001f341" // maple leaf
FallenLeaf Emoji = "\U0001f342" // fallen leaf
LeafFlutteringInWind Emoji = "\U0001f343" // leaf fluttering in wind
EmptyNest Emoji = "\U0001fab9" // empty nest
NestWithEggs Emoji = "\U0001faba" // nest with eggs
Mushroom Emoji = "\U0001f344" // mushroom
// GROUP: Food & Drink
// SUBGROUP: food-fruit
Grapes Emoji = "\U0001f347" // grapes
Melon Emoji = "\U0001f348" // melon
Watermelon Emoji = "\U0001f349" // watermelon
Tangerine Emoji = "\U0001f34a" // tangerine
Lemon Emoji = "\U0001f34b" // lemon
Banana Emoji = "\U0001f34c" // banana
Pineapple Emoji = "\U0001f34d" // pineapple
Mango Emoji = "\U0001f96d" // mango
RedApple Emoji = "\U0001f34e" // red apple
GreenApple Emoji = "\U0001f34f" // green apple
Pear Emoji = "\U0001f350" // pear
Peach Emoji = "\U0001f351" // peach
Cherries Emoji = "\U0001f352" // cherries
Strawberry Emoji = "\U0001f353" // strawberry
Blueberries Emoji = "\U0001fad0" // blueberries
KiwiFruit Emoji = "\U0001f95d" // kiwi fruit
Tomato Emoji = "\U0001f345" // tomato
Olive Emoji = "\U0001fad2" // olive
Coconut Emoji = "\U0001f965" // coconut
// SUBGROUP: food-vegetable
Avocado Emoji = "\U0001f951" // avocado
Eggplant Emoji = "\U0001f346" // eggplant
Potato Emoji = "\U0001f954" // potato
Carrot Emoji = "\U0001f955" // carrot
EarOfCorn Emoji = "\U0001f33d" // ear of corn
HotPepper Emoji = "\U0001f336\ufe0f" // hot pepper
BellPepper Emoji = "\U0001fad1" // bell pepper
Cucumber Emoji = "\U0001f952" // cucumber
LeafyGreen Emoji = "\U0001f96c" // leafy green
Broccoli Emoji = "\U0001f966" // broccoli
Garlic Emoji = "\U0001f9c4" // garlic
Onion Emoji = "\U0001f9c5" // onion
Peanuts Emoji = "\U0001f95c" // peanuts
Beans Emoji = "\U0001fad8" // beans
Chestnut Emoji = "\U0001f330" // chestnut
GingerRoot Emoji = "\U0001fada" // ginger root
PeaPod Emoji = "\U0001fadb" // pea pod
// SUBGROUP: food-prepared
Bread Emoji = "\U0001f35e" // bread
Croissant Emoji = "\U0001f950" // croissant
BaguetteBread Emoji = "\U0001f956" // baguette bread
Flatbread Emoji = "\U0001fad3" // flatbread
Pretzel Emoji = "\U0001f968" // pretzel
Bagel Emoji = "\U0001f96f" // bagel
Pancakes Emoji = "\U0001f95e" // pancakes
Waffle Emoji = "\U0001f9c7" // waffle
CheeseWedge Emoji = "\U0001f9c0" // cheese wedge
MeatOnBone Emoji = "\U0001f356" // meat on bone
PoultryLeg Emoji = "\U0001f357" // poultry leg
CutOfMeat Emoji = "\U0001f969" // cut of meat
Bacon Emoji = "\U0001f953" // bacon
Hamburger Emoji = "\U0001f354" // hamburger
FrenchFries Emoji = "\U0001f35f" // french fries
Pizza Emoji = "\U0001f355" // pizza
HotDog Emoji = "\U0001f32d" // hot dog
Sandwich Emoji = "\U0001f96a" // sandwich
Taco Emoji = "\U0001f32e" // taco
Burrito Emoji = "\U0001f32f" // burrito
Tamale Emoji = "\U0001fad4" // tamale
StuffedFlatbread Emoji = "\U0001f959" // stuffed flatbread
Falafel Emoji = "\U0001f9c6" // falafel
Egg Emoji = "\U0001f95a" // egg
Cooking Emoji = "\U0001f373" // cooking
ShallowPanOfFood Emoji = "\U0001f958" // shallow pan of food
PotOfFood Emoji = "\U0001f372" // pot of food
Fondue Emoji = "\U0001fad5" // fondue
BowlWithSpoon Emoji = "\U0001f963" // bowl with spoon
GreenSalad Emoji = "\U0001f957" // green salad
Popcorn Emoji = "\U0001f37f" // popcorn
Butter Emoji = "\U0001f9c8" // butter
Salt Emoji = "\U0001f9c2" // salt
CannedFood Emoji = "\U0001f96b" // canned food
// SUBGROUP: food-asian
BentoBox Emoji = "\U0001f371" // bento box
RiceCracker Emoji = "\U0001f358" // rice cracker
RiceBall Emoji = "\U0001f359" // rice ball
CookedRice Emoji = "\U0001f35a" // cooked rice
CurryRice Emoji = "\U0001f35b" // curry rice
SteamingBowl Emoji = "\U0001f35c" // steaming bowl
Spaghetti Emoji = "\U0001f35d" // spaghetti
RoastedSweetPotato Emoji = "\U0001f360" // roasted sweet potato
Oden Emoji = "\U0001f362" // oden
Sushi Emoji = "\U0001f363" // sushi
FriedShrimp Emoji = "\U0001f364" // fried shrimp
FishCakeWithSwirl Emoji = "\U0001f365" // fish cake with swirl
MoonCake Emoji = "\U0001f96e" // moon cake
Dango Emoji = "\U0001f361" // dango
Dumpling Emoji = "\U0001f95f" // dumpling
FortuneCookie Emoji = "\U0001f960" // fortune cookie
TakeoutBox Emoji = "\U0001f961" // takeout box
// SUBGROUP: food-marine
Crab Emoji = "\U0001f980" // crab
Lobster Emoji = "\U0001f99e" // lobster
Shrimp Emoji = "\U0001f990" // shrimp
Squid Emoji = "\U0001f991" // squid
Oyster Emoji = "\U0001f9aa" // oyster
// SUBGROUP: food-sweet
SoftIceCream Emoji = "\U0001f366" // soft ice cream
ShavedIce Emoji = "\U0001f367" // shaved ice
IceCream Emoji = "\U0001f368" // ice cream
Doughnut Emoji = "\U0001f369" // doughnut
Cookie Emoji = "\U0001f36a" // cookie
BirthdayCake Emoji = "\U0001f382" // birthday cake
Shortcake Emoji = "\U0001f370" // shortcake
Cupcake Emoji = "\U0001f9c1" // cupcake
Pie Emoji = "\U0001f967" // pie
ChocolateBar Emoji = "\U0001f36b" // chocolate bar
Candy Emoji = "\U0001f36c" // candy
Lollipop Emoji = "\U0001f36d" // lollipop
Custard Emoji = "\U0001f36e" // custard
HoneyPot Emoji = "\U0001f36f" // honey pot
// SUBGROUP: drink
BabyBottle Emoji = "\U0001f37c" // baby bottle
GlassOfMilk Emoji = "\U0001f95b" // glass of milk
HotBeverage Emoji = "\u2615" // hot beverage
Teapot Emoji = "\U0001fad6" // teapot
TeacupWithoutHandle Emoji = "\U0001f375" // teacup without handle
Sake Emoji = "\U0001f376" // sake
BottleWithPoppingCork Emoji = "\U0001f37e" // bottle with popping cork
WineGlass Emoji = "\U0001f377" // wine glass
CocktailGlass Emoji = "\U0001f378" // cocktail glass
TropicalDrink Emoji = "\U0001f379" // tropical drink
BeerMug Emoji = "\U0001f37a" // beer mug
ClinkingBeerMugs Emoji = "\U0001f37b" // clinking beer mugs
ClinkingGlasses Emoji = "\U0001f942" // clinking glasses
TumblerGlass Emoji = "\U0001f943" // tumbler glass
PouringLiquid Emoji = "\U0001fad7" // pouring liquid
CupWithStraw Emoji = "\U0001f964" // cup with straw
BubbleTea Emoji = "\U0001f9cb" // bubble tea
BeverageBox Emoji = "\U0001f9c3" // beverage box
Mate Emoji = "\U0001f9c9" // mate
Ice Emoji = "\U0001f9ca" // ice
// SUBGROUP: dishware
Chopsticks Emoji = "\U0001f962" // chopsticks
ForkAndKnifeWithPlate Emoji = "\U0001f37d\ufe0f" // fork and knife with plate
ForkAndKnife Emoji = "\U0001f374" // fork and knife
Spoon Emoji = "\U0001f944" // spoon
KitchenKnife Emoji = "\U0001f52a" // kitchen knife
Jar Emoji = "\U0001fad9" // jar
Amphora Emoji = "\U0001f3fa" // amphora
// GROUP: Travel & Places
// SUBGROUP: place-map
GlobeShowingEuropeAfrica Emoji = "\U0001f30d" // globe showing Europe-Africa
GlobeShowingAmericas Emoji = "\U0001f30e" // globe showing Americas
GlobeShowingAsiaAustralia Emoji = "\U0001f30f" // globe showing Asia-Australia
GlobeWithMeridians Emoji = "\U0001f310" // globe with meridians
WorldMap Emoji = "\U0001f5fa\ufe0f" // world map
MapOfJapan Emoji = "\U0001f5fe" // map of Japan
Compass Emoji = "\U0001f9ed" // compass
// SUBGROUP: place-geographic
SnowCappedMountain Emoji = "\U0001f3d4\ufe0f" // snow-capped mountain
Mountain Emoji = "\u26f0\ufe0f" // mountain
Volcano Emoji = "\U0001f30b" // volcano
MountFuji Emoji = "\U0001f5fb" // mount fuji
Camping Emoji = "\U0001f3d5\ufe0f" // camping
BeachWithUmbrella Emoji = "\U0001f3d6\ufe0f" // beach with umbrella
Desert Emoji = "\U0001f3dc\ufe0f" // desert
DesertIsland Emoji = "\U0001f3dd\ufe0f" // desert island
NationalPark Emoji = "\U0001f3de\ufe0f" // national park
// SUBGROUP: place-building
Stadium Emoji = "\U0001f3df\ufe0f" // stadium
ClassicalBuilding Emoji = "\U0001f3db\ufe0f" // classical building
BuildingConstruction Emoji = "\U0001f3d7\ufe0f" // building construction
Brick Emoji = "\U0001f9f1" // brick
Rock Emoji = "\U0001faa8" // rock
Wood Emoji = "\U0001fab5" // wood
Hut Emoji = "\U0001f6d6" // hut
Houses Emoji = "\U0001f3d8\ufe0f" // houses
DerelictHouse Emoji = "\U0001f3da\ufe0f" // derelict house
House Emoji = "\U0001f3e0" // house
HouseWithGarden Emoji = "\U0001f3e1" // house with garden
OfficeBuilding Emoji = "\U0001f3e2" // office building
JapanesePostOffice Emoji = "\U0001f3e3" // Japanese post office
PostOffice Emoji = "\U0001f3e4" // post office
Hospital Emoji = "\U0001f3e5" // hospital
Bank Emoji = "\U0001f3e6" // bank
Hotel Emoji = "\U0001f3e8" // hotel
LoveHotel Emoji = "\U0001f3e9" // love hotel
ConvenienceStore Emoji = "\U0001f3ea" // convenience store
School Emoji = "\U0001f3eb" // school
DepartmentStore Emoji = "\U0001f3ec" // department store
Factory Emoji = "\U0001f3ed" // factory
JapaneseCastle Emoji = "\U0001f3ef" // Japanese castle
Castle Emoji = "\U0001f3f0" // castle
Wedding Emoji = "\U0001f492" // wedding
TokyoTower Emoji = "\U0001f5fc" // Tokyo tower
StatueOfLiberty Emoji = "\U0001f5fd" // Statue of Liberty
// SUBGROUP: place-religious
Church Emoji = "\u26ea" // church
Mosque Emoji = "\U0001f54c" // mosque
HinduTemple Emoji = "\U0001f6d5" // hindu temple
Synagogue Emoji = "\U0001f54d" // synagogue
ShintoShrine Emoji = "\u26e9\ufe0f" // shinto shrine
Kaaba Emoji = "\U0001f54b" // kaaba
// SUBGROUP: place-other
Fountain Emoji = "\u26f2" // fountain
Tent Emoji = "\u26fa" // tent
Foggy Emoji = "\U0001f301" // foggy
NightWithStars Emoji = "\U0001f303" // night with stars
Cityscape Emoji = "\U0001f3d9\ufe0f" // cityscape
SunriseOverMountains Emoji = "\U0001f304" // sunrise over mountains
Sunrise Emoji = "\U0001f305" // sunrise
CityscapeAtDusk Emoji = "\U0001f306" // cityscape at dusk
Sunset Emoji = "\U0001f307" // sunset
BridgeAtNight Emoji = "\U0001f309" // bridge at night
HotSprings Emoji = "\u2668\ufe0f" // hot springs
CarouselHorse Emoji = "\U0001f3a0" // carousel horse
PlaygroundSlide Emoji = "\U0001f6dd" // playground slide
FerrisWheel Emoji = "\U0001f3a1" // ferris wheel
RollerCoaster Emoji = "\U0001f3a2" // roller coaster
BarberPole Emoji = "\U0001f488" // barber pole
CircusTent Emoji = "\U0001f3aa" // circus tent
// SUBGROUP: transport-ground
Locomotive Emoji = "\U0001f682" // locomotive
RailwayCar Emoji = "\U0001f683" // railway car
HighSpeedTrain Emoji = "\U0001f684" // high-speed train
BulletTrain Emoji = "\U0001f685" // bullet train
Train Emoji = "\U0001f686" // train
Metro Emoji = "\U0001f687" // metro
LightRail Emoji = "\U0001f688" // light rail
Station Emoji = "\U0001f689" // station
Tram Emoji = "\U0001f68a" // tram
Monorail Emoji = "\U0001f69d" // monorail
MountainRailway Emoji = "\U0001f69e" // mountain railway
TramCar Emoji = "\U0001f68b" // tram car
Bus Emoji = "\U0001f68c" // bus
OncomingBus Emoji = "\U0001f68d" // oncoming bus
Trolleybus Emoji = "\U0001f68e" // trolleybus
Minibus Emoji = "\U0001f690" // minibus
Ambulance Emoji = "\U0001f691" // ambulance
FireEngine Emoji = "\U0001f692" // fire engine
PoliceCar Emoji = "\U0001f693" // police car
OncomingPoliceCar Emoji = "\U0001f694" // oncoming police car
Taxi Emoji = "\U0001f695" // taxi
OncomingTaxi Emoji = "\U0001f696" // oncoming taxi
Automobile Emoji = "\U0001f697" // automobile
OncomingAutomobile Emoji = "\U0001f698" // oncoming automobile
SportUtilityVehicle Emoji = "\U0001f699" // sport utility vehicle
PickupTruck Emoji = "\U0001f6fb" // pickup truck
DeliveryTruck Emoji = "\U0001f69a" // delivery truck
ArticulatedLorry Emoji = "\U0001f69b" // articulated lorry
Tractor Emoji = "\U0001f69c" // tractor
RacingCar Emoji = "\U0001f3ce\ufe0f" // racing car
Motorcycle Emoji = "\U0001f3cd\ufe0f" // motorcycle
MotorScooter Emoji = "\U0001f6f5" // motor scooter
ManualWheelchair Emoji = "\U0001f9bd" // manual wheelchair