constants.go 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  1. package emoji
  2. // Code generated by github.com/enescakir/emoji/internal/generator DO NOT EDIT.
  3. // Source: https://unicode.org/Public/emoji/13.0/emoji-test.txt
  4. // Create at: 2020-03-08T15:58:37+03:00
  5. var (
  6. // GROUP: Smileys & Emotion
  7. // SUBGROUP: face-smiling
  8. GrinningFace Emoji = "\U0001f600" // grinning face
  9. GrinningFaceWithBigEyes Emoji = "\U0001f603" // grinning face with big eyes
  10. GrinningFaceWithSmilingEyes Emoji = "\U0001f604" // grinning face with smiling eyes
  11. BeamingFaceWithSmilingEyes Emoji = "\U0001f601" // beaming face with smiling eyes
  12. GrinningSquintingFace Emoji = "\U0001f606" // grinning squinting face
  13. GrinningFaceWithSweat Emoji = "\U0001f605" // grinning face with sweat
  14. RollingOnTheFloorLaughing Emoji = "\U0001f923" // rolling on the floor laughing
  15. FaceWithTearsOfJoy Emoji = "\U0001f602" // face with tears of joy
  16. SlightlySmilingFace Emoji = "\U0001f642" // slightly smiling face
  17. UpsideDownFace Emoji = "\U0001f643" // upside-down face
  18. WinkingFace Emoji = "\U0001f609" // winking face
  19. SmilingFaceWithSmilingEyes Emoji = "\U0001f60a" // smiling face with smiling eyes
  20. SmilingFaceWithHalo Emoji = "\U0001f607" // smiling face with halo
  21. // SUBGROUP: face-affection
  22. SmilingFaceWithHearts Emoji = "\U0001f970" // smiling face with hearts
  23. SmilingFaceWithHeartEyes Emoji = "\U0001f60d" // smiling face with heart-eyes
  24. StarStruck Emoji = "\U0001f929" // star-struck
  25. FaceBlowingAKiss Emoji = "\U0001f618" // face blowing a kiss
  26. KissingFace Emoji = "\U0001f617" // kissing face
  27. SmilingFace Emoji = "\u263a\ufe0f" // smiling face
  28. KissingFaceWithClosedEyes Emoji = "\U0001f61a" // kissing face with closed eyes
  29. KissingFaceWithSmilingEyes Emoji = "\U0001f619" // kissing face with smiling eyes
  30. SmilingFaceWithTear Emoji = "\U0001f972" // smiling face with tear
  31. // SUBGROUP: face-tongue
  32. FaceSavoringFood Emoji = "\U0001f60b" // face savoring food
  33. FaceWithTongue Emoji = "\U0001f61b" // face with tongue
  34. WinkingFaceWithTongue Emoji = "\U0001f61c" // winking face with tongue
  35. ZanyFace Emoji = "\U0001f92a" // zany face
  36. SquintingFaceWithTongue Emoji = "\U0001f61d" // squinting face with tongue
  37. MoneyMouthFace Emoji = "\U0001f911" // money-mouth face
  38. // SUBGROUP: face-hand
  39. HuggingFace Emoji = "\U0001f917" // hugging face
  40. FaceWithHandOverMouth Emoji = "\U0001f92d" // face with hand over mouth
  41. ShushingFace Emoji = "\U0001f92b" // shushing face
  42. ThinkingFace Emoji = "\U0001f914" // thinking face
  43. // SUBGROUP: face-neutral-skeptical
  44. ZipperMouthFace Emoji = "\U0001f910" // zipper-mouth face
  45. FaceWithRaisedEyebrow Emoji = "\U0001f928" // face with raised eyebrow
  46. NeutralFace Emoji = "\U0001f610" // neutral face
  47. ExpressionlessFace Emoji = "\U0001f611" // expressionless face
  48. FaceWithoutMouth Emoji = "\U0001f636" // face without mouth
  49. SmirkingFace Emoji = "\U0001f60f" // smirking face
  50. UnamusedFace Emoji = "\U0001f612" // unamused face
  51. FaceWithRollingEyes Emoji = "\U0001f644" // face with rolling eyes
  52. GrimacingFace Emoji = "\U0001f62c" // grimacing face
  53. LyingFace Emoji = "\U0001f925" // lying face
  54. // SUBGROUP: face-sleepy
  55. RelievedFace Emoji = "\U0001f60c" // relieved face
  56. PensiveFace Emoji = "\U0001f614" // pensive face
  57. SleepyFace Emoji = "\U0001f62a" // sleepy face
  58. DroolingFace Emoji = "\U0001f924" // drooling face
  59. SleepingFace Emoji = "\U0001f634" // sleeping face
  60. // SUBGROUP: face-unwell
  61. FaceWithMedicalMask Emoji = "\U0001f637" // face with medical mask
  62. FaceWithThermometer Emoji = "\U0001f912" // face with thermometer
  63. FaceWithHeadBandage Emoji = "\U0001f915" // face with head-bandage
  64. NauseatedFace Emoji = "\U0001f922" // nauseated face
  65. FaceVomiting Emoji = "\U0001f92e" // face vomiting
  66. SneezingFace Emoji = "\U0001f927" // sneezing face
  67. HotFace Emoji = "\U0001f975" // hot face
  68. ColdFace Emoji = "\U0001f976" // cold face
  69. WoozyFace Emoji = "\U0001f974" // woozy face
  70. DizzyFace Emoji = "\U0001f635" // dizzy face
  71. ExplodingHead Emoji = "\U0001f92f" // exploding head
  72. // SUBGROUP: face-hat
  73. CowboyHatFace Emoji = "\U0001f920" // cowboy hat face
  74. PartyingFace Emoji = "\U0001f973" // partying face
  75. DisguisedFace Emoji = "\U0001f978" // disguised face
  76. // SUBGROUP: face-glasses
  77. SmilingFaceWithSunglasses Emoji = "\U0001f60e" // smiling face with sunglasses
  78. NerdFace Emoji = "\U0001f913" // nerd face
  79. FaceWithMonocle Emoji = "\U0001f9d0" // face with monocle
  80. // SUBGROUP: face-concerned
  81. ConfusedFace Emoji = "\U0001f615" // confused face
  82. WorriedFace Emoji = "\U0001f61f" // worried face
  83. SlightlyFrowningFace Emoji = "\U0001f641" // slightly frowning face
  84. FrowningFace Emoji = "\u2639\ufe0f" // frowning face
  85. FaceWithOpenMouth Emoji = "\U0001f62e" // face with open mouth
  86. HushedFace Emoji = "\U0001f62f" // hushed face
  87. AstonishedFace Emoji = "\U0001f632" // astonished face
  88. FlushedFace Emoji = "\U0001f633" // flushed face
  89. PleadingFace Emoji = "\U0001f97a" // pleading face
  90. FrowningFaceWithOpenMouth Emoji = "\U0001f626" // frowning face with open mouth
  91. AnguishedFace Emoji = "\U0001f627" // anguished face
  92. FearfulFace Emoji = "\U0001f628" // fearful face
  93. AnxiousFaceWithSweat Emoji = "\U0001f630" // anxious face with sweat
  94. SadButRelievedFace Emoji = "\U0001f625" // sad but relieved face
  95. CryingFace Emoji = "\U0001f622" // crying face
  96. LoudlyCryingFace Emoji = "\U0001f62d" // loudly crying face
  97. FaceScreamingInFear Emoji = "\U0001f631" // face screaming in fear
  98. ConfoundedFace Emoji = "\U0001f616" // confounded face
  99. PerseveringFace Emoji = "\U0001f623" // persevering face
  100. DisappointedFace Emoji = "\U0001f61e" // disappointed face
  101. DowncastFaceWithSweat Emoji = "\U0001f613" // downcast face with sweat
  102. WearyFace Emoji = "\U0001f629" // weary face
  103. TiredFace Emoji = "\U0001f62b" // tired face
  104. YawningFace Emoji = "\U0001f971" // yawning face
  105. // SUBGROUP: face-negative
  106. FaceWithSteamFromNose Emoji = "\U0001f624" // face with steam from nose
  107. PoutingFace Emoji = "\U0001f621" // pouting face
  108. AngryFace Emoji = "\U0001f620" // angry face
  109. FaceWithSymbolsOnMouth Emoji = "\U0001f92c" // face with symbols on mouth
  110. SmilingFaceWithHorns Emoji = "\U0001f608" // smiling face with horns
  111. AngryFaceWithHorns Emoji = "\U0001f47f" // angry face with horns
  112. Skull Emoji = "\U0001f480" // skull
  113. SkullAndCrossbones Emoji = "\u2620\ufe0f" // skull and crossbones
  114. // SUBGROUP: face-costume
  115. PileOfPoo Emoji = "\U0001f4a9" // pile of poo
  116. ClownFace Emoji = "\U0001f921" // clown face
  117. Ogre Emoji = "\U0001f479" // ogre
  118. Goblin Emoji = "\U0001f47a" // goblin
  119. Ghost Emoji = "\U0001f47b" // ghost
  120. Alien Emoji = "\U0001f47d" // alien
  121. AlienMonster Emoji = "\U0001f47e" // alien monster
  122. Robot Emoji = "\U0001f916" // robot
  123. // SUBGROUP: cat-face
  124. GrinningCat Emoji = "\U0001f63a" // grinning cat
  125. GrinningCatWithSmilingEyes Emoji = "\U0001f638" // grinning cat with smiling eyes
  126. CatWithTearsOfJoy Emoji = "\U0001f639" // cat with tears of joy
  127. SmilingCatWithHeartEyes Emoji = "\U0001f63b" // smiling cat with heart-eyes
  128. CatWithWrySmile Emoji = "\U0001f63c" // cat with wry smile
  129. KissingCat Emoji = "\U0001f63d" // kissing cat
  130. WearyCat Emoji = "\U0001f640" // weary cat
  131. CryingCat Emoji = "\U0001f63f" // crying cat
  132. PoutingCat Emoji = "\U0001f63e" // pouting cat
  133. // SUBGROUP: monkey-face
  134. SeeNoEvilMonkey Emoji = "\U0001f648" // see-no-evil monkey
  135. HearNoEvilMonkey Emoji = "\U0001f649" // hear-no-evil monkey
  136. SpeakNoEvilMonkey Emoji = "\U0001f64a" // speak-no-evil monkey
  137. // SUBGROUP: emotion
  138. KissMark Emoji = "\U0001f48b" // kiss mark
  139. LoveLetter Emoji = "\U0001f48c" // love letter
  140. HeartWithArrow Emoji = "\U0001f498" // heart with arrow
  141. HeartWithRibbon Emoji = "\U0001f49d" // heart with ribbon
  142. SparklingHeart Emoji = "\U0001f496" // sparkling heart
  143. GrowingHeart Emoji = "\U0001f497" // growing heart
  144. BeatingHeart Emoji = "\U0001f493" // beating heart
  145. RevolvingHearts Emoji = "\U0001f49e" // revolving hearts
  146. TwoHearts Emoji = "\U0001f495" // two hearts
  147. HeartDecoration Emoji = "\U0001f49f" // heart decoration
  148. HeartExclamation Emoji = "\u2763\ufe0f" // heart exclamation
  149. BrokenHeart Emoji = "\U0001f494" // broken heart
  150. RedHeart Emoji = "\u2764\ufe0f" // red heart
  151. OrangeHeart Emoji = "\U0001f9e1" // orange heart
  152. YellowHeart Emoji = "\U0001f49b" // yellow heart
  153. GreenHeart Emoji = "\U0001f49a" // green heart
  154. BlueHeart Emoji = "\U0001f499" // blue heart
  155. PurpleHeart Emoji = "\U0001f49c" // purple heart
  156. BrownHeart Emoji = "\U0001f90e" // brown heart
  157. BlackHeart Emoji = "\U0001f5a4" // black heart
  158. WhiteHeart Emoji = "\U0001f90d" // white heart
  159. HundredPoints Emoji = "\U0001f4af" // hundred points
  160. AngerSymbol Emoji = "\U0001f4a2" // anger symbol
  161. Collision Emoji = "\U0001f4a5" // collision
  162. Dizzy Emoji = "\U0001f4ab" // dizzy
  163. SweatDroplets Emoji = "\U0001f4a6" // sweat droplets
  164. DashingAway Emoji = "\U0001f4a8" // dashing away
  165. Hole Emoji = "\U0001f573\ufe0f" // hole
  166. Bomb Emoji = "\U0001f4a3" // bomb
  167. SpeechBalloon Emoji = "\U0001f4ac" // speech balloon
  168. EyeInSpeechBubble Emoji = "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f" // eye in speech bubble
  169. LeftSpeechBubble Emoji = "\U0001f5e8\ufe0f" // left speech bubble
  170. RightAngerBubble Emoji = "\U0001f5ef\ufe0f" // right anger bubble
  171. ThoughtBalloon Emoji = "\U0001f4ad" // thought balloon
  172. Zzz Emoji = "\U0001f4a4" // zzz
  173. // GROUP: People & Body
  174. // SUBGROUP: hand-fingers-open
  175. WavingHand EmojiWithTone = newEmojiWithTone("\U0001f44b@") // waving hand
  176. RaisedBackOfHand EmojiWithTone = newEmojiWithTone("\U0001f91a@") // raised back of hand
  177. HandWithFingersSplayed EmojiWithTone = newEmojiWithTone("\U0001f590@").withDefaultTone("\ufe0f") // hand with fingers splayed
  178. RaisedHand EmojiWithTone = newEmojiWithTone("\u270b@") // raised hand
  179. VulcanSalute EmojiWithTone = newEmojiWithTone("\U0001f596@") // vulcan salute
  180. // SUBGROUP: hand-fingers-partial
  181. OkHand EmojiWithTone = newEmojiWithTone("\U0001f44c@") // OK hand
  182. PinchedFingers EmojiWithTone = newEmojiWithTone("\U0001f90c@") // pinched fingers
  183. PinchingHand EmojiWithTone = newEmojiWithTone("\U0001f90f@") // pinching hand
  184. VictoryHand EmojiWithTone = newEmojiWithTone("\u270c@").withDefaultTone("\ufe0f") // victory hand
  185. CrossedFingers EmojiWithTone = newEmojiWithTone("\U0001f91e@") // crossed fingers
  186. LoveYouGesture EmojiWithTone = newEmojiWithTone("\U0001f91f@") // love-you gesture
  187. SignOfTheHorns EmojiWithTone = newEmojiWithTone("\U0001f918@") // sign of the horns
  188. CallMeHand EmojiWithTone = newEmojiWithTone("\U0001f919@") // call me hand
  189. // SUBGROUP: hand-single-finger
  190. BackhandIndexPointingLeft EmojiWithTone = newEmojiWithTone("\U0001f448@") // backhand index pointing left
  191. BackhandIndexPointingRight EmojiWithTone = newEmojiWithTone("\U0001f449@") // backhand index pointing right
  192. BackhandIndexPointingUp EmojiWithTone = newEmojiWithTone("\U0001f446@") // backhand index pointing up
  193. MiddleFinger EmojiWithTone = newEmojiWithTone("\U0001f595@") // middle finger
  194. BackhandIndexPointingDown EmojiWithTone = newEmojiWithTone("\U0001f447@") // backhand index pointing down
  195. IndexPointingUp EmojiWithTone = newEmojiWithTone("\u261d@").withDefaultTone("\ufe0f") // index pointing up
  196. // SUBGROUP: hand-fingers-closed
  197. ThumbsUp EmojiWithTone = newEmojiWithTone("\U0001f44d@") // thumbs up
  198. ThumbsDown EmojiWithTone = newEmojiWithTone("\U0001f44e@") // thumbs down
  199. RaisedFist EmojiWithTone = newEmojiWithTone("\u270a@") // raised fist
  200. OncomingFist EmojiWithTone = newEmojiWithTone("\U0001f44a@") // oncoming fist
  201. LeftFacingFist EmojiWithTone = newEmojiWithTone("\U0001f91b@") // left-facing fist
  202. RightFacingFist EmojiWithTone = newEmojiWithTone("\U0001f91c@") // right-facing fist
  203. // SUBGROUP: hands
  204. ClappingHands EmojiWithTone = newEmojiWithTone("\U0001f44f@") // clapping hands
  205. RaisingHands EmojiWithTone = newEmojiWithTone("\U0001f64c@") // raising hands
  206. OpenHands EmojiWithTone = newEmojiWithTone("\U0001f450@") // open hands
  207. PalmsUpTogether EmojiWithTone = newEmojiWithTone("\U0001f932@") // palms up together
  208. Handshake Emoji = "\U0001f91d" // handshake
  209. FoldedHands EmojiWithTone = newEmojiWithTone("\U0001f64f@") // folded hands
  210. // SUBGROUP: hand-prop
  211. WritingHand EmojiWithTone = newEmojiWithTone("\u270d@").withDefaultTone("\ufe0f") // writing hand
  212. NailPolish EmojiWithTone = newEmojiWithTone("\U0001f485@") // nail polish
  213. Selfie EmojiWithTone = newEmojiWithTone("\U0001f933@") // selfie
  214. // SUBGROUP: body-parts
  215. FlexedBiceps EmojiWithTone = newEmojiWithTone("\U0001f4aa@") // flexed biceps
  216. MechanicalArm Emoji = "\U0001f9be" // mechanical arm
  217. MechanicalLeg Emoji = "\U0001f9bf" // mechanical leg
  218. Leg EmojiWithTone = newEmojiWithTone("\U0001f9b5@") // leg
  219. Foot EmojiWithTone = newEmojiWithTone("\U0001f9b6@") // foot
  220. Ear EmojiWithTone = newEmojiWithTone("\U0001f442@") // ear
  221. EarWithHearingAid EmojiWithTone = newEmojiWithTone("\U0001f9bb@") // ear with hearing aid
  222. Nose EmojiWithTone = newEmojiWithTone("\U0001f443@") // nose
  223. Brain Emoji = "\U0001f9e0" // brain
  224. AnatomicalHeart Emoji = "\U0001fac0" // anatomical heart
  225. Lungs Emoji = "\U0001fac1" // lungs
  226. Tooth Emoji = "\U0001f9b7" // tooth
  227. Bone Emoji = "\U0001f9b4" // bone
  228. Eyes Emoji = "\U0001f440" // eyes
  229. Eye Emoji = "\U0001f441\ufe0f" // eye
  230. Tongue Emoji = "\U0001f445" // tongue
  231. Mouth Emoji = "\U0001f444" // mouth
  232. // SUBGROUP: person
  233. Baby EmojiWithTone = newEmojiWithTone("\U0001f476@") // baby
  234. Child EmojiWithTone = newEmojiWithTone("\U0001f9d2@") // child
  235. Boy EmojiWithTone = newEmojiWithTone("\U0001f466@") // boy
  236. Girl EmojiWithTone = newEmojiWithTone("\U0001f467@") // girl
  237. Person EmojiWithTone = newEmojiWithTone("\U0001f9d1@") // person
  238. PersonWithBlondHair EmojiWithTone = newEmojiWithTone("\U0001f471@") // person: blond hair
  239. Man EmojiWithTone = newEmojiWithTone("\U0001f468@") // man
  240. ManWithBeard EmojiWithTone = newEmojiWithTone("\U0001f9d4@") // man: beard
  241. ManWithRedHair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b0") // man: red hair
  242. ManWithCurlyHair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b1") // man: curly hair
  243. ManWithWhiteHair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b3") // man: white hair
  244. ManBald EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9b2") // man: bald
  245. Woman EmojiWithTone = newEmojiWithTone("\U0001f469@") // woman
  246. WomanWithRedHair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b0") // woman: red hair
  247. PersonWithRedHair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b0") // person: red hair
  248. WomanWithCurlyHair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b1") // woman: curly hair
  249. PersonWithCurlyHair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b1") // person: curly hair
  250. WomanWithWhiteHair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b3") // woman: white hair
  251. PersonWithWhiteHair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b3") // person: white hair
  252. WomanBald EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9b2") // woman: bald
  253. PersonBald EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9b2") // person: bald
  254. WomanWithBlondHair EmojiWithTone = newEmojiWithTone("\U0001f471@\u200d\u2640\ufe0f") // woman: blond hair
  255. ManWithBlondHair EmojiWithTone = newEmojiWithTone("\U0001f471@\u200d\u2642\ufe0f") // man: blond hair
  256. OlderPerson EmojiWithTone = newEmojiWithTone("\U0001f9d3@") // older person
  257. OldMan EmojiWithTone = newEmojiWithTone("\U0001f474@") // old man
  258. OldWoman EmojiWithTone = newEmojiWithTone("\U0001f475@") // old woman
  259. // SUBGROUP: person-gesture
  260. PersonFrowning EmojiWithTone = newEmojiWithTone("\U0001f64d@") // person frowning
  261. ManFrowning EmojiWithTone = newEmojiWithTone("\U0001f64d@\u200d\u2642\ufe0f") // man frowning
  262. WomanFrowning EmojiWithTone = newEmojiWithTone("\U0001f64d@\u200d\u2640\ufe0f") // woman frowning
  263. PersonPouting EmojiWithTone = newEmojiWithTone("\U0001f64e@") // person pouting
  264. ManPouting EmojiWithTone = newEmojiWithTone("\U0001f64e@\u200d\u2642\ufe0f") // man pouting
  265. WomanPouting EmojiWithTone = newEmojiWithTone("\U0001f64e@\u200d\u2640\ufe0f") // woman pouting
  266. PersonGesturingNo EmojiWithTone = newEmojiWithTone("\U0001f645@") // person gesturing NO
  267. ManGesturingNo EmojiWithTone = newEmojiWithTone("\U0001f645@\u200d\u2642\ufe0f") // man gesturing NO
  268. WomanGesturingNo EmojiWithTone = newEmojiWithTone("\U0001f645@\u200d\u2640\ufe0f") // woman gesturing NO
  269. PersonGesturingOk EmojiWithTone = newEmojiWithTone("\U0001f646@") // person gesturing OK
  270. ManGesturingOk EmojiWithTone = newEmojiWithTone("\U0001f646@\u200d\u2642\ufe0f") // man gesturing OK
  271. WomanGesturingOk EmojiWithTone = newEmojiWithTone("\U0001f646@\u200d\u2640\ufe0f") // woman gesturing OK
  272. PersonTippingHand EmojiWithTone = newEmojiWithTone("\U0001f481@") // person tipping hand
  273. ManTippingHand EmojiWithTone = newEmojiWithTone("\U0001f481@\u200d\u2642\ufe0f") // man tipping hand
  274. WomanTippingHand EmojiWithTone = newEmojiWithTone("\U0001f481@\u200d\u2640\ufe0f") // woman tipping hand
  275. PersonRaisingHand EmojiWithTone = newEmojiWithTone("\U0001f64b@") // person raising hand
  276. ManRaisingHand EmojiWithTone = newEmojiWithTone("\U0001f64b@\u200d\u2642\ufe0f") // man raising hand
  277. WomanRaisingHand EmojiWithTone = newEmojiWithTone("\U0001f64b@\u200d\u2640\ufe0f") // woman raising hand
  278. DeafPerson EmojiWithTone = newEmojiWithTone("\U0001f9cf@") // deaf person
  279. DeafMan EmojiWithTone = newEmojiWithTone("\U0001f9cf@\u200d\u2642\ufe0f") // deaf man
  280. DeafWoman EmojiWithTone = newEmojiWithTone("\U0001f9cf@\u200d\u2640\ufe0f") // deaf woman
  281. PersonBowing EmojiWithTone = newEmojiWithTone("\U0001f647@") // person bowing
  282. ManBowing EmojiWithTone = newEmojiWithTone("\U0001f647@\u200d\u2642\ufe0f") // man bowing
  283. WomanBowing EmojiWithTone = newEmojiWithTone("\U0001f647@\u200d\u2640\ufe0f") // woman bowing
  284. PersonFacepalming EmojiWithTone = newEmojiWithTone("\U0001f926@") // person facepalming
  285. ManFacepalming EmojiWithTone = newEmojiWithTone("\U0001f926@\u200d\u2642\ufe0f") // man facepalming
  286. WomanFacepalming EmojiWithTone = newEmojiWithTone("\U0001f926@\u200d\u2640\ufe0f") // woman facepalming
  287. PersonShrugging EmojiWithTone = newEmojiWithTone("\U0001f937@") // person shrugging
  288. ManShrugging EmojiWithTone = newEmojiWithTone("\U0001f937@\u200d\u2642\ufe0f") // man shrugging
  289. WomanShrugging EmojiWithTone = newEmojiWithTone("\U0001f937@\u200d\u2640\ufe0f") // woman shrugging
  290. // SUBGROUP: person-role
  291. HealthWorker EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2695\ufe0f") // health worker
  292. ManHealthWorker EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2695\ufe0f") // man health worker
  293. WomanHealthWorker EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2695\ufe0f") // woman health worker
  294. Student EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f393") // student
  295. ManStudent EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f393") // man student
  296. WomanStudent EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f393") // woman student
  297. Teacher EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3eb") // teacher
  298. ManTeacher EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3eb") // man teacher
  299. WomanTeacher EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3eb") // woman teacher
  300. Judge EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2696\ufe0f") // judge
  301. ManJudge EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2696\ufe0f") // man judge
  302. WomanJudge EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2696\ufe0f") // woman judge
  303. Farmer EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f33e") // farmer
  304. ManFarmer EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f33e") // man farmer
  305. WomanFarmer EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f33e") // woman farmer
  306. Cook EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f373") // cook
  307. ManCook EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f373") // man cook
  308. WomanCook EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f373") // woman cook
  309. Mechanic EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f527") // mechanic
  310. ManMechanic EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f527") // man mechanic
  311. WomanMechanic EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f527") // woman mechanic
  312. FactoryWorker EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3ed") // factory worker
  313. ManFactoryWorker EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3ed") // man factory worker
  314. WomanFactoryWorker EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3ed") // woman factory worker
  315. OfficeWorker EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f4bc") // office worker
  316. ManOfficeWorker EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f4bc") // man office worker
  317. WomanOfficeWorker EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f4bc") // woman office worker
  318. Scientist EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f52c") // scientist
  319. ManScientist EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f52c") // man scientist
  320. WomanScientist EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f52c") // woman scientist
  321. Technologist EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f4bb") // technologist
  322. ManTechnologist EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f4bb") // man technologist
  323. WomanTechnologist EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f4bb") // woman technologist
  324. Singer EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3a4") // singer
  325. ManSinger EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3a4") // man singer
  326. WomanSinger EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3a4") // woman singer
  327. Artist EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f3a8") // artist
  328. ManArtist EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f3a8") // man artist
  329. WomanArtist EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f3a8") // woman artist
  330. Pilot EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\u2708\ufe0f") // pilot
  331. ManPilot EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\u2708\ufe0f") // man pilot
  332. WomanPilot EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\u2708\ufe0f") // woman pilot
  333. Astronaut EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f680") // astronaut
  334. ManAstronaut EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f680") // man astronaut
  335. WomanAstronaut EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f680") // woman astronaut
  336. Firefighter EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f692") // firefighter
  337. ManFirefighter EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f692") // man firefighter
  338. WomanFirefighter EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f692") // woman firefighter
  339. PoliceOfficer EmojiWithTone = newEmojiWithTone("\U0001f46e@") // police officer
  340. ManPoliceOfficer EmojiWithTone = newEmojiWithTone("\U0001f46e@\u200d\u2642\ufe0f") // man police officer
  341. WomanPoliceOfficer EmojiWithTone = newEmojiWithTone("\U0001f46e@\u200d\u2640\ufe0f") // woman police officer
  342. Detective EmojiWithTone = newEmojiWithTone("\U0001f575@").withDefaultTone("\ufe0f") // detective
  343. ManDetective EmojiWithTone = newEmojiWithTone("\U0001f575@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man detective
  344. WomanDetective EmojiWithTone = newEmojiWithTone("\U0001f575@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman detective
  345. Guard EmojiWithTone = newEmojiWithTone("\U0001f482@") // guard
  346. ManGuard EmojiWithTone = newEmojiWithTone("\U0001f482@\u200d\u2642\ufe0f") // man guard
  347. WomanGuard EmojiWithTone = newEmojiWithTone("\U0001f482@\u200d\u2640\ufe0f") // woman guard
  348. Ninja EmojiWithTone = newEmojiWithTone("\U0001f977@") // ninja
  349. ConstructionWorker EmojiWithTone = newEmojiWithTone("\U0001f477@") // construction worker
  350. ManConstructionWorker EmojiWithTone = newEmojiWithTone("\U0001f477@\u200d\u2642\ufe0f") // man construction worker
  351. WomanConstructionWorker EmojiWithTone = newEmojiWithTone("\U0001f477@\u200d\u2640\ufe0f") // woman construction worker
  352. Prince EmojiWithTone = newEmojiWithTone("\U0001f934@") // prince
  353. Princess EmojiWithTone = newEmojiWithTone("\U0001f478@") // princess
  354. PersonWearingTurban EmojiWithTone = newEmojiWithTone("\U0001f473@") // person wearing turban
  355. ManWearingTurban EmojiWithTone = newEmojiWithTone("\U0001f473@\u200d\u2642\ufe0f") // man wearing turban
  356. WomanWearingTurban EmojiWithTone = newEmojiWithTone("\U0001f473@\u200d\u2640\ufe0f") // woman wearing turban
  357. PersonWithSkullcap EmojiWithTone = newEmojiWithTone("\U0001f472@") // person with skullcap
  358. WomanWithHeadscarf EmojiWithTone = newEmojiWithTone("\U0001f9d5@") // woman with headscarf
  359. PersonInTuxedo EmojiWithTone = newEmojiWithTone("\U0001f935@") // person in tuxedo
  360. ManInTuxedo EmojiWithTone = newEmojiWithTone("\U0001f935@\u200d\u2642\ufe0f") // man in tuxedo
  361. WomanInTuxedo EmojiWithTone = newEmojiWithTone("\U0001f935@\u200d\u2640\ufe0f") // woman in tuxedo
  362. PersonWithVeil EmojiWithTone = newEmojiWithTone("\U0001f470@") // person with veil
  363. ManWithVeil EmojiWithTone = newEmojiWithTone("\U0001f470@\u200d\u2642\ufe0f") // man with veil
  364. WomanWithVeil EmojiWithTone = newEmojiWithTone("\U0001f470@\u200d\u2640\ufe0f") // woman with veil
  365. PregnantWoman EmojiWithTone = newEmojiWithTone("\U0001f930@") // pregnant woman
  366. BreastFeeding EmojiWithTone = newEmojiWithTone("\U0001f931@") // breast-feeding
  367. WomanFeedingBaby EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f37c") // woman feeding baby
  368. ManFeedingBaby EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f37c") // man feeding baby
  369. PersonFeedingBaby EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f37c") // person feeding baby
  370. // SUBGROUP: person-fantasy
  371. BabyAngel EmojiWithTone = newEmojiWithTone("\U0001f47c@") // baby angel
  372. SantaClaus EmojiWithTone = newEmojiWithTone("\U0001f385@") // Santa Claus
  373. MrsClaus EmojiWithTone = newEmojiWithTone("\U0001f936@") // Mrs. Claus
  374. MxClaus EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f384") // mx claus
  375. Superhero EmojiWithTone = newEmojiWithTone("\U0001f9b8@") // superhero
  376. ManSuperhero EmojiWithTone = newEmojiWithTone("\U0001f9b8@\u200d\u2642\ufe0f") // man superhero
  377. WomanSuperhero EmojiWithTone = newEmojiWithTone("\U0001f9b8@\u200d\u2640\ufe0f") // woman superhero
  378. Supervillain EmojiWithTone = newEmojiWithTone("\U0001f9b9@") // supervillain
  379. ManSupervillain EmojiWithTone = newEmojiWithTone("\U0001f9b9@\u200d\u2642\ufe0f") // man supervillain
  380. WomanSupervillain EmojiWithTone = newEmojiWithTone("\U0001f9b9@\u200d\u2640\ufe0f") // woman supervillain
  381. Mage EmojiWithTone = newEmojiWithTone("\U0001f9d9@") // mage
  382. ManMage EmojiWithTone = newEmojiWithTone("\U0001f9d9@\u200d\u2642\ufe0f") // man mage
  383. WomanMage EmojiWithTone = newEmojiWithTone("\U0001f9d9@\u200d\u2640\ufe0f") // woman mage
  384. Fairy EmojiWithTone = newEmojiWithTone("\U0001f9da@") // fairy
  385. ManFairy EmojiWithTone = newEmojiWithTone("\U0001f9da@\u200d\u2642\ufe0f") // man fairy
  386. WomanFairy EmojiWithTone = newEmojiWithTone("\U0001f9da@\u200d\u2640\ufe0f") // woman fairy
  387. Vampire EmojiWithTone = newEmojiWithTone("\U0001f9db@") // vampire
  388. ManVampire EmojiWithTone = newEmojiWithTone("\U0001f9db@\u200d\u2642\ufe0f") // man vampire
  389. WomanVampire EmojiWithTone = newEmojiWithTone("\U0001f9db@\u200d\u2640\ufe0f") // woman vampire
  390. Merperson EmojiWithTone = newEmojiWithTone("\U0001f9dc@") // merperson
  391. Merman EmojiWithTone = newEmojiWithTone("\U0001f9dc@\u200d\u2642\ufe0f") // merman
  392. Mermaid EmojiWithTone = newEmojiWithTone("\U0001f9dc@\u200d\u2640\ufe0f") // mermaid
  393. Elf EmojiWithTone = newEmojiWithTone("\U0001f9dd@") // elf
  394. ManElf EmojiWithTone = newEmojiWithTone("\U0001f9dd@\u200d\u2642\ufe0f") // man elf
  395. WomanElf EmojiWithTone = newEmojiWithTone("\U0001f9dd@\u200d\u2640\ufe0f") // woman elf
  396. Genie Emoji = "\U0001f9de" // genie
  397. ManGenie Emoji = "\U0001f9de\u200d\u2642\ufe0f" // man genie
  398. WomanGenie Emoji = "\U0001f9de\u200d\u2640\ufe0f" // woman genie
  399. Zombie Emoji = "\U0001f9df" // zombie
  400. ManZombie Emoji = "\U0001f9df\u200d\u2642\ufe0f" // man zombie
  401. WomanZombie Emoji = "\U0001f9df\u200d\u2640\ufe0f" // woman zombie
  402. // SUBGROUP: person-activity
  403. PersonGettingMassage EmojiWithTone = newEmojiWithTone("\U0001f486@") // person getting massage
  404. ManGettingMassage EmojiWithTone = newEmojiWithTone("\U0001f486@\u200d\u2642\ufe0f") // man getting massage
  405. WomanGettingMassage EmojiWithTone = newEmojiWithTone("\U0001f486@\u200d\u2640\ufe0f") // woman getting massage
  406. PersonGettingHaircut EmojiWithTone = newEmojiWithTone("\U0001f487@") // person getting haircut
  407. ManGettingHaircut EmojiWithTone = newEmojiWithTone("\U0001f487@\u200d\u2642\ufe0f") // man getting haircut
  408. WomanGettingHaircut EmojiWithTone = newEmojiWithTone("\U0001f487@\u200d\u2640\ufe0f") // woman getting haircut
  409. PersonWalking EmojiWithTone = newEmojiWithTone("\U0001f6b6@") // person walking
  410. ManWalking EmojiWithTone = newEmojiWithTone("\U0001f6b6@\u200d\u2642\ufe0f") // man walking
  411. WomanWalking EmojiWithTone = newEmojiWithTone("\U0001f6b6@\u200d\u2640\ufe0f") // woman walking
  412. PersonStanding EmojiWithTone = newEmojiWithTone("\U0001f9cd@") // person standing
  413. ManStanding EmojiWithTone = newEmojiWithTone("\U0001f9cd@\u200d\u2642\ufe0f") // man standing
  414. WomanStanding EmojiWithTone = newEmojiWithTone("\U0001f9cd@\u200d\u2640\ufe0f") // woman standing
  415. PersonKneeling EmojiWithTone = newEmojiWithTone("\U0001f9ce@") // person kneeling
  416. ManKneeling EmojiWithTone = newEmojiWithTone("\U0001f9ce@\u200d\u2642\ufe0f") // man kneeling
  417. WomanKneeling EmojiWithTone = newEmojiWithTone("\U0001f9ce@\u200d\u2640\ufe0f") // woman kneeling
  418. PersonWithWhiteCane EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9af") // person with white cane
  419. ManWithWhiteCane EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9af") // man with white cane
  420. WomanWithWhiteCane EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9af") // woman with white cane
  421. PersonInMotorizedWheelchair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9bc") // person in motorized wheelchair
  422. ManInMotorizedWheelchair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9bc") // man in motorized wheelchair
  423. WomanInMotorizedWheelchair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9bc") // woman in motorized wheelchair
  424. PersonInManualWheelchair EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f9bd") // person in manual wheelchair
  425. ManInManualWheelchair EmojiWithTone = newEmojiWithTone("\U0001f468@\u200d\U0001f9bd") // man in manual wheelchair
  426. WomanInManualWheelchair EmojiWithTone = newEmojiWithTone("\U0001f469@\u200d\U0001f9bd") // woman in manual wheelchair
  427. PersonRunning EmojiWithTone = newEmojiWithTone("\U0001f3c3@") // person running
  428. ManRunning EmojiWithTone = newEmojiWithTone("\U0001f3c3@\u200d\u2642\ufe0f") // man running
  429. WomanRunning EmojiWithTone = newEmojiWithTone("\U0001f3c3@\u200d\u2640\ufe0f") // woman running
  430. WomanDancing EmojiWithTone = newEmojiWithTone("\U0001f483@") // woman dancing
  431. ManDancing EmojiWithTone = newEmojiWithTone("\U0001f57a@") // man dancing
  432. PersonInSuitLevitating EmojiWithTone = newEmojiWithTone("\U0001f574@").withDefaultTone("\ufe0f") // person in suit levitating
  433. PeopleWithBunnyEars Emoji = "\U0001f46f" // people with bunny ears
  434. MenWithBunnyEars Emoji = "\U0001f46f\u200d\u2642\ufe0f" // men with bunny ears
  435. WomenWithBunnyEars Emoji = "\U0001f46f\u200d\u2640\ufe0f" // women with bunny ears
  436. PersonInSteamyRoom EmojiWithTone = newEmojiWithTone("\U0001f9d6@") // person in steamy room
  437. ManInSteamyRoom EmojiWithTone = newEmojiWithTone("\U0001f9d6@\u200d\u2642\ufe0f") // man in steamy room
  438. WomanInSteamyRoom EmojiWithTone = newEmojiWithTone("\U0001f9d6@\u200d\u2640\ufe0f") // woman in steamy room
  439. PersonClimbing EmojiWithTone = newEmojiWithTone("\U0001f9d7@") // person climbing
  440. ManClimbing EmojiWithTone = newEmojiWithTone("\U0001f9d7@\u200d\u2642\ufe0f") // man climbing
  441. WomanClimbing EmojiWithTone = newEmojiWithTone("\U0001f9d7@\u200d\u2640\ufe0f") // woman climbing
  442. // SUBGROUP: person-sport
  443. PersonFencing Emoji = "\U0001f93a" // person fencing
  444. HorseRacing EmojiWithTone = newEmojiWithTone("\U0001f3c7@") // horse racing
  445. Skier Emoji = "\u26f7\ufe0f" // skier
  446. Snowboarder EmojiWithTone = newEmojiWithTone("\U0001f3c2@") // snowboarder
  447. PersonGolfing EmojiWithTone = newEmojiWithTone("\U0001f3cc@").withDefaultTone("\ufe0f") // person golfing
  448. ManGolfing EmojiWithTone = newEmojiWithTone("\U0001f3cc@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man golfing
  449. WomanGolfing EmojiWithTone = newEmojiWithTone("\U0001f3cc@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman golfing
  450. PersonSurfing EmojiWithTone = newEmojiWithTone("\U0001f3c4@") // person surfing
  451. ManSurfing EmojiWithTone = newEmojiWithTone("\U0001f3c4@\u200d\u2642\ufe0f") // man surfing
  452. WomanSurfing EmojiWithTone = newEmojiWithTone("\U0001f3c4@\u200d\u2640\ufe0f") // woman surfing
  453. PersonRowingBoat EmojiWithTone = newEmojiWithTone("\U0001f6a3@") // person rowing boat
  454. ManRowingBoat EmojiWithTone = newEmojiWithTone("\U0001f6a3@\u200d\u2642\ufe0f") // man rowing boat
  455. WomanRowingBoat EmojiWithTone = newEmojiWithTone("\U0001f6a3@\u200d\u2640\ufe0f") // woman rowing boat
  456. PersonSwimming EmojiWithTone = newEmojiWithTone("\U0001f3ca@") // person swimming
  457. ManSwimming EmojiWithTone = newEmojiWithTone("\U0001f3ca@\u200d\u2642\ufe0f") // man swimming
  458. WomanSwimming EmojiWithTone = newEmojiWithTone("\U0001f3ca@\u200d\u2640\ufe0f") // woman swimming
  459. PersonBouncingBall EmojiWithTone = newEmojiWithTone("\u26f9@").withDefaultTone("\ufe0f") // person bouncing ball
  460. ManBouncingBall EmojiWithTone = newEmojiWithTone("\u26f9@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man bouncing ball
  461. WomanBouncingBall EmojiWithTone = newEmojiWithTone("\u26f9@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman bouncing ball
  462. PersonLiftingWeights EmojiWithTone = newEmojiWithTone("\U0001f3cb@").withDefaultTone("\ufe0f") // person lifting weights
  463. ManLiftingWeights EmojiWithTone = newEmojiWithTone("\U0001f3cb@\u200d\u2642\ufe0f").withDefaultTone("\ufe0f") // man lifting weights
  464. WomanLiftingWeights EmojiWithTone = newEmojiWithTone("\U0001f3cb@\u200d\u2640\ufe0f").withDefaultTone("\ufe0f") // woman lifting weights
  465. PersonBiking EmojiWithTone = newEmojiWithTone("\U0001f6b4@") // person biking
  466. ManBiking EmojiWithTone = newEmojiWithTone("\U0001f6b4@\u200d\u2642\ufe0f") // man biking
  467. WomanBiking EmojiWithTone = newEmojiWithTone("\U0001f6b4@\u200d\u2640\ufe0f") // woman biking
  468. PersonMountainBiking EmojiWithTone = newEmojiWithTone("\U0001f6b5@") // person mountain biking
  469. ManMountainBiking EmojiWithTone = newEmojiWithTone("\U0001f6b5@\u200d\u2642\ufe0f") // man mountain biking
  470. WomanMountainBiking EmojiWithTone = newEmojiWithTone("\U0001f6b5@\u200d\u2640\ufe0f") // woman mountain biking
  471. PersonCartwheeling EmojiWithTone = newEmojiWithTone("\U0001f938@") // person cartwheeling
  472. ManCartwheeling EmojiWithTone = newEmojiWithTone("\U0001f938@\u200d\u2642\ufe0f") // man cartwheeling
  473. WomanCartwheeling EmojiWithTone = newEmojiWithTone("\U0001f938@\u200d\u2640\ufe0f") // woman cartwheeling
  474. PeopleWrestling Emoji = "\U0001f93c" // people wrestling
  475. MenWrestling Emoji = "\U0001f93c\u200d\u2642\ufe0f" // men wrestling
  476. WomenWrestling Emoji = "\U0001f93c\u200d\u2640\ufe0f" // women wrestling
  477. PersonPlayingWaterPolo EmojiWithTone = newEmojiWithTone("\U0001f93d@") // person playing water polo
  478. ManPlayingWaterPolo EmojiWithTone = newEmojiWithTone("\U0001f93d@\u200d\u2642\ufe0f") // man playing water polo
  479. WomanPlayingWaterPolo EmojiWithTone = newEmojiWithTone("\U0001f93d@\u200d\u2640\ufe0f") // woman playing water polo
  480. PersonPlayingHandball EmojiWithTone = newEmojiWithTone("\U0001f93e@") // person playing handball
  481. ManPlayingHandball EmojiWithTone = newEmojiWithTone("\U0001f93e@\u200d\u2642\ufe0f") // man playing handball
  482. WomanPlayingHandball EmojiWithTone = newEmojiWithTone("\U0001f93e@\u200d\u2640\ufe0f") // woman playing handball
  483. PersonJuggling EmojiWithTone = newEmojiWithTone("\U0001f939@") // person juggling
  484. ManJuggling EmojiWithTone = newEmojiWithTone("\U0001f939@\u200d\u2642\ufe0f") // man juggling
  485. WomanJuggling EmojiWithTone = newEmojiWithTone("\U0001f939@\u200d\u2640\ufe0f") // woman juggling
  486. // SUBGROUP: person-resting
  487. PersonInLotusPosition EmojiWithTone = newEmojiWithTone("\U0001f9d8@") // person in lotus position
  488. ManInLotusPosition EmojiWithTone = newEmojiWithTone("\U0001f9d8@\u200d\u2642\ufe0f") // man in lotus position
  489. WomanInLotusPosition EmojiWithTone = newEmojiWithTone("\U0001f9d8@\u200d\u2640\ufe0f") // woman in lotus position
  490. PersonTakingBath EmojiWithTone = newEmojiWithTone("\U0001f6c0@") // person taking bath
  491. PersonInBed EmojiWithTone = newEmojiWithTone("\U0001f6cc@") // person in bed
  492. // SUBGROUP: family
  493. PeopleHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f9d1@\u200d\U0001f91d\u200d\U0001f9d1@", "\U0001f9d1@\u200d\U0001f91d\u200d\U0001f9d1@") // people holding hands
  494. WomenHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f46d@", "\U0001f469@\u200d\U0001f91d\u200d\U0001f469@") // women holding hands
  495. WomanAndManHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f46b@", "\U0001f469@\u200d\U0001f91d\u200d\U0001f468@") // woman and man holding hands
  496. MenHoldingHands EmojiWithTone = newEmojiWithTone("\U0001f46c@", "\U0001f468@\u200d\U0001f91d\u200d\U0001f468@") // men holding hands
  497. Kiss Emoji = "\U0001f48f" // kiss
  498. KissWomanMan Emoji = "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468" // kiss: woman, man
  499. KissManMan Emoji = "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468" // kiss: man, man
  500. KissWomanWoman Emoji = "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469" // kiss: woman, woman
  501. CoupleWithHeart Emoji = "\U0001f491" // couple with heart
  502. CoupleWithHeartWomanMan Emoji = "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f468" // couple with heart: woman, man
  503. CoupleWithHeartManMan Emoji = "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468" // couple with heart: man, man
  504. CoupleWithHeartWomanWoman Emoji = "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469" // couple with heart: woman, woman
  505. Family Emoji = "\U0001f46a" // family
  506. FamilyManWomanBoy Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f466" // family: man, woman, boy
  507. FamilyManWomanGirl Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f467" // family: man, woman, girl
  508. FamilyManWomanGirlBoy Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466" // family: man, woman, girl, boy
  509. FamilyManWomanBoyBoy Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466" // family: man, woman, boy, boy
  510. FamilyManWomanGirlGirl Emoji = "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467" // family: man, woman, girl, girl
  511. FamilyManManBoy Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f466" // family: man, man, boy
  512. FamilyManManGirl Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f467" // family: man, man, girl
  513. FamilyManManGirlBoy Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466" // family: man, man, girl, boy
  514. FamilyManManBoyBoy Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466" // family: man, man, boy, boy
  515. FamilyManManGirlGirl Emoji = "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467" // family: man, man, girl, girl
  516. FamilyWomanWomanBoy Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f466" // family: woman, woman, boy
  517. FamilyWomanWomanGirl Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f467" // family: woman, woman, girl
  518. FamilyWomanWomanGirlBoy Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466" // family: woman, woman, girl, boy
  519. FamilyWomanWomanBoyBoy Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466" // family: woman, woman, boy, boy
  520. FamilyWomanWomanGirlGirl Emoji = "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467" // family: woman, woman, girl, girl
  521. FamilyManBoy Emoji = "\U0001f468\u200d\U0001f466" // family: man, boy
  522. FamilyManBoyBoy Emoji = "\U0001f468\u200d\U0001f466\u200d\U0001f466" // family: man, boy, boy
  523. FamilyManGirl Emoji = "\U0001f468\u200d\U0001f467" // family: man, girl
  524. FamilyManGirlBoy Emoji = "\U0001f468\u200d\U0001f467\u200d\U0001f466" // family: man, girl, boy
  525. FamilyManGirlGirl Emoji = "\U0001f468\u200d\U0001f467\u200d\U0001f467" // family: man, girl, girl
  526. FamilyWomanBoy Emoji = "\U0001f469\u200d\U0001f466" // family: woman, boy
  527. FamilyWomanBoyBoy Emoji = "\U0001f469\u200d\U0001f466\u200d\U0001f466" // family: woman, boy, boy
  528. FamilyWomanGirl Emoji = "\U0001f469\u200d\U0001f467" // family: woman, girl
  529. FamilyWomanGirlBoy Emoji = "\U0001f469\u200d\U0001f467\u200d\U0001f466" // family: woman, girl, boy
  530. FamilyWomanGirlGirl Emoji = "\U0001f469\u200d\U0001f467\u200d\U0001f467" // family: woman, girl, girl
  531. // SUBGROUP: person-symbol
  532. SpeakingHead Emoji = "\U0001f5e3\ufe0f" // speaking head
  533. BustInSilhouette Emoji = "\U0001f464" // bust in silhouette
  534. BustsInSilhouette Emoji = "\U0001f465" // busts in silhouette
  535. PeopleHugging Emoji = "\U0001fac2" // people hugging
  536. Footprints Emoji = "\U0001f463" // footprints
  537. // GROUP: Component
  538. // SUBGROUP: skin-tone
  539. LightSkinTone Emoji = "\U0001f3fb" // light skin tone
  540. MediumLightSkinTone Emoji = "\U0001f3fc" // medium-light skin tone
  541. MediumSkinTone Emoji = "\U0001f3fd" // medium skin tone
  542. MediumDarkSkinTone Emoji = "\U0001f3fe" // medium-dark skin tone
  543. DarkSkinTone Emoji = "\U0001f3ff" // dark skin tone
  544. // SUBGROUP: hair-style
  545. RedHair Emoji = "\U0001f9b0" // red hair
  546. CurlyHair Emoji = "\U0001f9b1" // curly hair
  547. WhiteHair Emoji = "\U0001f9b3" // white hair
  548. Bald Emoji = "\U0001f9b2" // bald
  549. // GROUP: Animals & Nature
  550. // SUBGROUP: animal-mammal
  551. MonkeyFace Emoji = "\U0001f435" // monkey face
  552. Monkey Emoji = "\U0001f412" // monkey
  553. Gorilla Emoji = "\U0001f98d" // gorilla
  554. Orangutan Emoji = "\U0001f9a7" // orangutan
  555. DogFace Emoji = "\U0001f436" // dog face
  556. Dog Emoji = "\U0001f415" // dog
  557. GuideDog Emoji = "\U0001f9ae" // guide dog
  558. ServiceDog Emoji = "\U0001f415\u200d\U0001f9ba" // service dog
  559. Poodle Emoji = "\U0001f429" // poodle
  560. Wolf Emoji = "\U0001f43a" // wolf
  561. Fox Emoji = "\U0001f98a" // fox
  562. Raccoon Emoji = "\U0001f99d" // raccoon
  563. CatFace Emoji = "\U0001f431" // cat face
  564. Cat Emoji = "\U0001f408" // cat
  565. BlackCat Emoji = "\U0001f408\u200d\u2b1b" // black cat
  566. Lion Emoji = "\U0001f981" // lion
  567. TigerFace Emoji = "\U0001f42f" // tiger face
  568. Tiger Emoji = "\U0001f405" // tiger
  569. Leopard Emoji = "\U0001f406" // leopard
  570. HorseFace Emoji = "\U0001f434" // horse face
  571. Horse Emoji = "\U0001f40e" // horse
  572. Unicorn Emoji = "\U0001f984" // unicorn
  573. Zebra Emoji = "\U0001f993" // zebra
  574. Deer Emoji = "\U0001f98c" // deer
  575. Bison Emoji = "\U0001f9ac" // bison
  576. CowFace Emoji = "\U0001f42e" // cow face
  577. Ox Emoji = "\U0001f402" // ox
  578. WaterBuffalo Emoji = "\U0001f403" // water buffalo
  579. Cow Emoji = "\U0001f404" // cow
  580. PigFace Emoji = "\U0001f437" // pig face
  581. Pig Emoji = "\U0001f416" // pig
  582. Boar Emoji = "\U0001f417" // boar
  583. PigNose Emoji = "\U0001f43d" // pig nose
  584. Ram Emoji = "\U0001f40f" // ram
  585. Ewe Emoji = "\U0001f411" // ewe
  586. Goat Emoji = "\U0001f410" // goat
  587. Camel Emoji = "\U0001f42a" // camel
  588. TwoHumpCamel Emoji = "\U0001f42b" // two-hump camel
  589. Llama Emoji = "\U0001f999" // llama
  590. Giraffe Emoji = "\U0001f992" // giraffe
  591. Elephant Emoji = "\U0001f418" // elephant
  592. Mammoth Emoji = "\U0001f9a3" // mammoth
  593. Rhinoceros Emoji = "\U0001f98f" // rhinoceros
  594. Hippopotamus Emoji = "\U0001f99b" // hippopotamus
  595. MouseFace Emoji = "\U0001f42d" // mouse face
  596. Mouse Emoji = "\U0001f401" // mouse
  597. Rat Emoji = "\U0001f400" // rat
  598. Hamster Emoji = "\U0001f439" // hamster
  599. RabbitFace Emoji = "\U0001f430" // rabbit face
  600. Rabbit Emoji = "\U0001f407" // rabbit
  601. Chipmunk Emoji = "\U0001f43f\ufe0f" // chipmunk
  602. Beaver Emoji = "\U0001f9ab" // beaver
  603. Hedgehog Emoji = "\U0001f994" // hedgehog
  604. Bat Emoji = "\U0001f987" // bat
  605. Bear Emoji = "\U0001f43b" // bear
  606. PolarBear Emoji = "\U0001f43b\u200d\u2744\ufe0f" // polar bear
  607. Koala Emoji = "\U0001f428" // koala
  608. Panda Emoji = "\U0001f43c" // panda
  609. Sloth Emoji = "\U0001f9a5" // sloth
  610. Otter Emoji = "\U0001f9a6" // otter
  611. Skunk Emoji = "\U0001f9a8" // skunk
  612. Kangaroo Emoji = "\U0001f998" // kangaroo
  613. Badger Emoji = "\U0001f9a1" // badger
  614. PawPrints Emoji = "\U0001f43e" // paw prints
  615. // SUBGROUP: animal-bird
  616. Turkey Emoji = "\U0001f983" // turkey
  617. Chicken Emoji = "\U0001f414" // chicken
  618. Rooster Emoji = "\U0001f413" // rooster
  619. HatchingChick Emoji = "\U0001f423" // hatching chick
  620. BabyChick Emoji = "\U0001f424" // baby chick
  621. FrontFacingBabyChick Emoji = "\U0001f425" // front-facing baby chick
  622. Bird Emoji = "\U0001f426" // bird
  623. Penguin Emoji = "\U0001f427" // penguin
  624. Dove Emoji = "\U0001f54a\ufe0f" // dove
  625. Eagle Emoji = "\U0001f985" // eagle
  626. Duck Emoji = "\U0001f986" // duck
  627. Swan Emoji = "\U0001f9a2" // swan
  628. Owl Emoji = "\U0001f989" // owl
  629. Dodo Emoji = "\U0001f9a4" // dodo
  630. Feather Emoji = "\U0001fab6" // feather
  631. Flamingo Emoji = "\U0001f9a9" // flamingo
  632. Peacock Emoji = "\U0001f99a" // peacock
  633. Parrot Emoji = "\U0001f99c" // parrot
  634. // SUBGROUP: animal-amphibian
  635. Frog Emoji = "\U0001f438" // frog
  636. // SUBGROUP: animal-reptile
  637. Crocodile Emoji = "\U0001f40a" // crocodile
  638. Turtle Emoji = "\U0001f422" // turtle
  639. Lizard Emoji = "\U0001f98e" // lizard
  640. Snake Emoji = "\U0001f40d" // snake
  641. DragonFace Emoji = "\U0001f432" // dragon face
  642. Dragon Emoji = "\U0001f409" // dragon
  643. Sauropod Emoji = "\U0001f995" // sauropod
  644. TRex Emoji = "\U0001f996" // T-Rex
  645. // SUBGROUP: animal-marine
  646. SpoutingWhale Emoji = "\U0001f433" // spouting whale
  647. Whale Emoji = "\U0001f40b" // whale
  648. Dolphin Emoji = "\U0001f42c" // dolphin
  649. Seal Emoji = "\U0001f9ad" // seal
  650. Fish Emoji = "\U0001f41f" // fish
  651. TropicalFish Emoji = "\U0001f420" // tropical fish
  652. Blowfish Emoji = "\U0001f421" // blowfish
  653. Shark Emoji = "\U0001f988" // shark
  654. Octopus Emoji = "\U0001f419" // octopus
  655. SpiralShell Emoji = "\U0001f41a" // spiral shell
  656. // SUBGROUP: animal-bug
  657. Snail Emoji = "\U0001f40c" // snail
  658. Butterfly Emoji = "\U0001f98b" // butterfly
  659. Bug Emoji = "\U0001f41b" // bug
  660. Ant Emoji = "\U0001f41c" // ant
  661. Honeybee Emoji = "\U0001f41d" // honeybee
  662. Beetle Emoji = "\U0001fab2" // beetle
  663. LadyBeetle Emoji = "\U0001f41e" // lady beetle
  664. Cricket Emoji = "\U0001f997" // cricket
  665. Cockroach Emoji = "\U0001fab3" // cockroach
  666. Spider Emoji = "\U0001f577\ufe0f" // spider
  667. SpiderWeb Emoji = "\U0001f578\ufe0f" // spider web
  668. Scorpion Emoji = "\U0001f982" // scorpion
  669. Mosquito Emoji = "\U0001f99f" // mosquito
  670. Fly Emoji = "\U0001fab0" // fly
  671. Worm Emoji = "\U0001fab1" // worm
  672. Microbe Emoji = "\U0001f9a0" // microbe
  673. // SUBGROUP: plant-flower
  674. Bouquet Emoji = "\U0001f490" // bouquet
  675. CherryBlossom Emoji = "\U0001f338" // cherry blossom
  676. WhiteFlower Emoji = "\U0001f4ae" // white flower
  677. Rosette Emoji = "\U0001f3f5\ufe0f" // rosette
  678. Rose Emoji = "\U0001f339" // rose
  679. WiltedFlower Emoji = "\U0001f940" // wilted flower
  680. Hibiscus Emoji = "\U0001f33a" // hibiscus
  681. Sunflower Emoji = "\U0001f33b" // sunflower
  682. Blossom Emoji = "\U0001f33c" // blossom
  683. Tulip Emoji = "\U0001f337" // tulip
  684. // SUBGROUP: plant-other
  685. Seedling Emoji = "\U0001f331" // seedling
  686. PottedPlant Emoji = "\U0001fab4" // potted plant
  687. EvergreenTree Emoji = "\U0001f332" // evergreen tree
  688. DeciduousTree Emoji = "\U0001f333" // deciduous tree
  689. PalmTree Emoji = "\U0001f334" // palm tree
  690. Cactus Emoji = "\U0001f335" // cactus
  691. SheafOfRice Emoji = "\U0001f33e" // sheaf of rice
  692. Herb Emoji = "\U0001f33f" // herb
  693. Shamrock Emoji = "\u2618\ufe0f" // shamrock
  694. FourLeafClover Emoji = "\U0001f340" // four leaf clover
  695. MapleLeaf Emoji = "\U0001f341" // maple leaf
  696. FallenLeaf Emoji = "\U0001f342" // fallen leaf
  697. LeafFlutteringInWind Emoji = "\U0001f343" // leaf fluttering in wind
  698. // GROUP: Food & Drink
  699. // SUBGROUP: food-fruit
  700. Grapes Emoji = "\U0001f347" // grapes
  701. Melon Emoji = "\U0001f348" // melon
  702. Watermelon Emoji = "\U0001f349" // watermelon
  703. Tangerine Emoji = "\U0001f34a" // tangerine
  704. Lemon Emoji = "\U0001f34b" // lemon
  705. Banana Emoji = "\U0001f34c" // banana
  706. Pineapple Emoji = "\U0001f34d" // pineapple
  707. Mango Emoji = "\U0001f96d" // mango
  708. RedApple Emoji = "\U0001f34e" // red apple
  709. GreenApple Emoji = "\U0001f34f" // green apple
  710. Pear Emoji = "\U0001f350" // pear
  711. Peach Emoji = "\U0001f351" // peach
  712. Cherries Emoji = "\U0001f352" // cherries
  713. Strawberry Emoji = "\U0001f353" // strawberry
  714. Blueberries Emoji = "\U0001fad0" // blueberries
  715. KiwiFruit Emoji = "\U0001f95d" // kiwi fruit
  716. Tomato Emoji = "\U0001f345" // tomato
  717. Olive Emoji = "\U0001fad2" // olive
  718. Coconut Emoji = "\U0001f965" // coconut
  719. // SUBGROUP: food-vegetable
  720. Avocado Emoji = "\U0001f951" // avocado
  721. Eggplant Emoji = "\U0001f346" // eggplant
  722. Potato Emoji = "\U0001f954" // potato
  723. Carrot Emoji = "\U0001f955" // carrot
  724. EarOfCorn Emoji = "\U0001f33d" // ear of corn
  725. HotPepper Emoji = "\U0001f336\ufe0f" // hot pepper
  726. BellPepper Emoji = "\U0001fad1" // bell pepper
  727. Cucumber Emoji = "\U0001f952" // cucumber
  728. LeafyGreen Emoji = "\U0001f96c" // leafy green
  729. Broccoli Emoji = "\U0001f966" // broccoli
  730. Garlic Emoji = "\U0001f9c4" // garlic
  731. Onion Emoji = "\U0001f9c5" // onion
  732. Mushroom Emoji = "\U0001f344" // mushroom
  733. Peanuts Emoji = "\U0001f95c" // peanuts
  734. Chestnut Emoji = "\U0001f330" // chestnut
  735. // SUBGROUP: food-prepared
  736. Bread Emoji = "\U0001f35e" // bread
  737. Croissant Emoji = "\U0001f950" // croissant
  738. BaguetteBread Emoji = "\U0001f956" // baguette bread
  739. Flatbread Emoji = "\U0001fad3" // flatbread
  740. Pretzel Emoji = "\U0001f968" // pretzel
  741. Bagel Emoji = "\U0001f96f" // bagel
  742. Pancakes Emoji = "\U0001f95e" // pancakes
  743. Waffle Emoji = "\U0001f9c7" // waffle
  744. CheeseWedge Emoji = "\U0001f9c0" // cheese wedge
  745. MeatOnBone Emoji = "\U0001f356" // meat on bone
  746. PoultryLeg Emoji = "\U0001f357" // poultry leg
  747. CutOfMeat Emoji = "\U0001f969" // cut of meat
  748. Bacon Emoji = "\U0001f953" // bacon
  749. Hamburger Emoji = "\U0001f354" // hamburger
  750. FrenchFries Emoji = "\U0001f35f" // french fries
  751. Pizza Emoji = "\U0001f355" // pizza
  752. HotDog Emoji = "\U0001f32d" // hot dog
  753. Sandwich Emoji = "\U0001f96a" // sandwich
  754. Taco Emoji = "\U0001f32e" // taco
  755. Burrito Emoji = "\U0001f32f" // burrito
  756. Tamale Emoji = "\U0001fad4" // tamale
  757. StuffedFlatbread Emoji = "\U0001f959" // stuffed flatbread
  758. Falafel Emoji = "\U0001f9c6" // falafel
  759. Egg Emoji = "\U0001f95a" // egg
  760. Cooking Emoji = "\U0001f373" // cooking
  761. ShallowPanOfFood Emoji = "\U0001f958" // shallow pan of food
  762. PotOfFood Emoji = "\U0001f372" // pot of food
  763. Fondue Emoji = "\U0001fad5" // fondue
  764. BowlWithSpoon Emoji = "\U0001f963" // bowl with spoon
  765. GreenSalad Emoji = "\U0001f957" // green salad
  766. Popcorn Emoji = "\U0001f37f" // popcorn
  767. Butter Emoji = "\U0001f9c8" // butter
  768. Salt Emoji = "\U0001f9c2" // salt
  769. CannedFood Emoji = "\U0001f96b" // canned food
  770. // SUBGROUP: food-asian
  771. BentoBox Emoji = "\U0001f371" // bento box
  772. RiceCracker Emoji = "\U0001f358" // rice cracker
  773. RiceBall Emoji = "\U0001f359" // rice ball
  774. CookedRice Emoji = "\U0001f35a" // cooked rice
  775. CurryRice Emoji = "\U0001f35b" // curry rice
  776. SteamingBowl Emoji = "\U0001f35c" // steaming bowl
  777. Spaghetti Emoji = "\U0001f35d" // spaghetti
  778. RoastedSweetPotato Emoji = "\U0001f360" // roasted sweet potato
  779. Oden Emoji = "\U0001f362" // oden
  780. Sushi Emoji = "\U0001f363" // sushi
  781. FriedShrimp Emoji = "\U0001f364" // fried shrimp
  782. FishCakeWithSwirl Emoji = "\U0001f365" // fish cake with swirl
  783. MoonCake Emoji = "\U0001f96e" // moon cake
  784. Dango Emoji = "\U0001f361" // dango
  785. Dumpling Emoji = "\U0001f95f" // dumpling
  786. FortuneCookie Emoji = "\U0001f960" // fortune cookie
  787. TakeoutBox Emoji = "\U0001f961" // takeout box
  788. // SUBGROUP: food-marine
  789. Crab Emoji = "\U0001f980" // crab
  790. Lobster Emoji = "\U0001f99e" // lobster
  791. Shrimp Emoji = "\U0001f990" // shrimp
  792. Squid Emoji = "\U0001f991" // squid
  793. Oyster Emoji = "\U0001f9aa" // oyster
  794. // SUBGROUP: food-sweet
  795. SoftIceCream Emoji = "\U0001f366" // soft ice cream
  796. ShavedIce Emoji = "\U0001f367" // shaved ice
  797. IceCream Emoji = "\U0001f368" // ice cream
  798. Doughnut Emoji = "\U0001f369" // doughnut
  799. Cookie Emoji = "\U0001f36a" // cookie
  800. BirthdayCake Emoji = "\U0001f382" // birthday cake
  801. Shortcake Emoji = "\U0001f370" // shortcake
  802. Cupcake Emoji = "\U0001f9c1" // cupcake
  803. Pie Emoji = "\U0001f967" // pie
  804. ChocolateBar Emoji = "\U0001f36b" // chocolate bar
  805. Candy Emoji = "\U0001f36c" // candy
  806. Lollipop Emoji = "\U0001f36d" // lollipop
  807. Custard Emoji = "\U0001f36e" // custard
  808. HoneyPot Emoji = "\U0001f36f" // honey pot
  809. // SUBGROUP: drink
  810. BabyBottle Emoji = "\U0001f37c" // baby bottle
  811. GlassOfMilk Emoji = "\U0001f95b" // glass of milk
  812. HotBeverage Emoji = "\u2615" // hot beverage
  813. Teapot Emoji = "\U0001fad6" // teapot
  814. TeacupWithoutHandle Emoji = "\U0001f375" // teacup without handle
  815. Sake Emoji = "\U0001f376" // sake
  816. BottleWithPoppingCork Emoji = "\U0001f37e" // bottle with popping cork
  817. WineGlass Emoji = "\U0001f377" // wine glass
  818. CocktailGlass Emoji = "\U0001f378" // cocktail glass
  819. TropicalDrink Emoji = "\U0001f379" // tropical drink
  820. BeerMug Emoji = "\U0001f37a" // beer mug
  821. ClinkingBeerMugs Emoji = "\U0001f37b" // clinking beer mugs
  822. ClinkingGlasses Emoji = "\U0001f942" // clinking glasses
  823. TumblerGlass Emoji = "\U0001f943" // tumbler glass
  824. CupWithStraw Emoji = "\U0001f964" // cup with straw
  825. BubbleTea Emoji = "\U0001f9cb" // bubble tea
  826. BeverageBox Emoji = "\U0001f9c3" // beverage box
  827. Mate Emoji = "\U0001f9c9" // mate
  828. Ice Emoji = "\U0001f9ca" // ice
  829. // SUBGROUP: dishware
  830. Chopsticks Emoji = "\U0001f962" // chopsticks
  831. ForkAndKnifeWithPlate Emoji = "\U0001f37d\ufe0f" // fork and knife with plate
  832. ForkAndKnife Emoji = "\U0001f374" // fork and knife
  833. Spoon Emoji = "\U0001f944" // spoon
  834. KitchenKnife Emoji = "\U0001f52a" // kitchen knife
  835. Amphora Emoji = "\U0001f3fa" // amphora
  836. // GROUP: Travel & Places
  837. // SUBGROUP: place-map
  838. GlobeShowingEuropeAfrica Emoji = "\U0001f30d" // globe showing Europe-Africa
  839. GlobeShowingAmericas Emoji = "\U0001f30e" // globe showing Americas
  840. GlobeShowingAsiaAustralia Emoji = "\U0001f30f" // globe showing Asia-Australia
  841. GlobeWithMeridians Emoji = "\U0001f310" // globe with meridians
  842. WorldMap Emoji = "\U0001f5fa\ufe0f" // world map
  843. MapOfJapan Emoji = "\U0001f5fe" // map of Japan
  844. Compass Emoji = "\U0001f9ed" // compass
  845. // SUBGROUP: place-geographic
  846. SnowCappedMountain Emoji = "\U0001f3d4\ufe0f" // snow-capped mountain
  847. Mountain Emoji = "\u26f0\ufe0f" // mountain
  848. Volcano Emoji = "\U0001f30b" // volcano
  849. MountFuji Emoji = "\U0001f5fb" // mount fuji
  850. Camping Emoji = "\U0001f3d5\ufe0f" // camping
  851. BeachWithUmbrella Emoji = "\U0001f3d6\ufe0f" // beach with umbrella
  852. Desert Emoji = "\U0001f3dc\ufe0f" // desert
  853. DesertIsland Emoji = "\U0001f3dd\ufe0f" // desert island
  854. NationalPark Emoji = "\U0001f3de\ufe0f" // national park
  855. // SUBGROUP: place-building
  856. Stadium Emoji = "\U0001f3df\ufe0f" // stadium
  857. ClassicalBuilding Emoji = "\U0001f3db\ufe0f" // classical building
  858. BuildingConstruction Emoji = "\U0001f3d7\ufe0f" // building construction
  859. Brick Emoji = "\U0001f9f1" // brick
  860. Rock Emoji = "\U0001faa8" // rock
  861. Wood Emoji = "\U0001fab5" // wood
  862. Hut Emoji = "\U0001f6d6" // hut
  863. Houses Emoji = "\U0001f3d8\ufe0f" // houses
  864. DerelictHouse Emoji = "\U0001f3da\ufe0f" // derelict house
  865. House Emoji = "\U0001f3e0" // house
  866. HouseWithGarden Emoji = "\U0001f3e1" // house with garden
  867. OfficeBuilding Emoji = "\U0001f3e2" // office building
  868. JapanesePostOffice Emoji = "\U0001f3e3" // Japanese post office
  869. PostOffice Emoji = "\U0001f3e4" // post office
  870. Hospital Emoji = "\U0001f3e5" // hospital
  871. Bank Emoji = "\U0001f3e6" // bank
  872. Hotel Emoji = "\U0001f3e8" // hotel
  873. LoveHotel Emoji = "\U0001f3e9" // love hotel
  874. ConvenienceStore Emoji = "\U0001f3ea" // convenience store
  875. School Emoji = "\U0001f3eb" // school
  876. DepartmentStore Emoji = "\U0001f3ec" // department store
  877. Factory Emoji = "\U0001f3ed" // factory
  878. JapaneseCastle Emoji = "\U0001f3ef" // Japanese castle
  879. Castle Emoji = "\U0001f3f0" // castle
  880. Wedding Emoji = "\U0001f492" // wedding
  881. TokyoTower Emoji = "\U0001f5fc" // Tokyo tower
  882. StatueOfLiberty Emoji = "\U0001f5fd" // Statue of Liberty
  883. // SUBGROUP: place-religious
  884. Church Emoji = "\u26ea" // church
  885. Mosque Emoji = "\U0001f54c" // mosque
  886. HinduTemple Emoji = "\U0001f6d5" // hindu temple
  887. Synagogue Emoji = "\U0001f54d" // synagogue
  888. ShintoShrine Emoji = "\u26e9\ufe0f" // shinto shrine
  889. Kaaba Emoji = "\U0001f54b" // kaaba
  890. // SUBGROUP: place-other
  891. Fountain Emoji = "\u26f2" // fountain
  892. Tent Emoji = "\u26fa" // tent
  893. Foggy Emoji = "\U0001f301" // foggy
  894. NightWithStars Emoji = "\U0001f303" // night with stars
  895. Cityscape Emoji = "\U0001f3d9\ufe0f" // cityscape
  896. SunriseOverMountains Emoji = "\U0001f304" // sunrise over mountains
  897. Sunrise Emoji = "\U0001f305" // sunrise
  898. CityscapeAtDusk Emoji = "\U0001f306" // cityscape at dusk
  899. Sunset Emoji = "\U0001f307" // sunset
  900. BridgeAtNight Emoji = "\U0001f309" // bridge at night
  901. HotSprings Emoji = "\u2668\ufe0f" // hot springs
  902. CarouselHorse Emoji = "\U0001f3a0" // carousel horse
  903. FerrisWheel Emoji = "\U0001f3a1" // ferris wheel
  904. RollerCoaster Emoji = "\U0001f3a2" // roller coaster
  905. BarberPole Emoji = "\U0001f488" // barber pole
  906. CircusTent Emoji = "\U0001f3aa" // circus tent
  907. // SUBGROUP: transport-ground
  908. Locomotive Emoji = "\U0001f682" // locomotive
  909. RailwayCar Emoji = "\U0001f683" // railway car
  910. HighSpeedTrain Emoji = "\U0001f684" // high-speed train
  911. BulletTrain Emoji = "\U0001f685" // bullet train
  912. Train Emoji = "\U0001f686" // train
  913. Metro Emoji = "\U0001f687" // metro
  914. LightRail Emoji = "\U0001f688" // light rail
  915. Station Emoji = "\U0001f689" // station
  916. Tram Emoji = "\U0001f68a" // tram
  917. Monorail Emoji = "\U0001f69d" // monorail
  918. MountainRailway Emoji = "\U0001f69e" // mountain railway
  919. TramCar Emoji = "\U0001f68b" // tram car
  920. Bus Emoji = "\U0001f68c" // bus
  921. OncomingBus Emoji = "\U0001f68d" // oncoming bus
  922. Trolleybus Emoji = "\U0001f68e" // trolleybus
  923. Minibus Emoji = "\U0001f690" // minibus
  924. Ambulance Emoji = "\U0001f691" // ambulance
  925. FireEngine Emoji = "\U0001f692" // fire engine
  926. PoliceCar Emoji = "\U0001f693" // police car
  927. OncomingPoliceCar Emoji = "\U0001f694" // oncoming police car
  928. Taxi Emoji = "\U0001f695" // taxi
  929. OncomingTaxi Emoji = "\U0001f696" // oncoming taxi
  930. Automobile Emoji = "\U0001f697" // automobile
  931. OncomingAutomobile Emoji = "\U0001f698" // oncoming automobile
  932. SportUtilityVehicle Emoji = "\U0001f699" // sport utility vehicle
  933. PickupTruck Emoji = "\U0001f6fb" // pickup truck
  934. DeliveryTruck Emoji = "\U0001f69a" // delivery truck
  935. ArticulatedLorry Emoji = "\U0001f69b" // articulated lorry
  936. Tractor Emoji = "\U0001f69c" // tractor
  937. RacingCar Emoji = "\U0001f3ce\ufe0f" // racing car
  938. Motorcycle Emoji = "\U0001f3cd\ufe0f" // motorcycle
  939. MotorScooter Emoji = "\U0001f6f5" // motor scooter
  940. ManualWheelchair Emoji = "\U0001f9bd" // manual wheelchair
  941. MotorizedWheelchair Emoji = "\U0001f9bc" // motorized wheelchair
  942. AutoRickshaw Emoji = "\U0001f6fa" // auto rickshaw
  943. Bicycle Emoji = "\U0001f6b2" // bicycle
  944. KickScooter Emoji = "\U0001f6f4" // kick scooter
  945. Skateboard Emoji = "\U0001f6f9" // skateboard
  946. RollerSkate Emoji = "\U0001f6fc" // roller skate
  947. BusStop Emoji = "\U0001f68f" // bus stop
  948. Motorway Emoji = "\U0001f6e3\ufe0f" // motorway
  949. RailwayTrack Emoji = "\U0001f6e4\ufe0f" // railway track
  950. OilDrum Emoji = "\U0001f6e2\ufe0f" // oil drum
  951. FuelPump Emoji = "\u26fd" // fuel pump
  952. PoliceCarLight Emoji = "\U0001f6a8" // police car light
  953. HorizontalTrafficLight Emoji = "\U0001f6a5" // horizontal traffic light
  954. VerticalTrafficLight Emoji = "\U0001f6a6" // vertical traffic light
  955. StopSign Emoji = "\U0001f6d1" // stop sign
  956. Construction Emoji = "\U0001f6a7" // construction
  957. // SUBGROUP: transport-water
  958. Anchor Emoji = "\u2693" // anchor
  959. Sailboat Emoji = "\u26f5" // sailboat
  960. Canoe Emoji = "\U0001f6f6" // canoe
  961. Speedboat Emoji = "\U0001f6a4" // speedboat
  962. PassengerShip Emoji = "\U0001f6f3\ufe0f" // passenger ship
  963. Ferry Emoji = "\u26f4\ufe0f" // ferry
  964. MotorBoat Emoji = "\U0001f6e5\ufe0f" // motor boat
  965. Ship Emoji = "\U0001f6a2" // ship
  966. // SUBGROUP: transport-air
  967. Airplane Emoji = "\u2708\ufe0f" // airplane
  968. SmallAirplane Emoji = "\U0001f6e9\ufe0f" // small airplane
  969. AirplaneDeparture Emoji = "\U0001f6eb" // airplane departure
  970. AirplaneArrival Emoji = "\U0001f6ec" // airplane arrival
  971. Parachute Emoji = "\U0001fa82" // parachute
  972. Seat Emoji = "\U0001f4ba" // seat
  973. Helicopter Emoji = "\U0001f681" // helicopter
  974. SuspensionRailway Emoji = "\U0001f69f" // suspension railway
  975. MountainCableway Emoji = "\U0001f6a0" // mountain cableway
  976. AerialTramway Emoji = "\U0001f6a1" // aerial tramway
  977. Satellite Emoji = "\U0001f6f0\ufe0f" // satellite
  978. Rocket Emoji = "\U0001f680" // rocket
  979. FlyingSaucer Emoji = "\U0001f6f8" // flying saucer
  980. // SUBGROUP: hotel
  981. BellhopBell Emoji = "\U0001f6ce\ufe0f" // bellhop bell
  982. Luggage Emoji = "\U0001f9f3" // luggage
  983. // SUBGROUP: time
  984. HourglassDone Emoji = "\u231b" // hourglass done
  985. HourglassNotDone Emoji = "\u23f3" // hourglass not done
  986. Watch Emoji = "\u231a" // watch
  987. AlarmClock Emoji = "\u23f0" // alarm clock
  988. Stopwatch Emoji = "\u23f1\ufe0f" // stopwatch
  989. TimerClock Emoji = "\u23f2\ufe0f" // timer clock
  990. MantelpieceClock Emoji = "\U0001f570\ufe0f" // mantelpiece clock
  991. TwelveOClock Emoji = "\U0001f55b" // twelve o’clock
  992. TwelveThirty Emoji = "\U0001f567" // twelve-thirty
  993. OneOClock Emoji = "\U0001f550" // one o’clock
  994. OneThirty Emoji = "\U0001f55c" // one-thirty
  995. TwoOClock Emoji = "\U0001f551" // two o’clock
  996. TwoThirty Emoji = "\U0001f55d" // two-thirty
  997. ThreeOClock Emoji = "\U0001f552" // three o’clock
  998. ThreeThirty Emoji = "\U0001f55e" // three-thirty
  999. FourOClock Emoji = "\U0001f553" // four o’clock
  1000. FourThirty Emoji = "\U0001f55f" // four-thirty
  1001. FiveOClock Emoji = "\U0001f554" // five o’clock
  1002. FiveThirty Emoji = "\U0001f560" // five-thirty
  1003. SixOClock Emoji = "\U0001f555" // six o’clock
  1004. SixThirty Emoji = "\U0001f561" // six-thirty
  1005. SevenOClock Emoji = "\U0001f556" // seven o’clock
  1006. SevenThirty Emoji = "\U0001f562" // seven-thirty
  1007. EightOClock Emoji = "\U0001f557" // eight o’clock
  1008. EightThirty Emoji = "\U0001f563" // eight-thirty
  1009. NineOClock Emoji = "\U0001f558" // nine o’clock
  1010. NineThirty Emoji = "\U0001f564" // nine-thirty
  1011. TenOClock Emoji = "\U0001f559" // ten o’clock
  1012. TenThirty Emoji = "\U0001f565" // ten-thirty
  1013. ElevenOClock Emoji = "\U0001f55a" // eleven o’clock
  1014. ElevenThirty Emoji = "\U0001f566" // eleven-thirty
  1015. // SUBGROUP: sky & weather
  1016. NewMoon Emoji = "\U0001f311" // new moon
  1017. WaxingCrescentMoon Emoji = "\U0001f312" // waxing crescent moon
  1018. FirstQuarterMoon Emoji = "\U0001f313" // first quarter moon
  1019. WaxingGibbousMoon Emoji = "\U0001f314" // waxing gibbous moon
  1020. FullMoon Emoji = "\U0001f315" // full moon
  1021. WaningGibbousMoon Emoji = "\U0001f316" // waning gibbous moon
  1022. LastQuarterMoon Emoji = "\U0001f317" // last quarter moon
  1023. WaningCrescentMoon Emoji = "\U0001f318" // waning crescent moon
  1024. CrescentMoon Emoji = "\U0001f319" // crescent moon
  1025. NewMoonFace Emoji = "\U0001f31a" // new moon face
  1026. FirstQuarterMoonFace Emoji = "\U0001f31b" // first quarter moon face
  1027. LastQuarterMoonFace Emoji = "\U0001f31c" // last quarter moon face
  1028. Thermometer Emoji = "\U0001f321\ufe0f" // thermometer
  1029. Sun Emoji = "\u2600\ufe0f" // sun
  1030. FullMoonFace Emoji = "\U0001f31d" // full moon face
  1031. SunWithFace Emoji = "\U0001f31e" // sun with face
  1032. RingedPlanet Emoji = "\U0001fa90" // ringed planet
  1033. Star Emoji = "\u2b50" // star
  1034. GlowingStar Emoji = "\U0001f31f" // glowing star
  1035. ShootingStar Emoji = "\U0001f320" // shooting star
  1036. MilkyWay Emoji = "\U0001f30c" // milky way
  1037. Cloud Emoji = "\u2601\ufe0f" // cloud
  1038. SunBehindCloud Emoji = "\u26c5" // sun behind cloud
  1039. CloudWithLightningAndRain Emoji = "\u26c8\ufe0f" // cloud with lightning and rain
  1040. SunBehindSmallCloud Emoji = "\U0001f324\ufe0f" // sun behind small cloud
  1041. SunBehindLargeCloud Emoji = "\U0001f325\ufe0f" // sun behind large cloud
  1042. SunBehindRainCloud Emoji = "\U0001f326\ufe0f" // sun behind rain cloud
  1043. CloudWithRain Emoji = "\U0001f327\ufe0f" // cloud with rain
  1044. CloudWithSnow Emoji = "\U0001f328\ufe0f" // cloud with snow
  1045. CloudWithLightning Emoji = "\U0001f329\ufe0f" // cloud with lightning
  1046. Tornado Emoji = "\U0001f32a\ufe0f" // tornado
  1047. Fog Emoji = "\U0001f32b\ufe0f" // fog
  1048. WindFace Emoji = "\U0001f32c\ufe0f" // wind face
  1049. Cyclone Emoji = "\U0001f300" // cyclone
  1050. Rainbow Emoji = "\U0001f308" // rainbow
  1051. ClosedUmbrella Emoji = "\U0001f302" // closed umbrella
  1052. Umbrella Emoji = "\u2602\ufe0f" // umbrella
  1053. UmbrellaWithRainDrops Emoji = "\u2614" // umbrella with rain drops
  1054. UmbrellaOnGround Emoji = "\u26f1\ufe0f" // umbrella on ground
  1055. HighVoltage Emoji = "\u26a1" // high voltage
  1056. Snowflake Emoji = "\u2744\ufe0f" // snowflake
  1057. Snowman Emoji = "\u2603\ufe0f" // snowman
  1058. SnowmanWithoutSnow Emoji = "\u26c4" // snowman without snow
  1059. Comet Emoji = "\u2604\ufe0f" // comet
  1060. Fire Emoji = "\U0001f525" // fire
  1061. Droplet Emoji = "\U0001f4a7" // droplet
  1062. WaterWave Emoji = "\U0001f30a" // water wave
  1063. // GROUP: Activities
  1064. // SUBGROUP: event
  1065. JackOLantern Emoji = "\U0001f383" // jack-o-lantern
  1066. ChristmasTree Emoji = "\U0001f384" // Christmas tree
  1067. Fireworks Emoji = "\U0001f386" // fireworks
  1068. Sparkler Emoji = "\U0001f387" // sparkler
  1069. Firecracker Emoji = "\U0001f9e8" // firecracker
  1070. Sparkles Emoji = "\u2728" // sparkles
  1071. Balloon Emoji = "\U0001f388" // balloon
  1072. PartyPopper Emoji = "\U0001f389" // party popper
  1073. ConfettiBall Emoji = "\U0001f38a" // confetti ball
  1074. TanabataTree Emoji = "\U0001f38b" // tanabata tree
  1075. PineDecoration Emoji = "\U0001f38d" // pine decoration
  1076. JapaneseDolls Emoji = "\U0001f38e" // Japanese dolls
  1077. CarpStreamer Emoji = "\U0001f38f" // carp streamer
  1078. WindChime Emoji = "\U0001f390" // wind chime
  1079. MoonViewingCeremony Emoji = "\U0001f391" // moon viewing ceremony
  1080. RedEnvelope Emoji = "\U0001f9e7" // red envelope
  1081. Ribbon Emoji = "\U0001f380" // ribbon
  1082. WrappedGift Emoji = "\U0001f381" // wrapped gift
  1083. ReminderRibbon Emoji = "\U0001f397\ufe0f" // reminder ribbon
  1084. AdmissionTickets Emoji = "\U0001f39f\ufe0f" // admission tickets
  1085. Ticket Emoji = "\U0001f3ab" // ticket
  1086. // SUBGROUP: award-medal
  1087. MilitaryMedal Emoji = "\U0001f396\ufe0f" // military medal
  1088. Trophy Emoji = "\U0001f3c6" // trophy
  1089. SportsMedal Emoji = "\U0001f3c5" // sports medal
  1090. FirstPlaceMedal Emoji = "\U0001f947" // 1st place medal
  1091. SecondPlaceMedal Emoji = "\U0001f948" // 2nd place medal
  1092. ThirdPlaceMedal Emoji = "\U0001f949" // 3rd place medal
  1093. // SUBGROUP: sport
  1094. SoccerBall Emoji = "\u26bd" // soccer ball
  1095. Baseball Emoji = "\u26be" // baseball
  1096. Softball Emoji = "\U0001f94e" // softball
  1097. Basketball Emoji = "\U0001f3c0" // basketball
  1098. Volleyball Emoji = "\U0001f3d0" // volleyball
  1099. AmericanFootball Emoji = "\U0001f3c8" // american football
  1100. RugbyFootball Emoji = "\U0001f3c9" // rugby football
  1101. Tennis Emoji = "\U0001f3be" // tennis
  1102. FlyingDisc Emoji = "\U0001f94f" // flying disc
  1103. Bowling Emoji = "\U0001f3b3" // bowling
  1104. CricketGame Emoji = "\U0001f3cf" // cricket game
  1105. FieldHockey Emoji = "\U0001f3d1" // field hockey
  1106. IceHockey Emoji = "\U0001f3d2" // ice hockey
  1107. Lacrosse Emoji = "\U0001f94d" // lacrosse
  1108. PingPong Emoji = "\U0001f3d3" // ping pong
  1109. Badminton Emoji = "\U0001f3f8" // badminton
  1110. BoxingGlove Emoji = "\U0001f94a" // boxing glove
  1111. MartialArtsUniform Emoji = "\U0001f94b" // martial arts uniform
  1112. GoalNet Emoji = "\U0001f945" // goal net
  1113. FlagInHole Emoji = "\u26f3" // flag in hole
  1114. IceSkate Emoji = "\u26f8\ufe0f" // ice skate
  1115. FishingPole Emoji = "\U0001f3a3" // fishing pole
  1116. DivingMask Emoji = "\U0001f93f" // diving mask
  1117. RunningShirt Emoji = "\U0001f3bd" // running shirt
  1118. Skis Emoji = "\U0001f3bf" // skis
  1119. Sled Emoji = "\U0001f6f7" // sled
  1120. CurlingStone Emoji = "\U0001f94c" // curling stone
  1121. // SUBGROUP: game
  1122. DirectHit Emoji = "\U0001f3af" // direct hit
  1123. YoYo Emoji = "\U0001fa80" // yo-yo
  1124. Kite Emoji = "\U0001fa81" // kite
  1125. Pool8Ball Emoji = "\U0001f3b1" // pool 8 ball
  1126. CrystalBall Emoji = "\U0001f52e" // crystal ball
  1127. MagicWand Emoji = "\U0001fa84" // magic wand
  1128. NazarAmulet Emoji = "\U0001f9ff" // nazar amulet
  1129. VideoGame Emoji = "\U0001f3ae" // video game
  1130. Joystick Emoji = "\U0001f579\ufe0f" // joystick
  1131. SlotMachine Emoji = "\U0001f3b0" // slot machine
  1132. GameDie Emoji = "\U0001f3b2" // game die
  1133. PuzzlePiece Emoji = "\U0001f9e9" // puzzle piece
  1134. TeddyBear Emoji = "\U0001f9f8" // teddy bear
  1135. Pinata Emoji = "\U0001fa85" // piñata
  1136. NestingDolls Emoji = "\U0001fa86" // nesting dolls
  1137. SpadeSuit Emoji = "\u2660\ufe0f" // spade suit
  1138. HeartSuit Emoji = "\u2665\ufe0f" // heart suit
  1139. DiamondSuit Emoji = "\u2666\ufe0f" // diamond suit
  1140. ClubSuit Emoji = "\u2663\ufe0f" // club suit
  1141. ChessPawn Emoji = "\u265f\ufe0f" // chess pawn
  1142. Joker Emoji = "\U0001f0cf" // joker
  1143. MahjongRedDragon Emoji = "\U0001f004" // mahjong red dragon
  1144. FlowerPlayingCards Emoji = "\U0001f3b4" // flower playing cards
  1145. // SUBGROUP: arts & crafts
  1146. PerformingArts Emoji = "\U0001f3ad" // performing arts
  1147. FramedPicture Emoji = "\U0001f5bc\ufe0f" // framed picture
  1148. ArtistPalette Emoji = "\U0001f3a8" // artist palette
  1149. Thread Emoji = "\U0001f9f5" // thread
  1150. SewingNeedle Emoji = "\U0001faa1" // sewing needle
  1151. Yarn Emoji = "\U0001f9f6" // yarn
  1152. Knot Emoji = "\U0001faa2" // knot
  1153. // GROUP: Objects
  1154. // SUBGROUP: clothing
  1155. Glasses Emoji = "\U0001f453" // glasses
  1156. Sunglasses Emoji = "\U0001f576\ufe0f" // sunglasses
  1157. Goggles Emoji = "\U0001f97d" // goggles
  1158. LabCoat Emoji = "\U0001f97c" // lab coat
  1159. SafetyVest Emoji = "\U0001f9ba" // safety vest
  1160. Necktie Emoji = "\U0001f454" // necktie
  1161. TShirt Emoji = "\U0001f455" // t-shirt
  1162. Jeans Emoji = "\U0001f456" // jeans
  1163. Scarf Emoji = "\U0001f9e3" // scarf
  1164. Gloves Emoji = "\U0001f9e4" // gloves
  1165. Coat Emoji = "\U0001f9e5" // coat
  1166. Socks Emoji = "\U0001f9e6" // socks
  1167. Dress Emoji = "\U0001f457" // dress
  1168. Kimono Emoji = "\U0001f458" // kimono
  1169. Sari Emoji = "\U0001f97b" // sari
  1170. OnePieceSwimsuit Emoji = "\U0001fa71" // one-piece swimsuit
  1171. Briefs Emoji = "\U0001fa72" // briefs
  1172. Shorts Emoji = "\U0001fa73" // shorts
  1173. Bikini Emoji = "\U0001f459" // bikini
  1174. WomanSClothes Emoji = "\U0001f45a" // woman’s clothes
  1175. Purse Emoji = "\U0001f45b" // purse
  1176. Handbag Emoji = "\U0001f45c" // handbag
  1177. ClutchBag Emoji = "\U0001f45d" // clutch bag
  1178. ShoppingBags Emoji = "\U0001f6cd\ufe0f" // shopping bags
  1179. Backpack Emoji = "\U0001f392" // backpack
  1180. ThongSandal Emoji = "\U0001fa74" // thong sandal
  1181. ManSShoe Emoji = "\U0001f45e" // man’s shoe
  1182. RunningShoe Emoji = "\U0001f45f" // running shoe
  1183. HikingBoot Emoji = "\U0001f97e" // hiking boot
  1184. FlatShoe Emoji = "\U0001f97f" // flat shoe
  1185. HighHeeledShoe Emoji = "\U0001f460" // high-heeled shoe
  1186. WomanSSandal Emoji = "\U0001f461" // woman’s sandal
  1187. BalletShoes Emoji = "\U0001fa70" // ballet shoes
  1188. WomanSBoot Emoji = "\U0001f462" // woman’s boot
  1189. Crown Emoji = "\U0001f451" // crown
  1190. WomanSHat Emoji = "\U0001f452" // woman’s hat
  1191. TopHat Emoji = "\U0001f3a9" // top hat
  1192. GraduationCap Emoji = "\U0001f393" // graduation cap
  1193. BilledCap Emoji = "\U0001f9e2" // billed cap
  1194. MilitaryHelmet Emoji = "\U0001fa96" // military helmet
  1195. RescueWorkerSHelmet Emoji = "\u26d1\ufe0f" // rescue worker’s helmet
  1196. PrayerBeads Emoji = "\U0001f4ff" // prayer beads
  1197. Lipstick Emoji = "\U0001f484" // lipstick
  1198. Ring Emoji = "\U0001f48d" // ring
  1199. GemStone Emoji = "\U0001f48e" // gem stone
  1200. // SUBGROUP: sound
  1201. MutedSpeaker Emoji = "\U0001f507" // muted speaker
  1202. SpeakerLowVolume Emoji = "\U0001f508" // speaker low volume
  1203. SpeakerMediumVolume Emoji = "\U0001f509" // speaker medium volume
  1204. SpeakerHighVolume Emoji = "\U0001f50a" // speaker high volume
  1205. Loudspeaker Emoji = "\U0001f4e2" // loudspeaker
  1206. Megaphone Emoji = "\U0001f4e3" // megaphone
  1207. PostalHorn Emoji = "\U0001f4ef" // postal horn
  1208. Bell Emoji = "\U0001f514" // bell
  1209. BellWithSlash Emoji = "\U0001f515" // bell with slash
  1210. // SUBGROUP: music
  1211. MusicalScore Emoji = "\U0001f3bc" // musical score
  1212. MusicalNote Emoji = "\U0001f3b5" // musical note
  1213. MusicalNotes Emoji = "\U0001f3b6" // musical notes
  1214. StudioMicrophone Emoji = "\U0001f399\ufe0f" // studio microphone
  1215. LevelSlider Emoji = "\U0001f39a\ufe0f" // level slider
  1216. ControlKnobs Emoji = "\U0001f39b\ufe0f" // control knobs
  1217. Microphone Emoji = "\U0001f3a4" // microphone
  1218. Headphone Emoji = "\U0001f3a7" // headphone
  1219. Radio Emoji = "\U0001f4fb" // radio
  1220. // SUBGROUP: musical-instrument
  1221. Saxophone Emoji = "\U0001f3b7" // saxophone
  1222. Accordion Emoji = "\U0001fa97" // accordion
  1223. Guitar Emoji = "\U0001f3b8" // guitar
  1224. MusicalKeyboard Emoji = "\U0001f3b9" // musical keyboard
  1225. Trumpet Emoji = "\U0001f3ba" // trumpet
  1226. Violin Emoji = "\U0001f3bb" // violin
  1227. Banjo Emoji = "\U0001fa95" // banjo
  1228. Drum Emoji = "\U0001f941" // drum
  1229. LongDrum Emoji = "\U0001fa98" // long drum
  1230. // SUBGROUP: phone
  1231. MobilePhone Emoji = "\U0001f4f1" // mobile phone
  1232. MobilePhoneWithArrow Emoji = "\U0001f4f2" // mobile phone with arrow
  1233. Telephone Emoji = "\u260e\ufe0f" // telephone
  1234. TelephoneReceiver Emoji = "\U0001f4de" // telephone receiver
  1235. Pager Emoji = "\U0001f4df" // pager
  1236. FaxMachine Emoji = "\U0001f4e0" // fax machine
  1237. // SUBGROUP: computer
  1238. Battery Emoji = "\U0001f50b" // battery
  1239. ElectricPlug Emoji = "\U0001f50c" // electric plug
  1240. Laptop Emoji = "\U0001f4bb" // laptop
  1241. DesktopComputer Emoji = "\U0001f5a5\ufe0f" // desktop computer
  1242. Printer Emoji = "\U0001f5a8\ufe0f" // printer
  1243. Keyboard Emoji = "\u2328\ufe0f" // keyboard
  1244. ComputerMouse Emoji = "\U0001f5b1\ufe0f" // computer mouse
  1245. Trackball Emoji = "\U0001f5b2\ufe0f" // trackball
  1246. ComputerDisk Emoji = "\U0001f4bd" // computer disk
  1247. FloppyDisk Emoji = "\U0001f4be" // floppy disk
  1248. OpticalDisk Emoji = "\U0001f4bf" // optical disk
  1249. Dvd Emoji = "\U0001f4c0" // dvd
  1250. Abacus Emoji = "\U0001f9ee" // abacus
  1251. // SUBGROUP: light & video
  1252. MovieCamera Emoji = "\U0001f3a5" // movie camera
  1253. FilmFrames Emoji = "\U0001f39e\ufe0f" // film frames
  1254. FilmProjector Emoji = "\U0001f4fd\ufe0f" // film projector
  1255. ClapperBoard Emoji = "\U0001f3ac" // clapper board
  1256. Television Emoji = "\U0001f4fa" // television
  1257. Camera Emoji = "\U0001f4f7" // camera
  1258. CameraWithFlash Emoji = "\U0001f4f8" // camera with flash
  1259. VideoCamera Emoji = "\U0001f4f9" // video camera
  1260. Videocassette Emoji = "\U0001f4fc" // videocassette
  1261. MagnifyingGlassTiltedLeft Emoji = "\U0001f50d" // magnifying glass tilted left
  1262. MagnifyingGlassTiltedRight Emoji = "\U0001f50e" // magnifying glass tilted right
  1263. Candle Emoji = "\U0001f56f\ufe0f" // candle
  1264. LightBulb Emoji = "\U0001f4a1" // light bulb
  1265. Flashlight Emoji = "\U0001f526" // flashlight
  1266. RedPaperLantern Emoji = "\U0001f3ee" // red paper lantern
  1267. DiyaLamp Emoji = "\U0001fa94" // diya lamp
  1268. // SUBGROUP: book-paper
  1269. NotebookWithDecorativeCover Emoji = "\U0001f4d4" // notebook with decorative cover
  1270. ClosedBook Emoji = "\U0001f4d5" // closed book
  1271. OpenBook Emoji = "\U0001f4d6" // open book
  1272. GreenBook Emoji = "\U0001f4d7" // green book
  1273. BlueBook Emoji = "\U0001f4d8" // blue book
  1274. OrangeBook Emoji = "\U0001f4d9" // orange book
  1275. Books Emoji = "\U0001f4da" // books
  1276. Notebook Emoji = "\U0001f4d3" // notebook
  1277. Ledger Emoji = "\U0001f4d2" // ledger
  1278. PageWithCurl Emoji = "\U0001f4c3" // page with curl
  1279. Scroll Emoji = "\U0001f4dc" // scroll
  1280. PageFacingUp Emoji = "\U0001f4c4" // page facing up
  1281. Newspaper Emoji = "\U0001f4f0" // newspaper
  1282. RolledUpNewspaper Emoji = "\U0001f5de\ufe0f" // rolled-up newspaper
  1283. BookmarkTabs Emoji = "\U0001f4d1" // bookmark tabs
  1284. Bookmark Emoji = "\U0001f516" // bookmark
  1285. Label Emoji = "\U0001f3f7\ufe0f" // label
  1286. // SUBGROUP: money
  1287. MoneyBag Emoji = "\U0001f4b0" // money bag
  1288. Coin Emoji = "\U0001fa99" // coin
  1289. YenBanknote Emoji = "\U0001f4b4" // yen banknote
  1290. DollarBanknote Emoji = "\U0001f4b5" // dollar banknote
  1291. EuroBanknote Emoji = "\U0001f4b6" // euro banknote
  1292. PoundBanknote Emoji = "\U0001f4b7" // pound banknote
  1293. MoneyWithWings Emoji = "\U0001f4b8" // money with wings
  1294. CreditCard Emoji = "\U0001f4b3" // credit card
  1295. Receipt Emoji = "\U0001f9fe" // receipt
  1296. ChartIncreasingWithYen Emoji = "\U0001f4b9" // chart increasing with yen
  1297. // SUBGROUP: mail
  1298. Envelope Emoji = "\u2709\ufe0f" // envelope
  1299. EMail Emoji = "\U0001f4e7" // e-mail
  1300. IncomingEnvelope Emoji = "\U0001f4e8" // incoming envelope
  1301. EnvelopeWithArrow Emoji = "\U0001f4e9" // envelope with arrow
  1302. OutboxTray Emoji = "\U0001f4e4" // outbox tray
  1303. InboxTray Emoji = "\U0001f4e5" // inbox tray
  1304. Package Emoji = "\U0001f4e6" // package
  1305. ClosedMailboxWithRaisedFlag Emoji = "\U0001f4eb" // closed mailbox with raised flag
  1306. ClosedMailboxWithLoweredFlag Emoji = "\U0001f4ea" // closed mailbox with lowered flag
  1307. OpenMailboxWithRaisedFlag Emoji = "\U0001f4ec" // open mailbox with raised flag
  1308. OpenMailboxWithLoweredFlag Emoji = "\U0001f4ed" // open mailbox with lowered flag
  1309. Postbox Emoji = "\U0001f4ee" // postbox
  1310. BallotBoxWithBallot Emoji = "\U0001f5f3\ufe0f" // ballot box with ballot
  1311. // SUBGROUP: writing
  1312. Pencil Emoji = "\u270f\ufe0f" // pencil
  1313. BlackNib Emoji = "\u2712\ufe0f" // black nib
  1314. FountainPen Emoji = "\U0001f58b\ufe0f" // fountain pen
  1315. Pen Emoji = "\U0001f58a\ufe0f" // pen
  1316. Paintbrush Emoji = "\U0001f58c\ufe0f" // paintbrush
  1317. Crayon Emoji = "\U0001f58d\ufe0f" // crayon
  1318. Memo Emoji = "\U0001f4dd" // memo
  1319. // SUBGROUP: office
  1320. Briefcase Emoji = "\U0001f4bc" // briefcase
  1321. FileFolder Emoji = "\U0001f4c1" // file folder
  1322. OpenFileFolder Emoji = "\U0001f4c2" // open file folder
  1323. CardIndexDividers Emoji = "\U0001f5c2\ufe0f" // card index dividers
  1324. Calendar Emoji = "\U0001f4c5" // calendar
  1325. TearOffCalendar Emoji = "\U0001f4c6" // tear-off calendar
  1326. SpiralNotepad Emoji = "\U0001f5d2\ufe0f" // spiral notepad
  1327. SpiralCalendar Emoji = "\U0001f5d3\ufe0f" // spiral calendar
  1328. CardIndex Emoji = "\U0001f4c7" // card index
  1329. ChartIncreasing Emoji = "\U0001f4c8" // chart increasing
  1330. ChartDecreasing Emoji = "\U0001f4c9" // chart decreasing
  1331. BarChart Emoji = "\U0001f4ca" // bar chart
  1332. Clipboard Emoji = "\U0001f4cb" // clipboard
  1333. Pushpin Emoji = "\U0001f4cc" // pushpin
  1334. RoundPushpin Emoji = "\U0001f4cd" // round pushpin
  1335. Paperclip Emoji = "\U0001f4ce" // paperclip
  1336. LinkedPaperclips Emoji = "\U0001f587\ufe0f" // linked paperclips
  1337. StraightRuler Emoji = "\U0001f4cf" // straight ruler
  1338. TriangularRuler Emoji = "\U0001f4d0" // triangular ruler
  1339. Scissors Emoji = "\u2702\ufe0f" // scissors
  1340. CardFileBox Emoji = "\U0001f5c3\ufe0f" // card file box
  1341. FileCabinet Emoji = "\U0001f5c4\ufe0f" // file cabinet
  1342. Wastebasket Emoji = "\U0001f5d1\ufe0f" // wastebasket
  1343. // SUBGROUP: lock
  1344. Locked Emoji = "\U0001f512" // locked
  1345. Unlocked Emoji = "\U0001f513" // unlocked
  1346. LockedWithPen Emoji = "\U0001f50f" // locked with pen
  1347. LockedWithKey Emoji = "\U0001f510" // locked with key
  1348. Key Emoji = "\U0001f511" // key
  1349. OldKey Emoji = "\U0001f5dd\ufe0f" // old key
  1350. // SUBGROUP: tool
  1351. Hammer Emoji = "\U0001f528" // hammer
  1352. Axe Emoji = "\U0001fa93" // axe
  1353. Pick Emoji = "\u26cf\ufe0f" // pick
  1354. HammerAndPick Emoji = "\u2692\ufe0f" // hammer and pick
  1355. HammerAndWrench Emoji = "\U0001f6e0\ufe0f" // hammer and wrench
  1356. Dagger Emoji = "\U0001f5e1\ufe0f" // dagger
  1357. CrossedSwords Emoji = "\u2694\ufe0f" // crossed swords
  1358. Pistol Emoji = "\U0001f52b" // pistol
  1359. Boomerang Emoji = "\U0001fa83" // boomerang
  1360. BowAndArrow Emoji = "\U0001f3f9" // bow and arrow
  1361. Shield Emoji = "\U0001f6e1\ufe0f" // shield
  1362. CarpentrySaw Emoji = "\U0001fa9a" // carpentry saw
  1363. Wrench Emoji = "\U0001f527" // wrench
  1364. Screwdriver Emoji = "\U0001fa9b" // screwdriver
  1365. NutAndBolt Emoji = "\U0001f529" // nut and bolt
  1366. Gear Emoji = "\u2699\ufe0f" // gear
  1367. Clamp Emoji = "\U0001f5dc\ufe0f" // clamp
  1368. BalanceScale Emoji = "\u2696\ufe0f" // balance scale
  1369. WhiteCane Emoji = "\U0001f9af" // white cane
  1370. Link Emoji = "\U0001f517" // link
  1371. Chains Emoji = "\u26d3\ufe0f" // chains
  1372. Hook Emoji = "\U0001fa9d" // hook
  1373. Toolbox Emoji = "\U0001f9f0" // toolbox
  1374. Magnet Emoji = "\U0001f9f2" // magnet
  1375. Ladder Emoji = "\U0001fa9c" // ladder
  1376. // SUBGROUP: science
  1377. Alembic Emoji = "\u2697\ufe0f" // alembic
  1378. TestTube Emoji = "\U0001f9ea" // test tube
  1379. PetriDish Emoji = "\U0001f9eb" // petri dish
  1380. Dna Emoji = "\U0001f9ec" // dna
  1381. Microscope Emoji = "\U0001f52c" // microscope
  1382. Telescope Emoji = "\U0001f52d" // telescope
  1383. SatelliteAntenna Emoji = "\U0001f4e1" // satellite antenna
  1384. // SUBGROUP: medical
  1385. Syringe Emoji = "\U0001f489" // syringe
  1386. DropOfBlood Emoji = "\U0001fa78" // drop of blood
  1387. Pill Emoji = "\U0001f48a" // pill
  1388. AdhesiveBandage Emoji = "\U0001fa79" // adhesive bandage
  1389. Stethoscope Emoji = "\U0001fa7a" // stethoscope
  1390. // SUBGROUP: household
  1391. Door Emoji = "\U0001f6aa" // door
  1392. Elevator Emoji = "\U0001f6d7" // elevator
  1393. Mirror Emoji = "\U0001fa9e" // mirror
  1394. Window Emoji = "\U0001fa9f" // window
  1395. Bed Emoji = "\U0001f6cf\ufe0f" // bed
  1396. CouchAndLamp Emoji = "\U0001f6cb\ufe0f" // couch and lamp
  1397. Chair Emoji = "\U0001fa91" // chair
  1398. Toilet Emoji = "\U0001f6bd" // toilet
  1399. Plunger Emoji = "\U0001faa0" // plunger
  1400. Shower Emoji = "\U0001f6bf" // shower
  1401. Bathtub Emoji = "\U0001f6c1" // bathtub
  1402. MouseTrap Emoji = "\U0001faa4" // mouse trap
  1403. Razor Emoji = "\U0001fa92" // razor
  1404. LotionBottle Emoji = "\U0001f9f4" // lotion bottle
  1405. SafetyPin Emoji = "\U0001f9f7" // safety pin
  1406. Broom Emoji = "\U0001f9f9" // broom
  1407. Basket Emoji = "\U0001f9fa" // basket
  1408. RollOfPaper Emoji = "\U0001f9fb" // roll of paper
  1409. Bucket Emoji = "\U0001faa3" // bucket
  1410. Soap Emoji = "\U0001f9fc" // soap
  1411. Toothbrush Emoji = "\U0001faa5" // toothbrush
  1412. Sponge Emoji = "\U0001f9fd" // sponge
  1413. FireExtinguisher Emoji = "\U0001f9ef" // fire extinguisher
  1414. ShoppingCart Emoji = "\U0001f6d2" // shopping cart
  1415. // SUBGROUP: other-object
  1416. Cigarette Emoji = "\U0001f6ac" // cigarette
  1417. Coffin Emoji = "\u26b0\ufe0f" // coffin
  1418. Headstone Emoji = "\U0001faa6" // headstone
  1419. FuneralUrn Emoji = "\u26b1\ufe0f" // funeral urn
  1420. Moai Emoji = "\U0001f5ff" // moai
  1421. Placard Emoji = "\U0001faa7" // placard
  1422. // GROUP: Symbols
  1423. // SUBGROUP: transport-sign
  1424. AtmSign Emoji = "\U0001f3e7" // ATM sign
  1425. LitterInBinSign Emoji = "\U0001f6ae" // litter in bin sign
  1426. PotableWater Emoji = "\U0001f6b0" // potable water
  1427. WheelchairSymbol Emoji = "\u267f" // wheelchair symbol
  1428. MenSRoom Emoji = "\U0001f6b9" // men’s room
  1429. WomenSRoom Emoji = "\U0001f6ba" // women’s room
  1430. Restroom Emoji = "\U0001f6bb" // restroom
  1431. BabySymbol Emoji = "\U0001f6bc" // baby symbol
  1432. WaterCloset Emoji = "\U0001f6be" // water closet
  1433. PassportControl Emoji = "\U0001f6c2" // passport control
  1434. Customs Emoji = "\U0001f6c3" // customs
  1435. BaggageClaim Emoji = "\U0001f6c4" // baggage claim
  1436. LeftLuggage Emoji = "\U0001f6c5" // left luggage
  1437. // SUBGROUP: warning
  1438. Warning Emoji = "\u26a0\ufe0f" // warning
  1439. ChildrenCrossing Emoji = "\U0001f6b8" // children crossing
  1440. NoEntry Emoji = "\u26d4" // no entry
  1441. Prohibited Emoji = "\U0001f6ab" // prohibited
  1442. NoBicycles Emoji = "\U0001f6b3" // no bicycles
  1443. NoSmoking Emoji = "\U0001f6ad" // no smoking
  1444. NoLittering Emoji = "\U0001f6af" // no littering
  1445. NonPotableWater Emoji = "\U0001f6b1" // non-potable water
  1446. NoPedestrians Emoji = "\U0001f6b7" // no pedestrians
  1447. NoMobilePhones Emoji = "\U0001f4f5" // no mobile phones
  1448. NoOneUnderEighteen Emoji = "\U0001f51e" // no one under eighteen
  1449. Radioactive Emoji = "\u2622\ufe0f" // radioactive
  1450. Biohazard Emoji = "\u2623\ufe0f" // biohazard
  1451. // SUBGROUP: arrow
  1452. UpArrow Emoji = "\u2b06\ufe0f" // up arrow
  1453. UpRightArrow Emoji = "\u2197\ufe0f" // up-right arrow
  1454. RightArrow Emoji = "\u27a1\ufe0f" // right arrow
  1455. DownRightArrow Emoji = "\u2198\ufe0f" // down-right arrow
  1456. DownArrow Emoji = "\u2b07\ufe0f" // down arrow
  1457. DownLeftArrow Emoji = "\u2199\ufe0f" // down-left arrow
  1458. LeftArrow Emoji = "\u2b05\ufe0f" // left arrow
  1459. UpLeftArrow Emoji = "\u2196\ufe0f" // up-left arrow
  1460. UpDownArrow Emoji = "\u2195\ufe0f" // up-down arrow
  1461. LeftRightArrow Emoji = "\u2194\ufe0f" // left-right arrow
  1462. RightArrowCurvingLeft Emoji = "\u21a9\ufe0f" // right arrow curving left
  1463. LeftArrowCurvingRight Emoji = "\u21aa\ufe0f" // left arrow curving right
  1464. RightArrowCurvingUp Emoji = "\u2934\ufe0f" // right arrow curving up
  1465. RightArrowCurvingDown Emoji = "\u2935\ufe0f" // right arrow curving down
  1466. ClockwiseVerticalArrows Emoji = "\U0001f503" // clockwise vertical arrows
  1467. CounterclockwiseArrowsButton Emoji = "\U0001f504" // counterclockwise arrows button
  1468. BackArrow Emoji = "\U0001f519" // BACK arrow
  1469. EndArrow Emoji = "\U0001f51a" // END arrow
  1470. OnArrow Emoji = "\U0001f51b" // ON! arrow
  1471. SoonArrow Emoji = "\U0001f51c" // SOON arrow
  1472. TopArrow Emoji = "\U0001f51d" // TOP arrow
  1473. // SUBGROUP: religion
  1474. PlaceOfWorship Emoji = "\U0001f6d0" // place of worship
  1475. AtomSymbol Emoji = "\u269b\ufe0f" // atom symbol
  1476. Om Emoji = "\U0001f549\ufe0f" // om
  1477. StarOfDavid Emoji = "\u2721\ufe0f" // star of David
  1478. WheelOfDharma Emoji = "\u2638\ufe0f" // wheel of dharma
  1479. YinYang Emoji = "\u262f\ufe0f" // yin yang
  1480. LatinCross Emoji = "\u271d\ufe0f" // latin cross
  1481. OrthodoxCross Emoji = "\u2626\ufe0f" // orthodox cross
  1482. StarAndCrescent Emoji = "\u262a\ufe0f" // star and crescent
  1483. PeaceSymbol Emoji = "\u262e\ufe0f" // peace symbol
  1484. Menorah Emoji = "\U0001f54e" // menorah
  1485. DottedSixPointedStar Emoji = "\U0001f52f" // dotted six-pointed star
  1486. // SUBGROUP: zodiac
  1487. Aries Emoji = "\u2648" // Aries
  1488. Taurus Emoji = "\u2649" // Taurus
  1489. Gemini Emoji = "\u264a" // Gemini
  1490. Cancer Emoji = "\u264b" // Cancer
  1491. Leo Emoji = "\u264c" // Leo
  1492. Virgo Emoji = "\u264d" // Virgo
  1493. Libra Emoji = "\u264e" // Libra
  1494. Scorpio Emoji = "\u264f" // Scorpio
  1495. Sagittarius Emoji = "\u2650" // Sagittarius
  1496. Capricorn Emoji = "\u2651" // Capricorn
  1497. Aquarius Emoji = "\u2652" // Aquarius
  1498. Pisces Emoji = "\u2653" // Pisces
  1499. Ophiuchus Emoji = "\u26ce" // Ophiuchus
  1500. // SUBGROUP: av-symbol
  1501. ShuffleTracksButton Emoji = "\U0001f500" // shuffle tracks button
  1502. RepeatButton Emoji = "\U0001f501" // repeat button
  1503. RepeatSingleButton Emoji = "\U0001f502" // repeat single button
  1504. PlayButton Emoji = "\u25b6\ufe0f" // play button
  1505. FastForwardButton Emoji = "\u23e9" // fast-forward button
  1506. NextTrackButton Emoji = "\u23ed\ufe0f" // next track button
  1507. PlayOrPauseButton Emoji = "\u23ef\ufe0f" // play or pause button
  1508. ReverseButton Emoji = "\u25c0\ufe0f" // reverse button
  1509. FastReverseButton Emoji = "\u23ea" // fast reverse button
  1510. LastTrackButton Emoji = "\u23ee\ufe0f" // last track button
  1511. UpwardsButton Emoji = "\U0001f53c" // upwards button
  1512. FastUpButton Emoji = "\u23eb" // fast up button
  1513. DownwardsButton Emoji = "\U0001f53d" // downwards button
  1514. FastDownButton Emoji = "\u23ec" // fast down button
  1515. PauseButton Emoji = "\u23f8\ufe0f" // pause button
  1516. StopButton Emoji = "\u23f9\ufe0f" // stop button
  1517. RecordButton Emoji = "\u23fa\ufe0f" // record button
  1518. EjectButton Emoji = "\u23cf\ufe0f" // eject button
  1519. Cinema Emoji = "\U0001f3a6" // cinema
  1520. DimButton Emoji = "\U0001f505" // dim button
  1521. BrightButton Emoji = "\U0001f506" // bright button
  1522. AntennaBars Emoji = "\U0001f4f6" // antenna bars
  1523. VibrationMode Emoji = "\U0001f4f3" // vibration mode
  1524. MobilePhoneOff Emoji = "\U0001f4f4" // mobile phone off
  1525. // SUBGROUP: gender
  1526. FemaleSign Emoji = "\u2640\ufe0f" // female sign
  1527. MaleSign Emoji = "\u2642\ufe0f" // male sign
  1528. TransgenderSymbol Emoji = "\u26a7\ufe0f" // transgender symbol
  1529. // SUBGROUP: math
  1530. Multiply Emoji = "\u2716\ufe0f" // multiply
  1531. Plus Emoji = "\u2795" // plus
  1532. Minus Emoji = "\u2796" // minus
  1533. Divide Emoji = "\u2797" // divide
  1534. Infinity Emoji = "\u267e\ufe0f" // infinity
  1535. // SUBGROUP: punctuation
  1536. DoubleExclamationMark Emoji = "\u203c\ufe0f" // double exclamation mark
  1537. ExclamationQuestionMark Emoji = "\u2049\ufe0f" // exclamation question mark
  1538. QuestionMark Emoji = "\u2753" // question mark
  1539. WhiteQuestionMark Emoji = "\u2754" // white question mark
  1540. WhiteExclamationMark Emoji = "\u2755" // white exclamation mark
  1541. ExclamationMark Emoji = "\u2757" // exclamation mark
  1542. WavyDash Emoji = "\u3030\ufe0f" // wavy dash
  1543. // SUBGROUP: currency
  1544. CurrencyExchange Emoji = "\U0001f4b1" // currency exchange
  1545. HeavyDollarSign Emoji = "\U0001f4b2" // heavy dollar sign
  1546. // SUBGROUP: other-symbol
  1547. MedicalSymbol Emoji = "\u2695\ufe0f" // medical symbol
  1548. RecyclingSymbol Emoji = "\u267b\ufe0f" // recycling symbol
  1549. FleurDeLis Emoji = "\u269c\ufe0f" // fleur-de-lis
  1550. TridentEmblem Emoji = "\U0001f531" // trident emblem
  1551. NameBadge Emoji = "\U0001f4db" // name badge
  1552. JapaneseSymbolForBeginner Emoji = "\U0001f530" // Japanese symbol for beginner
  1553. HollowRedCircle Emoji = "\u2b55" // hollow red circle
  1554. CheckMarkButton Emoji = "\u2705" // check mark button
  1555. CheckBoxWithCheck Emoji = "\u2611\ufe0f" // check box with check
  1556. CheckMark Emoji = "\u2714\ufe0f" // check mark
  1557. CrossMark Emoji = "\u274c" // cross mark
  1558. CrossMarkButton Emoji = "\u274e" // cross mark button
  1559. CurlyLoop Emoji = "\u27b0" // curly loop
  1560. DoubleCurlyLoop Emoji = "\u27bf" // double curly loop
  1561. PartAlternationMark Emoji = "\u303d\ufe0f" // part alternation mark
  1562. EightSpokedAsterisk Emoji = "\u2733\ufe0f" // eight-spoked asterisk
  1563. EightPointedStar Emoji = "\u2734\ufe0f" // eight-pointed star
  1564. Sparkle Emoji = "\u2747\ufe0f" // sparkle
  1565. Copyright Emoji = "\u00a9\ufe0f" // copyright
  1566. Registered Emoji = "\u00ae\ufe0f" // registered
  1567. TradeMark Emoji = "\u2122\ufe0f" // trade mark
  1568. // SUBGROUP: keycap
  1569. KeycapHash Emoji = "#\ufe0f\u20e3" // keycap: #
  1570. KeycapAsterisk Emoji = "*\ufe0f\u20e3" // keycap: *
  1571. Keycap0 Emoji = "0\ufe0f\u20e3" // keycap: 0
  1572. Keycap1 Emoji = "1\ufe0f\u20e3" // keycap: 1
  1573. Keycap2 Emoji = "2\ufe0f\u20e3" // keycap: 2
  1574. Keycap3 Emoji = "3\ufe0f\u20e3" // keycap: 3
  1575. Keycap4 Emoji = "4\ufe0f\u20e3" // keycap: 4
  1576. Keycap5 Emoji = "5\ufe0f\u20e3" // keycap: 5
  1577. Keycap6 Emoji = "6\ufe0f\u20e3" // keycap: 6
  1578. Keycap7 Emoji = "7\ufe0f\u20e3" // keycap: 7
  1579. Keycap8 Emoji = "8\ufe0f\u20e3" // keycap: 8
  1580. Keycap9 Emoji = "9\ufe0f\u20e3" // keycap: 9
  1581. Keycap10 Emoji = "\U0001f51f" // keycap: 10
  1582. // SUBGROUP: alphanum
  1583. InputLatinUppercase Emoji = "\U0001f520" // input latin uppercase
  1584. InputLatinLowercase Emoji = "\U0001f521" // input latin lowercase
  1585. InputNumbers Emoji = "\U0001f522" // input numbers
  1586. InputSymbols Emoji = "\U0001f523" // input symbols
  1587. InputLatinLetters Emoji = "\U0001f524" // input latin letters
  1588. AButtonBloodType Emoji = "\U0001f170\ufe0f" // A button (blood type)
  1589. AbButtonBloodType Emoji = "\U0001f18e" // AB button (blood type)
  1590. BButtonBloodType Emoji = "\U0001f171\ufe0f" // B button (blood type)
  1591. ClButton Emoji = "\U0001f191" // CL button
  1592. CoolButton Emoji = "\U0001f192" // COOL button
  1593. FreeButton Emoji = "\U0001f193" // FREE button
  1594. Information Emoji = "\u2139\ufe0f" // information
  1595. IdButton Emoji = "\U0001f194" // ID button
  1596. CircledM Emoji = "\u24c2\ufe0f" // circled M
  1597. NewButton Emoji = "\U0001f195" // NEW button
  1598. NgButton Emoji = "\U0001f196" // NG button
  1599. OButtonBloodType Emoji = "\U0001f17e\ufe0f" // O button (blood type)
  1600. OkButton Emoji = "\U0001f197" // OK button
  1601. PButton Emoji = "\U0001f17f\ufe0f" // P button
  1602. SosButton Emoji = "\U0001f198" // SOS button
  1603. UpButton Emoji = "\U0001f199" // UP! button
  1604. VsButton Emoji = "\U0001f19a" // VS button
  1605. JapaneseHereButton Emoji = "\U0001f201" // Japanese “here” button
  1606. JapaneseServiceChargeButton Emoji = "\U0001f202\ufe0f" // Japanese “service charge” button
  1607. JapaneseMonthlyAmountButton Emoji = "\U0001f237\ufe0f" // Japanese “monthly amount” button
  1608. JapaneseNotFreeOfChargeButton Emoji = "\U0001f236" // Japanese “not free of charge” button
  1609. JapaneseReservedButton Emoji = "\U0001f22f" // Japanese “reserved” button
  1610. JapaneseBargainButton Emoji = "\U0001f250" // Japanese “bargain” button
  1611. JapaneseDiscountButton Emoji = "\U0001f239" // Japanese “discount” button
  1612. JapaneseFreeOfChargeButton Emoji = "\U0001f21a" // Japanese “free of charge” button
  1613. JapaneseProhibitedButton Emoji = "\U0001f232" // Japanese “prohibited” button
  1614. JapaneseAcceptableButton Emoji = "\U0001f251" // Japanese “acceptable” button
  1615. JapaneseApplicationButton Emoji = "\U0001f238" // Japanese “application” button
  1616. JapanesePassingGradeButton Emoji = "\U0001f234" // Japanese “passing grade” button
  1617. JapaneseVacancyButton Emoji = "\U0001f233" // Japanese “vacancy” button
  1618. JapaneseCongratulationsButton Emoji = "\u3297\ufe0f" // Japanese “congratulations” button
  1619. JapaneseSecretButton Emoji = "\u3299\ufe0f" // Japanese “secret” button
  1620. JapaneseOpenForBusinessButton Emoji = "\U0001f23a" // Japanese “open for business” button
  1621. JapaneseNoVacancyButton Emoji = "\U0001f235" // Japanese “no vacancy” button
  1622. // SUBGROUP: geometric
  1623. RedCircle Emoji = "\U0001f534" // red circle
  1624. OrangeCircle Emoji = "\U0001f7e0" // orange circle
  1625. YellowCircle Emoji = "\U0001f7e1" // yellow circle
  1626. GreenCircle Emoji = "\U0001f7e2" // green circle
  1627. BlueCircle Emoji = "\U0001f535" // blue circle
  1628. PurpleCircle Emoji = "\U0001f7e3" // purple circle
  1629. BrownCircle Emoji = "\U0001f7e4" // brown circle
  1630. BlackCircle Emoji = "\u26ab" // black circle
  1631. WhiteCircle Emoji = "\u26aa" // white circle
  1632. RedSquare Emoji = "\U0001f7e5" // red square
  1633. OrangeSquare Emoji = "\U0001f7e7" // orange square
  1634. YellowSquare Emoji = "\U0001f7e8" // yellow square
  1635. GreenSquare Emoji = "\U0001f7e9" // green square
  1636. BlueSquare Emoji = "\U0001f7e6" // blue square
  1637. PurpleSquare Emoji = "\U0001f7ea" // purple square
  1638. BrownSquare Emoji = "\U0001f7eb" // brown square
  1639. BlackLargeSquare Emoji = "\u2b1b" // black large square
  1640. WhiteLargeSquare Emoji = "\u2b1c" // white large square
  1641. BlackMediumSquare Emoji = "\u25fc\ufe0f" // black medium square
  1642. WhiteMediumSquare Emoji = "\u25fb\ufe0f" // white medium square
  1643. BlackMediumSmallSquare Emoji = "\u25fe" // black medium-small square
  1644. WhiteMediumSmallSquare Emoji = "\u25fd" // white medium-small square
  1645. BlackSmallSquare Emoji = "\u25aa\ufe0f" // black small square
  1646. WhiteSmallSquare Emoji = "\u25ab\ufe0f" // white small square
  1647. LargeOrangeDiamond Emoji = "\U0001f536" // large orange diamond
  1648. LargeBlueDiamond Emoji = "\U0001f537" // large blue diamond
  1649. SmallOrangeDiamond Emoji = "\U0001f538" // small orange diamond
  1650. SmallBlueDiamond Emoji = "\U0001f539" // small blue diamond
  1651. RedTrianglePointedUp Emoji = "\U0001f53a" // red triangle pointed up
  1652. RedTrianglePointedDown Emoji = "\U0001f53b" // red triangle pointed down
  1653. DiamondWithADot Emoji = "\U0001f4a0" // diamond with a dot
  1654. RadioButton Emoji = "\U0001f518" // radio button
  1655. WhiteSquareButton Emoji = "\U0001f533" // white square button
  1656. BlackSquareButton Emoji = "\U0001f532" // black square button
  1657. // GROUP: Flags
  1658. // SUBGROUP: flag
  1659. ChequeredFlag Emoji = "\U0001f3c1" // chequered flag
  1660. TriangularFlag Emoji = "\U0001f6a9" // triangular flag
  1661. CrossedFlags Emoji = "\U0001f38c" // crossed flags
  1662. BlackFlag Emoji = "\U0001f3f4" // black flag
  1663. WhiteFlag Emoji = "\U0001f3f3\ufe0f" // white flag
  1664. RainbowFlag Emoji = "\U0001f3f3\ufe0f\u200d\U0001f308" // rainbow flag
  1665. TransgenderFlag Emoji = "\U0001f3f3\ufe0f\u200d\u26a7\ufe0f" // transgender flag
  1666. PirateFlag Emoji = "\U0001f3f4\u200d\u2620\ufe0f" // pirate flag
  1667. // SUBGROUP: country-flag
  1668. FlagForAscensionIsland Emoji = "\U0001f1e6\U0001f1e8" // flag: Ascension Island
  1669. FlagForAndorra Emoji = "\U0001f1e6\U0001f1e9" // flag: Andorra
  1670. FlagForUnitedArabEmirates Emoji = "\U0001f1e6\U0001f1ea" // flag: United Arab Emirates
  1671. FlagForAfghanistan Emoji = "\U0001f1e6\U0001f1eb" // flag: Afghanistan
  1672. FlagForAntiguaAndBarbuda Emoji = "\U0001f1e6\U0001f1ec" // flag: Antigua & Barbuda
  1673. FlagForAnguilla Emoji = "\U0001f1e6\U0001f1ee" // flag: Anguilla
  1674. FlagForAlbania Emoji = "\U0001f1e6\U0001f1f1" // flag: Albania
  1675. FlagForArmenia Emoji = "\U0001f1e6\U0001f1f2" // flag: Armenia
  1676. FlagForAngola Emoji = "\U0001f1e6\U0001f1f4" // flag: Angola
  1677. FlagForAntarctica Emoji = "\U0001f1e6\U0001f1f6" // flag: Antarctica
  1678. FlagForArgentina Emoji = "\U0001f1e6\U0001f1f7" // flag: Argentina
  1679. FlagForAmericanSamoa Emoji = "\U0001f1e6\U0001f1f8" // flag: American Samoa
  1680. FlagForAustria Emoji = "\U0001f1e6\U0001f1f9" // flag: Austria
  1681. FlagForAustralia Emoji = "\U0001f1e6\U0001f1fa" // flag: Australia
  1682. FlagForAruba Emoji = "\U0001f1e6\U0001f1fc" // flag: Aruba
  1683. FlagForAlandIslands Emoji = "\U0001f1e6\U0001f1fd" // flag: Åland Islands
  1684. FlagForAzerbaijan Emoji = "\U0001f1e6\U0001f1ff" // flag: Azerbaijan
  1685. FlagForBosniaAndHerzegovina Emoji = "\U0001f1e7\U0001f1e6" // flag: Bosnia & Herzegovina
  1686. FlagForBarbados Emoji = "\U0001f1e7\U0001f1e7" // flag: Barbados
  1687. FlagForBangladesh Emoji = "\U0001f1e7\U0001f1e9" // flag: Bangladesh
  1688. FlagForBelgium Emoji = "\U0001f1e7\U0001f1ea" // flag: Belgium
  1689. FlagForBurkinaFaso Emoji = "\U0001f1e7\U0001f1eb" // flag: Burkina Faso
  1690. FlagForBulgaria Emoji = "\U0001f1e7\U0001f1ec" // flag: Bulgaria
  1691. FlagForBahrain Emoji = "\U0001f1e7\U0001f1ed" // flag: Bahrain
  1692. FlagForBurundi Emoji = "\U0001f1e7\U0001f1ee" // flag: Burundi
  1693. FlagForBenin Emoji = "\U0001f1e7\U0001f1ef" // flag: Benin
  1694. FlagForStBarthelemy Emoji = "\U0001f1e7\U0001f1f1" // flag: St. Barthélemy
  1695. FlagForBermuda Emoji = "\U0001f1e7\U0001f1f2" // flag: Bermuda
  1696. FlagForBrunei Emoji = "\U0001f1e7\U0001f1f3" // flag: Brunei
  1697. FlagForBolivia Emoji = "\U0001f1e7\U0001f1f4" // flag: Bolivia
  1698. FlagForCaribbeanNetherlands Emoji = "\U0001f1e7\U0001f1f6" // flag: Caribbean Netherlands
  1699. FlagForBrazil Emoji = "\U0001f1e7\U0001f1f7" // flag: Brazil
  1700. FlagForBahamas Emoji = "\U0001f1e7\U0001f1f8" // flag: Bahamas
  1701. FlagForBhutan Emoji = "\U0001f1e7\U0001f1f9" // flag: Bhutan
  1702. FlagForBouvetIsland Emoji = "\U0001f1e7\U0001f1fb" // flag: Bouvet Island
  1703. FlagForBotswana Emoji = "\U0001f1e7\U0001f1fc" // flag: Botswana
  1704. FlagForBelarus Emoji = "\U0001f1e7\U0001f1fe" // flag: Belarus
  1705. FlagForBelize Emoji = "\U0001f1e7\U0001f1ff" // flag: Belize
  1706. FlagForCanada Emoji = "\U0001f1e8\U0001f1e6" // flag: Canada
  1707. FlagForCocosKeelingIslands Emoji = "\U0001f1e8\U0001f1e8" // flag: Cocos (Keeling) Islands
  1708. FlagForCongoKinshasa Emoji = "\U0001f1e8\U0001f1e9" // flag: Congo - Kinshasa
  1709. FlagForCentralAfricanRepublic Emoji = "\U0001f1e8\U0001f1eb" // flag: Central African Republic
  1710. FlagForCongoBrazzaville Emoji = "\U0001f1e8\U0001f1ec" // flag: Congo - Brazzaville
  1711. FlagForSwitzerland Emoji = "\U0001f1e8\U0001f1ed" // flag: Switzerland
  1712. FlagForCoteDIvoire Emoji = "\U0001f1e8\U0001f1ee" // flag: Côte d’Ivoire
  1713. FlagForCookIslands Emoji = "\U0001f1e8\U0001f1f0" // flag: Cook Islands
  1714. FlagForChile Emoji = "\U0001f1e8\U0001f1f1" // flag: Chile
  1715. FlagForCameroon Emoji = "\U0001f1e8\U0001f1f2" // flag: Cameroon
  1716. FlagForChina Emoji = "\U0001f1e8\U0001f1f3" // flag: China
  1717. FlagForColombia Emoji = "\U0001f1e8\U0001f1f4" // flag: Colombia
  1718. FlagForClippertonIsland Emoji = "\U0001f1e8\U0001f1f5" // flag: Clipperton Island
  1719. FlagForCostaRica Emoji = "\U0001f1e8\U0001f1f7" // flag: Costa Rica
  1720. FlagForCuba Emoji = "\U0001f1e8\U0001f1fa" // flag: Cuba
  1721. FlagForCapeVerde Emoji = "\U0001f1e8\U0001f1fb" // flag: Cape Verde
  1722. FlagForCuracao Emoji = "\U0001f1e8\U0001f1fc" // flag: Curaçao
  1723. FlagForChristmasIsland Emoji = "\U0001f1e8\U0001f1fd" // flag: Christmas Island
  1724. FlagForCyprus Emoji = "\U0001f1e8\U0001f1fe" // flag: Cyprus
  1725. FlagForCzechia Emoji = "\U0001f1e8\U0001f1ff" // flag: Czechia
  1726. FlagForGermany Emoji = "\U0001f1e9\U0001f1ea" // flag: Germany
  1727. FlagForDiegoGarcia Emoji = "\U0001f1e9\U0001f1ec" // flag: Diego Garcia
  1728. FlagForDjibouti Emoji = "\U0001f1e9\U0001f1ef" // flag: Djibouti
  1729. FlagForDenmark Emoji = "\U0001f1e9\U0001f1f0" // flag: Denmark
  1730. FlagForDominica Emoji = "\U0001f1e9\U0001f1f2" // flag: Dominica
  1731. FlagForDominicanRepublic Emoji = "\U0001f1e9\U0001f1f4" // flag: Dominican Republic
  1732. FlagForAlgeria Emoji = "\U0001f1e9\U0001f1ff" // flag: Algeria
  1733. FlagForCeutaAndMelilla Emoji = "\U0001f1ea\U0001f1e6" // flag: Ceuta & Melilla
  1734. FlagForEcuador Emoji = "\U0001f1ea\U0001f1e8" // flag: Ecuador
  1735. FlagForEstonia Emoji = "\U0001f1ea\U0001f1ea" // flag: Estonia
  1736. FlagForEgypt Emoji = "\U0001f1ea\U0001f1ec" // flag: Egypt
  1737. FlagForWesternSahara Emoji = "\U0001f1ea\U0001f1ed" // flag: Western Sahara
  1738. FlagForEritrea Emoji = "\U0001f1ea\U0001f1f7" // flag: Eritrea
  1739. FlagForSpain Emoji = "\U0001f1ea\U0001f1f8" // flag: Spain
  1740. FlagForEthiopia Emoji = "\U0001f1ea\U0001f1f9" // flag: Ethiopia
  1741. FlagForEuropeanUnion Emoji = "\U0001f1ea\U0001f1fa" // flag: European Union
  1742. FlagForFinland Emoji = "\U0001f1eb\U0001f1ee" // flag: Finland
  1743. FlagForFiji Emoji = "\U0001f1eb\U0001f1ef" // flag: Fiji
  1744. FlagForFalklandIslands Emoji = "\U0001f1eb\U0001f1f0" // flag: Falkland Islands
  1745. FlagForMicronesia Emoji = "\U0001f1eb\U0001f1f2" // flag: Micronesia
  1746. FlagForFaroeIslands Emoji = "\U0001f1eb\U0001f1f4" // flag: Faroe Islands
  1747. FlagForFrance Emoji = "\U0001f1eb\U0001f1f7" // flag: France
  1748. FlagForGabon Emoji = "\U0001f1ec\U0001f1e6" // flag: Gabon
  1749. FlagForUnitedKingdom Emoji = "\U0001f1ec\U0001f1e7" // flag: United Kingdom
  1750. FlagForGrenada Emoji = "\U0001f1ec\U0001f1e9" // flag: Grenada
  1751. FlagForGeorgia Emoji = "\U0001f1ec\U0001f1ea" // flag: Georgia
  1752. FlagForFrenchGuiana Emoji = "\U0001f1ec\U0001f1eb" // flag: French Guiana
  1753. FlagForGuernsey Emoji = "\U0001f1ec\U0001f1ec" // flag: Guernsey
  1754. FlagForGhana Emoji = "\U0001f1ec\U0001f1ed" // flag: Ghana
  1755. FlagForGibraltar Emoji = "\U0001f1ec\U0001f1ee" // flag: Gibraltar
  1756. FlagForGreenland Emoji = "\U0001f1ec\U0001f1f1" // flag: Greenland
  1757. FlagForGambia Emoji = "\U0001f1ec\U0001f1f2" // flag: Gambia
  1758. FlagForGuinea Emoji = "\U0001f1ec\U0001f1f3" // flag: Guinea
  1759. FlagForGuadeloupe Emoji = "\U0001f1ec\U0001f1f5" // flag: Guadeloupe
  1760. FlagForEquatorialGuinea Emoji = "\U0001f1ec\U0001f1f6" // flag: Equatorial Guinea
  1761. FlagForGreece Emoji = "\U0001f1ec\U0001f1f7" // flag: Greece
  1762. FlagForSouthGeorgiaAndSouthSandwichIslands Emoji = "\U0001f1ec\U0001f1f8" // flag: South Georgia & South Sandwich Islands
  1763. FlagForGuatemala Emoji = "\U0001f1ec\U0001f1f9" // flag: Guatemala
  1764. FlagForGuam Emoji = "\U0001f1ec\U0001f1fa" // flag: Guam
  1765. FlagForGuineaBissau Emoji = "\U0001f1ec\U0001f1fc" // flag: Guinea-Bissau
  1766. FlagForGuyana Emoji = "\U0001f1ec\U0001f1fe" // flag: Guyana
  1767. FlagForHongKongSarChina Emoji = "\U0001f1ed\U0001f1f0" // flag: Hong Kong SAR China
  1768. FlagForHeardAndMcdonaldIslands Emoji = "\U0001f1ed\U0001f1f2" // flag: Heard & McDonald Islands
  1769. FlagForHonduras Emoji = "\U0001f1ed\U0001f1f3" // flag: Honduras
  1770. FlagForCroatia Emoji = "\U0001f1ed\U0001f1f7" // flag: Croatia
  1771. FlagForHaiti Emoji = "\U0001f1ed\U0001f1f9" // flag: Haiti
  1772. FlagForHungary Emoji = "\U0001f1ed\U0001f1fa" // flag: Hungary
  1773. FlagForCanaryIslands Emoji = "\U0001f1ee\U0001f1e8" // flag: Canary Islands
  1774. FlagForIndonesia Emoji = "\U0001f1ee\U0001f1e9" // flag: Indonesia
  1775. FlagForIreland Emoji = "\U0001f1ee\U0001f1ea" // flag: Ireland
  1776. FlagForIsrael Emoji = "\U0001f1ee\U0001f1f1" // flag: Israel
  1777. FlagForIsleOfMan Emoji = "\U0001f1ee\U0001f1f2" // flag: Isle of Man
  1778. FlagForIndia Emoji = "\U0001f1ee\U0001f1f3" // flag: India
  1779. FlagForBritishIndianOceanTerritory Emoji = "\U0001f1ee\U0001f1f4" // flag: British Indian Ocean Territory
  1780. FlagForIraq Emoji = "\U0001f1ee\U0001f1f6" // flag: Iraq
  1781. FlagForIran Emoji = "\U0001f1ee\U0001f1f7" // flag: Iran
  1782. FlagForIceland Emoji = "\U0001f1ee\U0001f1f8" // flag: Iceland
  1783. FlagForItaly Emoji = "\U0001f1ee\U0001f1f9" // flag: Italy
  1784. FlagForJersey Emoji = "\U0001f1ef\U0001f1ea" // flag: Jersey
  1785. FlagForJamaica Emoji = "\U0001f1ef\U0001f1f2" // flag: Jamaica
  1786. FlagForJordan Emoji = "\U0001f1ef\U0001f1f4" // flag: Jordan
  1787. FlagForJapan Emoji = "\U0001f1ef\U0001f1f5" // flag: Japan
  1788. FlagForKenya Emoji = "\U0001f1f0\U0001f1ea" // flag: Kenya
  1789. FlagForKyrgyzstan Emoji = "\U0001f1f0\U0001f1ec" // flag: Kyrgyzstan
  1790. FlagForCambodia Emoji = "\U0001f1f0\U0001f1ed" // flag: Cambodia
  1791. FlagForKiribati Emoji = "\U0001f1f0\U0001f1ee" // flag: Kiribati
  1792. FlagForComoros Emoji = "\U0001f1f0\U0001f1f2" // flag: Comoros
  1793. FlagForStKittsAndNevis Emoji = "\U0001f1f0\U0001f1f3" // flag: St. Kitts & Nevis
  1794. FlagForNorthKorea Emoji = "\U0001f1f0\U0001f1f5" // flag: North Korea
  1795. FlagForSouthKorea Emoji = "\U0001f1f0\U0001f1f7" // flag: South Korea
  1796. FlagForKuwait Emoji = "\U0001f1f0\U0001f1fc" // flag: Kuwait
  1797. FlagForCaymanIslands Emoji = "\U0001f1f0\U0001f1fe" // flag: Cayman Islands
  1798. FlagForKazakhstan Emoji = "\U0001f1f0\U0001f1ff" // flag: Kazakhstan
  1799. FlagForLaos Emoji = "\U0001f1f1\U0001f1e6" // flag: Laos
  1800. FlagForLebanon Emoji = "\U0001f1f1\U0001f1e7" // flag: Lebanon
  1801. FlagForStLucia Emoji = "\U0001f1f1\U0001f1e8" // flag: St. Lucia
  1802. FlagForLiechtenstein Emoji = "\U0001f1f1\U0001f1ee" // flag: Liechtenstein
  1803. FlagForSriLanka Emoji = "\U0001f1f1\U0001f1f0" // flag: Sri Lanka
  1804. FlagForLiberia Emoji = "\U0001f1f1\U0001f1f7" // flag: Liberia
  1805. FlagForLesotho Emoji = "\U0001f1f1\U0001f1f8" // flag: Lesotho
  1806. FlagForLithuania Emoji = "\U0001f1f1\U0001f1f9" // flag: Lithuania
  1807. FlagForLuxembourg Emoji = "\U0001f1f1\U0001f1fa" // flag: Luxembourg
  1808. FlagForLatvia Emoji = "\U0001f1f1\U0001f1fb" // flag: Latvia
  1809. FlagForLibya Emoji = "\U0001f1f1\U0001f1fe" // flag: Libya
  1810. FlagForMorocco Emoji = "\U0001f1f2\U0001f1e6" // flag: Morocco
  1811. FlagForMonaco Emoji = "\U0001f1f2\U0001f1e8" // flag: Monaco
  1812. FlagForMoldova Emoji = "\U0001f1f2\U0001f1e9" // flag: Moldova
  1813. FlagForMontenegro Emoji = "\U0001f1f2\U0001f1ea" // flag: Montenegro
  1814. FlagForStMartin Emoji = "\U0001f1f2\U0001f1eb" // flag: St. Martin
  1815. FlagForMadagascar Emoji = "\U0001f1f2\U0001f1ec" // flag: Madagascar
  1816. FlagForMarshallIslands Emoji = "\U0001f1f2\U0001f1ed" // flag: Marshall Islands
  1817. FlagForNorthMacedonia Emoji = "\U0001f1f2\U0001f1f0" // flag: North Macedonia
  1818. FlagForMali Emoji = "\U0001f1f2\U0001f1f1" // flag: Mali
  1819. FlagForMyanmarBurma Emoji = "\U0001f1f2\U0001f1f2" // flag: Myanmar (Burma)
  1820. FlagForMongolia Emoji = "\U0001f1f2\U0001f1f3" // flag: Mongolia
  1821. FlagForMacaoSarChina Emoji = "\U0001f1f2\U0001f1f4" // flag: Macao SAR China
  1822. FlagForNorthernMarianaIslands Emoji = "\U0001f1f2\U0001f1f5" // flag: Northern Mariana Islands
  1823. FlagForMartinique Emoji = "\U0001f1f2\U0001f1f6" // flag: Martinique
  1824. FlagForMauritania Emoji = "\U0001f1f2\U0001f1f7" // flag: Mauritania
  1825. FlagForMontserrat Emoji = "\U0001f1f2\U0001f1f8" // flag: Montserrat
  1826. FlagForMalta Emoji = "\U0001f1f2\U0001f1f9" // flag: Malta
  1827. FlagForMauritius Emoji = "\U0001f1f2\U0001f1fa" // flag: Mauritius
  1828. FlagForMaldives Emoji = "\U0001f1f2\U0001f1fb" // flag: Maldives
  1829. FlagForMalawi Emoji = "\U0001f1f2\U0001f1fc" // flag: Malawi
  1830. FlagForMexico Emoji = "\U0001f1f2\U0001f1fd" // flag: Mexico
  1831. FlagForMalaysia Emoji = "\U0001f1f2\U0001f1fe" // flag: Malaysia
  1832. FlagForMozambique Emoji = "\U0001f1f2\U0001f1ff" // flag: Mozambique
  1833. FlagForNamibia Emoji = "\U0001f1f3\U0001f1e6" // flag: Namibia
  1834. FlagForNewCaledonia Emoji = "\U0001f1f3\U0001f1e8" // flag: New Caledonia
  1835. FlagForNiger Emoji = "\U0001f1f3\U0001f1ea" // flag: Niger
  1836. FlagForNorfolkIsland Emoji = "\U0001f1f3\U0001f1eb" // flag: Norfolk Island
  1837. FlagForNigeria Emoji = "\U0001f1f3\U0001f1ec" // flag: Nigeria
  1838. FlagForNicaragua Emoji = "\U0001f1f3\U0001f1ee" // flag: Nicaragua
  1839. FlagForNetherlands Emoji = "\U0001f1f3\U0001f1f1" // flag: Netherlands
  1840. FlagForNorway Emoji = "\U0001f1f3\U0001f1f4" // flag: Norway
  1841. FlagForNepal Emoji = "\U0001f1f3\U0001f1f5" // flag: Nepal
  1842. FlagForNauru Emoji = "\U0001f1f3\U0001f1f7" // flag: Nauru
  1843. FlagForNiue Emoji = "\U0001f1f3\U0001f1fa" // flag: Niue
  1844. FlagForNewZealand Emoji = "\U0001f1f3\U0001f1ff" // flag: New Zealand
  1845. FlagForOman Emoji = "\U0001f1f4\U0001f1f2" // flag: Oman
  1846. FlagForPanama Emoji = "\U0001f1f5\U0001f1e6" // flag: Panama
  1847. FlagForPeru Emoji = "\U0001f1f5\U0001f1ea" // flag: Peru
  1848. FlagForFrenchPolynesia Emoji = "\U0001f1f5\U0001f1eb" // flag: French Polynesia
  1849. FlagForPapuaNewGuinea Emoji = "\U0001f1f5\U0001f1ec" // flag: Papua New Guinea
  1850. FlagForPhilippines Emoji = "\U0001f1f5\U0001f1ed" // flag: Philippines
  1851. FlagForPakistan Emoji = "\U0001f1f5\U0001f1f0" // flag: Pakistan
  1852. FlagForPoland Emoji = "\U0001f1f5\U0001f1f1" // flag: Poland
  1853. FlagForStPierreAndMiquelon Emoji = "\U0001f1f5\U0001f1f2" // flag: St. Pierre & Miquelon
  1854. FlagForPitcairnIslands Emoji = "\U0001f1f5\U0001f1f3" // flag: Pitcairn Islands
  1855. FlagForPuertoRico Emoji = "\U0001f1f5\U0001f1f7" // flag: Puerto Rico
  1856. FlagForPalestinianTerritories Emoji = "\U0001f1f5\U0001f1f8" // flag: Palestinian Territories
  1857. FlagForPortugal Emoji = "\U0001f1f5\U0001f1f9" // flag: Portugal
  1858. FlagForPalau Emoji = "\U0001f1f5\U0001f1fc" // flag: Palau
  1859. FlagForParaguay Emoji = "\U0001f1f5\U0001f1fe" // flag: Paraguay
  1860. FlagForQatar Emoji = "\U0001f1f6\U0001f1e6" // flag: Qatar
  1861. FlagForReunion Emoji = "\U0001f1f7\U0001f1ea" // flag: Réunion
  1862. FlagForRomania Emoji = "\U0001f1f7\U0001f1f4" // flag: Romania
  1863. FlagForSerbia Emoji = "\U0001f1f7\U0001f1f8" // flag: Serbia
  1864. FlagForRussia Emoji = "\U0001f1f7\U0001f1fa" // flag: Russia
  1865. FlagForRwanda Emoji = "\U0001f1f7\U0001f1fc" // flag: Rwanda
  1866. FlagForSaudiArabia Emoji = "\U0001f1f8\U0001f1e6" // flag: Saudi Arabia
  1867. FlagForSolomonIslands Emoji = "\U0001f1f8\U0001f1e7" // flag: Solomon Islands
  1868. FlagForSeychelles Emoji = "\U0001f1f8\U0001f1e8" // flag: Seychelles
  1869. FlagForSudan Emoji = "\U0001f1f8\U0001f1e9" // flag: Sudan
  1870. FlagForSweden Emoji = "\U0001f1f8\U0001f1ea" // flag: Sweden
  1871. FlagForSingapore Emoji = "\U0001f1f8\U0001f1ec" // flag: Singapore
  1872. FlagForStHelena Emoji = "\U0001f1f8\U0001f1ed" // flag: St. Helena
  1873. FlagForSlovenia Emoji = "\U0001f1f8\U0001f1ee" // flag: Slovenia
  1874. FlagForSvalbardAndJanMayen Emoji = "\U0001f1f8\U0001f1ef" // flag: Svalbard & Jan Mayen
  1875. FlagForSlovakia Emoji = "\U0001f1f8\U0001f1f0" // flag: Slovakia
  1876. FlagForSierraLeone Emoji = "\U0001f1f8\U0001f1f1" // flag: Sierra Leone
  1877. FlagForSanMarino Emoji = "\U0001f1f8\U0001f1f2" // flag: San Marino
  1878. FlagForSenegal Emoji = "\U0001f1f8\U0001f1f3" // flag: Senegal
  1879. FlagForSomalia Emoji = "\U0001f1f8\U0001f1f4" // flag: Somalia
  1880. FlagForSuriname Emoji = "\U0001f1f8\U0001f1f7" // flag: Suriname
  1881. FlagForSouthSudan Emoji = "\U0001f1f8\U0001f1f8" // flag: South Sudan
  1882. FlagForSaoTomeAndPrincipe Emoji = "\U0001f1f8\U0001f1f9" // flag: São Tomé & Príncipe
  1883. FlagForElSalvador Emoji = "\U0001f1f8\U0001f1fb" // flag: El Salvador
  1884. FlagForSintMaarten Emoji = "\U0001f1f8\U0001f1fd" // flag: Sint Maarten
  1885. FlagForSyria Emoji = "\U0001f1f8\U0001f1fe" // flag: Syria
  1886. FlagForEswatini Emoji = "\U0001f1f8\U0001f1ff" // flag: Eswatini
  1887. FlagForTristanDaCunha Emoji = "\U0001f1f9\U0001f1e6" // flag: Tristan da Cunha
  1888. FlagForTurksAndCaicosIslands Emoji = "\U0001f1f9\U0001f1e8" // flag: Turks & Caicos Islands
  1889. FlagForChad Emoji = "\U0001f1f9\U0001f1e9" // flag: Chad
  1890. FlagForFrenchSouthernTerritories Emoji = "\U0001f1f9\U0001f1eb" // flag: French Southern Territories
  1891. FlagForTogo Emoji = "\U0001f1f9\U0001f1ec" // flag: Togo
  1892. FlagForThailand Emoji = "\U0001f1f9\U0001f1ed" // flag: Thailand
  1893. FlagForTajikistan Emoji = "\U0001f1f9\U0001f1ef" // flag: Tajikistan
  1894. FlagForTokelau Emoji = "\U0001f1f9\U0001f1f0" // flag: Tokelau
  1895. FlagForTimorLeste Emoji = "\U0001f1f9\U0001f1f1" // flag: Timor-Leste
  1896. FlagForTurkmenistan Emoji = "\U0001f1f9\U0001f1f2" // flag: Turkmenistan
  1897. FlagForTunisia Emoji = "\U0001f1f9\U0001f1f3" // flag: Tunisia
  1898. FlagForTonga Emoji = "\U0001f1f9\U0001f1f4" // flag: Tonga
  1899. FlagForTurkey Emoji = "\U0001f1f9\U0001f1f7" // flag: Turkey
  1900. FlagForTrinidadAndTobago Emoji = "\U0001f1f9\U0001f1f9" // flag: Trinidad & Tobago
  1901. FlagForTuvalu Emoji = "\U0001f1f9\U0001f1fb" // flag: Tuvalu
  1902. FlagForTaiwan Emoji = "\U0001f1f9\U0001f1fc" // flag: Taiwan
  1903. FlagForTanzania Emoji = "\U0001f1f9\U0001f1ff" // flag: Tanzania
  1904. FlagForUkraine Emoji = "\U0001f1fa\U0001f1e6" // flag: Ukraine
  1905. FlagForUganda Emoji = "\U0001f1fa\U0001f1ec" // flag: Uganda
  1906. FlagForUsOutlyingIslands Emoji = "\U0001f1fa\U0001f1f2" // flag: U.S. Outlying Islands
  1907. FlagForUnitedNations Emoji = "\U0001f1fa\U0001f1f3" // flag: United Nations
  1908. FlagForUnitedStates Emoji = "\U0001f1fa\U0001f1f8" // flag: United States
  1909. FlagForUruguay Emoji = "\U0001f1fa\U0001f1fe" // flag: Uruguay
  1910. FlagForUzbekistan Emoji = "\U0001f1fa\U0001f1ff" // flag: Uzbekistan
  1911. FlagForVaticanCity Emoji = "\U0001f1fb\U0001f1e6" // flag: Vatican City
  1912. FlagForStVincentAndGrenadines Emoji = "\U0001f1fb\U0001f1e8" // flag: St. Vincent & Grenadines
  1913. FlagForVenezuela Emoji = "\U0001f1fb\U0001f1ea" // flag: Venezuela
  1914. FlagForBritishVirginIslands Emoji = "\U0001f1fb\U0001f1ec" // flag: British Virgin Islands
  1915. FlagForUsVirginIslands Emoji = "\U0001f1fb\U0001f1ee" // flag: U.S. Virgin Islands
  1916. FlagForVietnam Emoji = "\U0001f1fb\U0001f1f3" // flag: Vietnam
  1917. FlagForVanuatu Emoji = "\U0001f1fb\U0001f1fa" // flag: Vanuatu
  1918. FlagForWallisAndFutuna Emoji = "\U0001f1fc\U0001f1eb" // flag: Wallis & Futuna
  1919. FlagForSamoa Emoji = "\U0001f1fc\U0001f1f8" // flag: Samoa
  1920. FlagForKosovo Emoji = "\U0001f1fd\U0001f1f0" // flag: Kosovo
  1921. FlagForYemen Emoji = "\U0001f1fe\U0001f1ea" // flag: Yemen
  1922. FlagForMayotte Emoji = "\U0001f1fe\U0001f1f9" // flag: Mayotte
  1923. FlagForSouthAfrica Emoji = "\U0001f1ff\U0001f1e6" // flag: South Africa
  1924. FlagForZambia Emoji = "\U0001f1ff\U0001f1f2" // flag: Zambia
  1925. FlagForZimbabwe Emoji = "\U0001f1ff\U0001f1fc" // flag: Zimbabwe
  1926. // SUBGROUP: subdivision-flag
  1927. FlagForEngland Emoji = "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f" // flag: England
  1928. FlagForScotland Emoji = "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f" // flag: Scotland
  1929. FlagForWales Emoji = "\U0001f3f4\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f" // flag: Wales
  1930. )