forked from JSKitty/Vector
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathemoji.js
More file actions
1544 lines (1493 loc) ยท 94 KB
/
emoji.js
File metadata and controls
1544 lines (1493 loc) ยท 94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/** A custom-built, probably inefficient, emoji dataset and utility set */
const arrEmojis = [
// People
{ emoji: '๐', name: 'grinning face smile happy' },
{ emoji: '๐', name: 'grinning face with big eyes happy smile excited' },
{ emoji: '๐', name: 'smile happy grin laughing' },
{ emoji: '๐', name: 'grinning face with smiling eyes happy smile pleased' },
{ emoji: '๐', name: 'grin squinting face laugh haha happy' },
{ emoji: '๐
', name: 'nervous face with sweat awkward smile anxious' },
{ emoji: '๐คฃ', name: 'rofl lmao lmfao rolling laughing floor funny' },
{ emoji: '๐', name: 'joy laugh lol tears crying happy' },
{ emoji: '๐', name: 'slightly smiling face smile content' },
{ emoji: '๐', name: 'upside down face silly playful ironic sarcastic' },
{ emoji: '๐', name: 'winking face wink flirt playful hint joke' },
{ emoji: '๐', name: 'smiling face with smiling eyes happy blush pleased' },
{ emoji: '๐', name: 'smiling face with halo angel innocent good' },
{ emoji: '๐ฅฐ', name: 'smiling face with hearts love loving adore adorable' },
{ emoji: '๐', name: 'smiling face with heart eyes love crush infatuation adore' },
{ emoji: '๐คฉ', name: 'star struck wow excited amazed impressed starstruck' },
{ emoji: '๐', name: 'face blowing a kiss kissing flirt love affection' },
{ emoji: '๐', name: 'kissing face kiss peck smooch' },
{ emoji: '๐', name: 'kissing face with closed eyes kiss affection' },
{ emoji: '๐', name: 'kissing face with smiling eyes kiss happy affection' },
{ emoji: '๐', name: 'face savoring food yum tasty delicious hungry' },
{ emoji: '๐', name: 'face with tongue silly playful teasing' },
{ emoji: '๐', name: 'winking face with tongue silly playful joke wink' },
{ emoji: '๐คช', name: 'zany face crazy silly goofy wacky' },
{ emoji: '๐', name: 'squinting face with tongue silly playful joke' },
{ emoji: '๐ค', name: 'money mouth face rich money wealthy dollar' },
{ emoji: '๐ค', name: 'hugging face hug embrace cuddle arms open' },
{ emoji: '๐คญ', name: 'face with hand over mouth oops surprise shock secret' },
{ emoji: '๐คซ', name: 'shushing face quiet shh silence secret' },
{ emoji: '๐ค', name: 'thinking face hmm wonder ponder thought' },
{ emoji: '๐ค', name: 'zipper mouth face silent quiet zip secret' },
{ emoji: '๐คจ', name: 'face with raised eyebrow suspicious doubt skeptical' },
{ emoji: '๐', name: 'neutral face meh poker deadpan' },
{ emoji: '๐', name: 'expressionless face blank deadpan unimpressed' },
{ emoji: '๐ถ', name: 'face without mouth silent quiet speechless' },
{ emoji: '๐', name: 'smirking face smug smirk flirt suggestive' },
{ emoji: '๐', name: 'unamused face unhappy unimpressed skeptical side eye' },
{ emoji: '๐', name: 'face with rolling eyes eyeroll annoyed whatever' },
{ emoji: '๐ฌ', name: 'grimacing face awkward eek nervous' },
{ emoji: '๐คฅ', name: 'lying face liar nose pinocchio fib' },
{ emoji: '๐', name: 'relieved face calm relaxed phew' },
{ emoji: '๐', name: 'pensive face sad reflective disappointed' },
{ emoji: '๐ช', name: 'sleepy face tired exhausted' },
{ emoji: '๐คค', name: 'drooling face drool hungry desire want' },
{ emoji: '๐ด', name: 'sleeping face sleep zzz tired' },
{ emoji: '๐ท', name: 'face with medical mask sick ill virus covid pandemic' },
{ emoji: '๐ค', name: 'face with thermometer sick fever ill unwell' },
{ emoji: '๐ค', name: 'face with head bandage hurt injury wounded ouch' },
{ emoji: '๐คข', name: 'nauseated face sick vomit green illness' },
{ emoji: '๐คฎ', name: 'face vomiting sick throw up barf puke' },
{ emoji: '๐คง', name: 'sneezing face achoo sick sneeze cold tissues' },
{ emoji: '๐ฅต', name: 'hot face heat sweating overheated sun burning' },
{ emoji: '๐ฅถ', name: 'cold face freezing ice winter chill frozen' },
{ emoji: '๐ฅด', name: 'woozy face dizzy drunk tipsy intoxicated' },
{ emoji: '๐ต', name: 'dizzy face confused disoriented shocked' },
{ emoji: '๐ตโ๐ซ', name: 'face with spiral eyes dizzy confused disoriented' },
{ emoji: '๐คฏ', name: 'exploding head shocked blown mind boom mindblown' },
{ emoji: '๐ค ', name: 'cowboy hat face western rodeo yeehaw' },
{ emoji: '๐ฅณ', name: 'partying face celebration party birthday festive' },
{ emoji: '๐', name: 'smiling face with sunglasses cool dude awesome chill rad' },
{ emoji: '๐ค', name: 'nerd face geek glasses smart dork' },
{ emoji: '๐ง', name: 'face with monocle sophisticated intelligent examine' },
{ emoji: '๐', name: 'confused face puzzled uncertain unsure' },
{ emoji: '๐', name: 'worried face concerned anxious nervous' },
{ emoji: '๐', name: 'slightly frowning face sad upset disappointed' },
{ emoji: 'โน๏ธ', name: 'frowning face sad upset disappointed unhappy' },
{ emoji: '๐ฎ', name: 'face with open mouth surprised shocked woah' },
{ emoji: '๐ฏ', name: 'hushed face surprised shocked stunned' },
{ emoji: '๐ฒ', name: 'astonished face shocked amazed surprised wow' },
{ emoji: '๐ณ', name: 'flushed face embarrassed blushing shocked' },
{ emoji: '๐ฅบ', name: 'pleading face puppy eyes beg begging please' },
{ emoji: '๐ฆ', name: 'frowning face with open mouth shock horror surprise' },
{ emoji: '๐ง', name: 'anguished face shocked horrified concerned' },
{ emoji: '๐จ', name: 'fearful face scared terrified afraid shock' },
{ emoji: '๐ฐ', name: 'anxious face with sweat nervous worried stressed' },
{ emoji: '๐ฅ', name: 'sad but relieved face disappointed disappointed but relieved' },
{ emoji: '๐ข', name: 'crying face sad tear tears upset' },
{ emoji: '๐ญ', name: 'loudly crying face sobbing wailing bawling tears' },
{ emoji: '๐ฑ', name: 'face screaming in fear scream horror terrified' },
{ emoji: '๐', name: 'confounded face confused frustrated upset' },
{ emoji: '๐ฃ', name: 'persevering face struggling determined persisting' },
{ emoji: '๐', name: 'disappointed face sad disappointed upset' },
{ emoji: '๐', name: 'downcast face with sweat stressed sad disappointed' },
{ emoji: '๐ฉ', name: 'weary face tired exhausted frustrated' },
{ emoji: '๐ซ', name: 'tired face exhausted frustrated annoyed' },
{ emoji: '๐ฅฑ', name: 'yawning face sleepy tired bored' },
{ emoji: '๐ค', name: 'face with steam from nose angry mad frustrated hmph' },
{ emoji: '๐ก', name: 'pouting face angry mad rage furious' },
{ emoji: '๐ ', name: 'angry face mad annoyed frustrated' },
{ emoji: '๐คฌ', name: 'face with symbols on mouth cursing swearing cussing' },
{ emoji: '๐ค', name: 'face with thermometer sick ill unwell fever' },
{ emoji: '๐ค', name: 'face with head bandage injured hurt wounded ouch' },
{ emoji: '๐', name: 'smiling face with horns devil evil mischievous naughty' },
{ emoji: '๐ฟ', name: 'angry face with horns devil demon evil mad' },
{ emoji: '๐', name: 'skull death dead danger poison' },
{ emoji: 'โ ๏ธ', name: 'skull and crossbones poison danger pirate death' },
{ emoji: '๐ฉ', name: 'pile of poo poop dung crap shit' },
{ emoji: '๐คก', name: 'clown face circus funny joke' },
{ emoji: '๐น', name: 'ogre monster creature ugly scary' },
{ emoji: '๐บ', name: 'goblin creature scary ugly monster' },
{ emoji: '๐ป', name: 'ghost spooky scary halloween boo' },
{ emoji: '๐ฝ', name: 'alien ufo et extraterrestrial space' },
{ emoji: '๐พ', name: 'alien monster space invader game retro' },
{ emoji: '๐ค', name: 'robot mechanical bot automation' },
// Gestures & Body Parts
{ emoji: '๐', name: 'waving hand hello goodbye wave hi bye' },
{ emoji: '๐ค', name: 'raised back of hand highfive stop halt' },
{ emoji: '๐๏ธ', name: 'hand with fingers splayed stop halt' },
{ emoji: 'โ', name: 'raised hand highfive stop halt' },
{ emoji: '๐', name: 'vulcan salute spock star trek prosper' },
{ emoji: '๐', name: 'ok hand okay perfect nice good' },
{ emoji: '๐ค', name: 'pinching hand small tiny little bit' },
{ emoji: 'โ๏ธ', name: 'victory hand peace v sign yeah' },
{ emoji: '๐ค', name: 'crossed fingers luck hopeful wishing' },
{ emoji: '๐ค', name: 'love you gesture ily rock music sign' },
{ emoji: '๐ค', name: 'rock on sign metal music concert' },
{ emoji: '๐', name: 'backhand index pointing down finger point below' },
{ emoji: '๐', name: 'backhand index pointing up finger point above' },
{ emoji: '๐', name: 'backhand index pointing right finger point this way' },
{ emoji: '๐', name: 'backhand index pointing left finger point that way' },
{ emoji: '๐', name: 'thumbs up like approve good positive' },
{ emoji: '๐', name: 'thumbs down dislike disapprove bad negative' },
{ emoji: 'โ', name: 'raised fist power solidarity strength' },
{ emoji: '๐', name: 'oncoming fist punch bro fist bump' },
{ emoji: '๐ค', name: 'left facing fist bump pound' },
{ emoji: '๐ค', name: 'right facing fist bump pound' },
{ emoji: '๐', name: 'clapping hands applause praise congrats' },
{ emoji: '๐', name: 'raising hands celebration hooray praise' },
{ emoji: '๐', name: 'open hands welcome jazz hands' },
{ emoji: '๐คฒ', name: 'palms up together pray please beg offering' },
{ emoji: '๐ค', name: 'handshake deal agreement meeting greet' },
{ emoji: '๐', name: 'folded hands please thank you pray prayer namaste' },
{ emoji: '๐ช', name: 'flexed biceps strong strength muscle flex power' },
{ emoji: '๐ฆพ', name: 'mechanical arm robot prosthetic bionic' },
{ emoji: '๐ฆฟ', name: 'mechanical leg robot prosthetic bionic' },
{ emoji: '๐ฆต', name: 'leg kick foot limb' },
{ emoji: '๐ฆถ', name: 'foot toe sole kick' },
{ emoji: '๐', name: 'ear hearing listen sound' },
{ emoji: '๐ฆป', name: 'ear with hearing aid deaf accessible' },
{ emoji: '๐', name: 'nose smell scent sniff' },
{ emoji: '๐ง ', name: 'brain mind intellectual smart intelligence' },
{ emoji: '๐', name: 'eyes see look watch view peek' },
{ emoji: '๐
', name: 'tongue taste lick flavor' },
{ emoji: '๐', name: 'mouth lips kiss speaking' },
{ emoji: '๐ซ', name: 'anatomical heart organ cardiac love' },
{ emoji: '๐ซ', name: 'lungs breathing organ respiratory' },
{ emoji: '๐ฆท', name: 'tooth dental dentist molar teeth' },
{ emoji: '๐ฆด', name: 'bone skeleton structure' },
{ emoji: '๐๏ธ', name: 'eye see view vision sight' },
{ emoji: '๐', name: 'middle finger fuck you rude offensive' },
{ emoji: '๐
', name: 'nail polish manicure self care beauty' },
// Food
{ emoji: '๐', name: 'green apple fruit healthy food' },
{ emoji: '๐', name: 'red apple fruit healthy food' },
{ emoji: '๐', name: 'pear fruit healthy food' },
{ emoji: '๐', name: 'tangerine orange fruit citrus' },
{ emoji: '๐', name: 'lemon fruit citrus sour' },
{ emoji: '๐', name: 'banana fruit food potassium' },
{ emoji: '๐', name: 'watermelon fruit summer food' },
{ emoji: '๐', name: 'grapes fruit food wine' },
{ emoji: '๐', name: 'strawberry fruit red berry' },
{ emoji: '๐', name: 'melon fruit food honeydew cantaloupe' },
{ emoji: '๐', name: 'cherries fruit red food berry' },
{ emoji: '๐', name: 'peach fruit food butt ass booty' },
{ emoji: '๐ฅญ', name: 'mango fruit tropical food' },
{ emoji: '๐', name: 'pineapple fruit tropical food' },
{ emoji: '๐ฅฅ', name: 'coconut fruit tropical food' },
{ emoji: '๐ฅ', name: 'kiwi fruit food green' },
{ emoji: '๐
', name: 'tomato vegetable fruit food' },
{ emoji: '๐ฅ', name: 'avocado fruit food guacamole' },
{ emoji: '๐', name: 'eggplant vegetable food aubergine dick penis cock' },
{ emoji: '๐ฅ', name: 'potato vegetable food tuber' },
{ emoji: '๐ฅ', name: 'carrot vegetable food orange' },
{ emoji: '๐ฝ', name: 'ear of corn vegetable food maize' },
{ emoji: '๐ถ๏ธ', name: 'hot pepper vegetable food spicy chili' },
{ emoji: '๐ฅ', name: 'cucumber vegetable food pickle' },
{ emoji: '๐ฅฌ', name: 'leafy green vegetable food lettuce kale spinach' },
{ emoji: '๐ฅฆ', name: 'broccoli vegetable food green' },
{ emoji: '๐ง', name: 'garlic vegetable food spice' },
{ emoji: '๐ง
', name: 'onion vegetable food spice' },
{ emoji: '๐', name: 'mushroom fungi food toadstool' },
{ emoji: '๐ฅ', name: 'peanuts food nuts legume' },
{ emoji: '๐ฐ', name: 'chestnut food nut' },
{ emoji: '๐', name: 'bread food loaf bakery' },
{ emoji: '๐ฅ', name: 'croissant food bread bakery french' },
{ emoji: '๐ฅ', name: 'baguette bread food french bakery' },
{ emoji: '๐ฅจ', name: 'pretzel food bread twisted' },
{ emoji: '๐ฅฏ', name: 'bagel food bread bakery breakfast' },
{ emoji: '๐ฅ', name: 'pancakes food breakfast hotcakes' },
{ emoji: '๐ง', name: 'waffle food breakfast dessert' },
{ emoji: '๐ง', name: 'cheese wedge food dairy' },
{ emoji: '๐ณ', name: 'cooking egg breakfast food frying pan' },
{ emoji: '๐ฒ', name: 'pot of food stew soup meal dinner' },
{ emoji: '๐ฅฃ', name: 'bowl with spoon food cereal soup breakfast' },
{ emoji: '๐ฅ', name: 'green salad food healthy lettuce vegetable' },
{ emoji: '๐ฟ', name: 'popcorn food snack movie cinema' },
{ emoji: '๐ง', name: 'butter food dairy ingredient' },
{ emoji: '๐', name: 'poultry leg food meat chicken turkey' },
{ emoji: '๐', name: 'meat on bone food meat rib' },
{ emoji: '๐ฅฉ', name: 'cut of meat food steak beef' },
{ emoji: '๐', name: 'hamburger food burger fast food beef' },
{ emoji: '๐', name: 'french fries food potato chips fast food' },
{ emoji: '๐ญ', name: 'hot dog food sausage fast food' },
{ emoji: '๐', name: 'pizza food cheese pepperoni italian' },
{ emoji: '๐ฎ', name: 'taco food mexican tortilla' },
{ emoji: '๐ฏ', name: 'burrito food mexican wrap' },
{ emoji: '๐ฅ', name: 'stuffed flatbread food gyro kebab' },
{ emoji: '๐ค', name: 'fried shrimp food seafood tempura' },
{ emoji: '๐', name: 'cooked rice food asian' },
{ emoji: '๐', name: 'curry rice food spicy asian' },
{ emoji: '๐', name: 'steaming bowl noodles ramen soup food' },
{ emoji: '๐', name: 'spaghetti food pasta noodles italian' },
{ emoji: '๐ ', name: 'roasted sweet potato food vegetable' },
{ emoji: '๐ข', name: 'oden food stick skewer asian' },
{ emoji: '๐ฃ', name: 'sushi food fish japanese rice' },
{ emoji: '๐ฑ', name: 'bento box food japanese' },
{ emoji: '๐ฅ', name: 'dumpling food asian chinese potsticker' },
{ emoji: '๐', name: 'rice cracker food japanese snack' },
{ emoji: '๐', name: 'rice ball food japanese onigiri' },
{ emoji: '๐ก', name: 'dango food dessert sweet japanese' },
{ emoji: '๐ฅฎ', name: 'moon cake food dessert festival chinese' },
{ emoji: '๐ง', name: 'shaved ice dessert sweet cold' },
{ emoji: '๐จ', name: 'ice cream food dessert sweet cold' },
{ emoji: '๐ฆ', name: 'soft ice cream food dessert sweet cold cone' },
{ emoji: '๐ฅง', name: 'pie food dessert pastry sweet' },
{ emoji: '๐ฐ', name: 'shortcake food dessert sweet cake slice birthday' },
{ emoji: '๐', name: 'birthday cake food dessert sweet celebration' },
{ emoji: '๐ฎ', name: 'custard food dessert sweet pudding flan' },
{ emoji: '๐ญ', name: 'lollipop candy sweet dessert food' },
{ emoji: '๐ฌ', name: 'candy sweet dessert food sucker' },
{ emoji: '๐ซ', name: 'chocolate bar food sweet dessert snack' },
{ emoji: '๐ฉ', name: 'doughnut food sweet dessert donut breakfast' },
{ emoji: '๐ช', name: 'cookie food sweet dessert snack chocolate' },
{ emoji: 'โ', name: 'hot beverage coffee tea drink caffeine' },
{ emoji: '๐ต', name: 'teacup without handle tea drink hot green asian' },
{ emoji: '๐ฅ', name: 'glass of milk food dairy breakfast drink' },
{ emoji: '๐ผ', name: 'baby bottle milk food drink infant formula' },
{ emoji: '๐บ', name: 'beer mug alcohol drink beverage pub' },
{ emoji: '๐ป', name: 'clinking beer mugs drink alcohol cheers toast' },
{ emoji: '๐ฅ', name: 'clinking glasses drink champagne toast celebration' },
{ emoji: '๐ท', name: 'wine glass alcohol drink beverage' },
{ emoji: '๐ฅ', name: 'tumbler glass whiskey alcohol scotch drink' },
{ emoji: '๐ธ', name: 'cocktail glass drink alcohol martini' },
{ emoji: '๐น', name: 'tropical drink cocktail alcohol beach' },
{ emoji: '๐พ', name: 'bottle with popping cork champagne wine celebration' },
{ emoji: '๐ฅค', name: 'cup with straw drink soda beverage' },
{ emoji: '๐ง', name: 'beverage box drink juice' },
{ emoji: '๐ง', name: 'mate drink tea beverage herb' },
{ emoji: '๐ง', name: 'ice cube cold freeze winter' },
{ emoji: '๐ฅข', name: 'chopsticks utensil asian chinese japanese' },
{ emoji: '๐ฝ๏ธ', name: 'fork and knife with plate dining utensil food' },
{ emoji: '๐ด', name: 'fork and knife utensil food silverware' },
{ emoji: '๐ฅ', name: 'spoon utensil silverware food' },
{ emoji: '๐ช', name: 'kitchen knife cook food weapon utensil chef' },
{ emoji: '๐ถ', name: 'sake bottle and cup alcohol drink japanese' },
{ emoji: '๐ฅซ', name: 'canned food soup tin preserved' },
{ emoji: '๐ซ', name: 'blueberries fruit berries food healthy' },
{ emoji: '๐ซ', name: 'bell pepper vegetable food' },
{ emoji: '๐ซ', name: 'flatbread food pita naan' },
{ emoji: '๐ซ', name: 'tamale food mexican wrap' },
{ emoji: '๐ซ', name: 'fondue food melted cheese pot' },
{ emoji: '๐ง', name: 'bubble tea drink boba milk tea' },
{ emoji: '๐ง', name: 'falafel food mediterranean chickpea' },
{ emoji: '๐ฅ ', name: 'fortune cookie food dessert prophecy chinese' },
{ emoji: '๐ฅก', name: 'takeout box food leftover chinese' },
{ emoji: '๐ซ', name: 'beans food legumes protein' },
{ emoji: '๐ซ', name: 'pouring liquid water drink pouring beverage' },
// Animals
{ emoji: '๐จ', name: 'koala animal australia marsupial' },
{ emoji: '๐ฆฅ', name: 'sloth animal slow lazy sleepy' },
{ emoji: '๐ฆฆ', name: 'otter animal water river sea' },
{ emoji: '๐ฆจ', name: 'skunk animal smelly stinky' },
{ emoji: '๐ฆฉ', name: 'flamingo bird pink tropical zoo' },
{ emoji: '๐ฆ', name: 'bird animal flying pet avian chirp sing' },
{ emoji: '๐ฆ', name: 'parrot bird tropical colorful pet' },
{ emoji: '๐ฆข', name: 'swan bird elegant water grace' },
{ emoji: '๐ฆ
', name: 'eagle bird predator raptor hunting' },
{ emoji: '๐ง', name: 'penguin bird arctic antarctic cold' },
{ emoji: '๐๏ธ', name: 'dove bird peace white fly' },
{ emoji: '๐ฆ', name: 'owl bird night wise nocturnal hoot' },
{ emoji: '๐ฆ', name: 'peacock bird colorful feathers' },
{ emoji: '๐ฆค', name: 'dodo bird extinct' },
{ emoji: '๐ฆ ', name: 'microbe bacteria virus germ cell' },
{ emoji: '๐ค', name: 'baby chick bird yellow young hatch' },
{ emoji: '๐ฅ', name: 'front facing baby chick bird yellow young' },
{ emoji: '๐ฃ', name: 'hatching chick bird egg hatching baby' },
{ emoji: '๐บ', name: 'wolf face animal wild dog howl' },
{ emoji: '๐ฆ', name: 'raccoon animal masked bandit' },
{ emoji: '๐', name: 'boar animal wild pig forest' },
{ emoji: '๐ด', name: 'horse face animal equestrian' },
{ emoji: '๐ฆ', name: 'unicorn face animal fantasy magic mythical' },
{ emoji: '๐ฆ', name: 'zebra animal stripes safari wildlife' },
{ emoji: '๐ฆ', name: 'giraffe animal tall spots savanna' },
{ emoji: '๐ช', name: 'camel animal desert hump' },
{ emoji: '๐ซ', name: 'two hump camel animal desert bactrian' },
{ emoji: '๐ฆ', name: 'llama animal alpaca wool' },
{ emoji: '๐ฆ', name: 'kangaroo animal australia marsupial jump' },
{ emoji: '๐', name: 'ox animal bull cow farm' },
{ emoji: '๐', name: 'water buffalo animal ox cow' },
{ emoji: '๐', name: 'cow animal bovine farm milk' },
{ emoji: '๐', name: 'sheep animal wool farm baa' },
{ emoji: '๐', name: 'goat animal farm' },
{ emoji: '๐', name: 'ram animal sheep male' },
{ emoji: '๐', name: 'pig animal farm oink hog' },
{ emoji: '๐', name: 'dog animal pet puppy canine' },
{ emoji: '๐ฉ', name: 'poodle dog animal pet canine' },
{ emoji: '๐', name: 'cat animal pet kitten feline' },
{ emoji: '๐ฑ', name: 'cat face animal pet kitten feline meow' },
{ emoji: '๐ฆ', name: 'bat animal nocturnal flying' },
{ emoji: '๐', name: 'rat animal rodent mouse' },
{ emoji: '๐', name: 'mouse animal rodent rat' },
{ emoji: '๐ฆ', name: 'hedgehog animal spiny prickly' },
{ emoji: '๐ฆก', name: 'badger animal forest' },
{ emoji: '๐ฟ๏ธ', name: 'chipmunk animal squirrel rodent' },
{ emoji: '๐พ', name: 'paw prints animal track footprints' },
{ emoji: '๐ฆ', name: 'crab animal shellfish sea ocean' },
{ emoji: '๐ฆ', name: 'lobster animal shellfish seafood' },
{ emoji: '๐ฆ', name: 'shrimp animal shellfish seafood' },
{ emoji: '๐ฆ', name: 'squid animal ocean sea tentacles' },
{ emoji: '๐', name: 'octopus animal sea ocean tentacles' },
{ emoji: '๐ฆช', name: 'oyster animal shellfish pearl sea' },
{ emoji: '๐ ', name: 'tropical fish animal aquarium' },
{ emoji: '๐', name: 'fish animal sea ocean aquarium' },
{ emoji: '๐ก', name: 'blowfish animal sea ocean pufferfish' },
{ emoji: '๐ฌ', name: 'dolphin animal sea ocean marine' },
{ emoji: '๐ณ', name: 'spouting whale animal sea ocean marine' },
{ emoji: '๐', name: 'whale animal sea ocean marine' },
{ emoji: '๐ฆ', name: 'shark animal sea ocean predator' },
{ emoji: '๐', name: 'crocodile animal reptile alligator' },
{ emoji: '๐ข', name: 'turtle animal reptile tortoise slow' },
{ emoji: '๐ฆ', name: 'lizard animal reptile' },
{ emoji: '๐', name: 'snake animal reptile serpent python' },
{ emoji: '๐', name: 'dragon animal mythical fantasy' },
{ emoji: '๐ฆ', name: 'sauropod dinosaur extinct brontosaurus' },
{ emoji: '๐ฆ', name: 'T Rex dinosaur extinct tyrannosaurus' },
{ emoji: '๐ฒ', name: 'dragon face animal mythical fantasy' },
{ emoji: '๐ฆ', name: 'scorpion animal arachnid sting' },
{ emoji: '๐ท๏ธ', name: 'spider animal arachnid insect bug' },
{ emoji: '๐ธ๏ธ', name: 'spider web spiderweb cobweb' },
{ emoji: '๐', name: 'ant insect bug tiny pest' },
{ emoji: '๐', name: 'honeybee insect bee honey buzz' },
{ emoji: '๐', name: 'lady beetle insect bug ladybug ladybird' },
{ emoji: '๐ฆ', name: 'cricket insect grasshopper bug' },
{ emoji: '๐ชณ', name: 'cockroach insect bug pest' },
{ emoji: '๐', name: 'snail animal slow shell' },
{ emoji: '๐ฆ', name: 'butterfly insect bug pretty beautiful' },
{ emoji: '๐', name: 'bug insect worm caterpillar' },
{ emoji: '๐', name: 'snail slow shell animal' },
{ emoji: '๐ฆ', name: 'mosquito insect bug pest malaria' },
{ emoji: '๐ฆฎ', name: 'guide dog service animal blind seeing eye' },
{ emoji: '๐โ๐ฆบ', name: 'service dog assistance animal support' },
{ emoji: '๐ฉ', name: 'poodle dog pet animal' },
{ emoji: '๐โโฌ', name: 'black cat feline animal pet' },
{ emoji: '๐ฆฌ', name: 'bison animal buffalo ox' },
{ emoji: '๐ฆฃ', name: 'mammoth extinct animal elephant prehistoric' },
{ emoji: '๐ฆซ', name: 'beaver animal dam rodent' },
{ emoji: '๐ป', name: 'bear animal forest wild' },
{ emoji: '๐ปโโ๏ธ', name: 'polar bear arctic white cold animal' },
{ emoji: '๐ผ', name: 'panda animal bamboo china' },
{ emoji: '๐ฆ', name: 'lion animal wild cat jungle king' },
{ emoji: '๐ฏ', name: 'tiger face animal wild cat jungle' },
{ emoji: '๐
', name: 'tiger animal wild cat jungle' },
{ emoji: '๐', name: 'leopard animal wild cat spots' },
{ emoji: '๐', name: 'horse animal race equestrian' },
{ emoji: '๐ฆง', name: 'orangutan animal primate monkey ape' },
{ emoji: '๐ฆ', name: 'gorilla animal ape monkey' },
{ emoji: '๐ฆง', name: 'orangutan ape primate monkey animal' },
{ emoji: '๐', name: 'elephant animal big tusks trunk' },
{ emoji: '๐ฆ', name: 'rhinoceros animal rhino horn' },
{ emoji: '๐ฆ', name: 'hippopotamus animal hippo water' },
{ emoji: '๐ฆ', name: 'zebra animal stripes' },
{ emoji: '๐ฆฌ', name: 'bison animal buffalo ox' },
{ emoji: '๐ฆ', name: 'llama animal alpaca wool' },
{ emoji: '๐ฆ', name: 'deer animal bambi antlers' },
{ emoji: '๐ถ', name: 'dog face animal pet canine puppy' },
{ emoji: '๐ฐ', name: 'rabbit face animal bunny pet' },
{ emoji: '๐น', name: 'hamster face animal pet rodent' },
{ emoji: '๐ฆ', name: 'fox face animal cunning' },
{ emoji: '๐ญ', name: 'mouse face animal rodent pet' },
{ emoji: '๐น', name: 'hamster face animal pet rodent' },
{ emoji: '๐ป', name: 'bear face animal wild forest' },
{ emoji: '๐ผ', name: 'panda face animal bear bamboo china' },
{ emoji: '๐จ', name: 'koala face animal australian marsupial' },
{ emoji: '๐ฏ', name: 'tiger face animal wild cat jungle' },
{ emoji: '๐ฆ', name: 'lion face animal wild cat king' },
{ emoji: '๐ฎ', name: 'cow face animal farm' },
{ emoji: '๐ท', name: 'pig face animal oink farm' },
{ emoji: '๐ธ', name: 'frog face animal toad amphibian' },
{ emoji: '๐ต', name: 'monkey face animal primate ape' },
{ emoji: '๐', name: 'see no evil monkey animal primate hides eyes' },
{ emoji: '๐', name: 'hear no evil monkey animal primate covers ears' },
{ emoji: '๐', name: 'speak no evil monkey animal primate covers mouth' },
// Items
{ emoji: '๐', name: 'backpack bag school travel hiking' },
{ emoji: '๐', name: 'glasses eyeglasses spectacles eyewear' },
{ emoji: '๐ถ๏ธ', name: 'sunglasses shades cool eyewear' },
{ emoji: '๐', name: 'closed umbrella rain weather protection' },
{ emoji: '๐งณ', name: 'luggage suitcase travel bag baggage' },
{ emoji: '๐', name: 'handbag purse bag fashion accessory' },
{ emoji: '๐', name: 'purse wallet money bag fashion' },
{ emoji: '๐', name: 'pouch bag small container clutch' },
{ emoji: '๐ฝ', name: 'running shirt athletics sportswear' },
{ emoji: '๐', name: 't shirt clothing top shirt casual' },
{ emoji: '๐', name: 'jeans pants denim trousers clothing' },
{ emoji: '๐งฃ', name: 'scarf neckwear winter accessory' },
{ emoji: '๐งค', name: 'gloves mittens winter handwear' },
{ emoji: '๐งฅ', name: 'coat jacket winter clothing outerwear' },
{ emoji: '๐งฆ', name: 'socks feet clothing footwear' },
{ emoji: '๐', name: 'dress clothing outfit fashion women' },
{ emoji: '๐', name: 'bikini swimwear swimsuit beach' },
{ emoji: '๐', name: 'kimono dress clothing traditional japanese' },
{ emoji: '๐ ', name: 'high heeled shoe pumps fashion women' },
{ emoji: '๐ก', name: 'sandal shoe footwear summer' },
{ emoji: '๐ข', name: 'boot shoe footwear winter' },
{ emoji: '๐', name: 'shoe formal leather footwear' },
{ emoji: '๐', name: 'running shoe sneakers trainers athletic' },
{ emoji: '๐', name: 'hat fashion summer accessory' },
{ emoji: '๐ฉ', name: 'top hat formal magic fancy' },
{ emoji: '๐', name: 'graduation cap academic degree university school' },
{ emoji: '๐งข', name: 'billed cap baseball hat snapback' },
{ emoji: 'โ๏ธ', name: 'rescue worker helmet safety protection' },
{ emoji: '๐ผ', name: 'briefcase business work office bag' },
{ emoji: '๐ฑ', name: 'mobile phone smartphone iphone android cell' },
{ emoji: '๐ฒ', name: 'mobile phone with arrow call incoming' },
{ emoji: 'โ๏ธ', name: 'telephone landline call phone' },
{ emoji: '๐', name: 'telephone receiver handset call phone' },
{ emoji: '๐', name: 'pager beeper old tech device' },
{ emoji: '๐ ', name: 'fax machine office old tech device' },
{ emoji: '๐', name: 'battery power energy charge electricity' },
{ emoji: '๐', name: 'electric plug power outlet electricity' },
{ emoji: '๐ก', name: 'light bulb idea electricity lamp' },
{ emoji: '๐ฆ', name: 'flashlight torch light portable' },
{ emoji: '๐ฏ๏ธ', name: 'candle light wax flame' },
{ emoji: '๐ช', name: 'diya lamp light oil hindu diwali' },
{ emoji: '๐ฃ', name: 'bomb explosive boom danger weapon' },
{ emoji: '๐งจ', name: 'firecracker explosive firework celebration' },
{ emoji: '๐ซ', name: 'pistol gun weapon water toy' },
{ emoji: '๐งฐ', name: 'toolbox tools repair fix maintenance' },
{ emoji: '๐ช', name: 'screwdriver tool repair fix' },
{ emoji: '๐ง', name: 'wrench tool repair fix mechanical' },
{ emoji: '๐จ', name: 'hammer tool construction repair' },
{ emoji: 'โ๏ธ', name: 'pick tool mining construction' },
{ emoji: '๐ช', name: 'axe tool weapon wood lumberjack' },
{ emoji: '๐ฉ', name: 'nut and bolt hardware tool fastener' },
{ emoji: 'โ๏ธ', name: 'gear cog mechanical settings' },
{ emoji: '๐งฑ', name: 'brick building construction wall' },
{ emoji: '๐ช', name: 'hook tool catch fishing hang' },
{ emoji: '๐งฒ', name: 'magnet attraction metal magnetic' },
{ emoji: '๐', name: 'link chain connection url attach' },
{ emoji: '๐งท', name: 'safety pin fastener diaper clasp' },
{ emoji: '๐งด', name: 'lotion bottle moisturizer sunscreen cosmetic' },
{ emoji: '๐งต', name: 'thread spool sewing string craft' },
{ emoji: '๐งถ', name: 'yarn ball knitting craft crochet' },
{ emoji: '๐ชก', name: 'sewing needle thread craft stitch' },
{ emoji: '๐', name: 'pushpin pin tack office' },
{ emoji: '๐', name: 'round pushpin pin location map tack' },
{ emoji: '๐', name: 'paperclip office supplies attachment' },
{ emoji: '๐๏ธ', name: 'linked paperclips office supplies attachment' },
{ emoji: 'โ๏ธ', name: 'scissors cut tool craft office' },
{ emoji: '๐งน', name: 'broom sweep clean housework' },
{ emoji: '๐งบ', name: 'basket container laundry picnic wicker' },
{ emoji: '๐งผ', name: 'soap bar wash hygiene clean' },
{ emoji: '๐ช ', name: 'plunger toilet unclog plumbing' },
{ emoji: '๐ชฃ', name: 'bucket pail container water cleaning' },
{ emoji: '๐งฝ', name: 'sponge cleaning absorbent wash' },
{ emoji: '๐ชค', name: 'mouse trap rodent pest catch' },
{ emoji: '๐', name: 'pill medicine drug health pharmacy' },
{ emoji: '๐', name: 'syringe injection vaccine medicine needle' },
{ emoji: '๐', name: 'page document paper file' },
{ emoji: '๐', name: 'page with curl document paper file' },
{ emoji: '๐', name: 'bookmark tabs markers colors organize' },
{ emoji: '๐', name: 'bar chart graph statistics presentation' },
{ emoji: '๐', name: 'chart increasing graph up trending stats' },
{ emoji: '๐', name: 'chart decreasing graph down trending stats' },
{ emoji: '๐', name: 'card index organizer contacts rolodex' },
{ emoji: '๐๏ธ', name: 'card file box storage organize office' },
{ emoji: '๐๏ธ', name: 'file cabinet storage organize office' },
{ emoji: '๐๏ธ', name: 'wastebasket trash garbage bin delete' },
{ emoji: '๐', name: 'locked security protection private' },
{ emoji: '๐', name: 'unlocked open security access' },
{ emoji: '๐', name: 'locked with pen secure private writing' },
{ emoji: '๐', name: 'locked with key secure private' },
{ emoji: '๐', name: 'key unlock password security access' },
{ emoji: '๐๏ธ', name: 'old key antique vintage security' },
{ emoji: '๐ช', name: 'chair seat furniture' },
{ emoji: '๐๏ธ', name: 'couch and lamp sofa furniture relax' },
{ emoji: '๐', name: 'person in bed sleep rest hotel' },
{ emoji: '๐๏ธ', name: 'bed furniture sleep rest' },
{ emoji: '๐ช', name: 'door entrance exit entry' },
{ emoji: '๐ช', name: 'window view building opening' },
// Hearts
{ emoji: 'โค๏ธ', name: 'red heart love romance like affection' },
{ emoji: '๐งก', name: 'orange heart love like affection' },
{ emoji: '๐', name: 'yellow heart love like affection' },
{ emoji: '๐', name: 'green heart love like affection' },
{ emoji: '๐', name: 'blue heart love like affection' },
{ emoji: '๐', name: 'purple heart love like affection' },
{ emoji: '๐ค', name: 'brown heart love like affection' },
{ emoji: '๐ค', name: 'black heart love emo goth dark' },
{ emoji: '๐ค', name: 'white heart love pure clean' },
{ emoji: '๐', name: 'two hearts love couple relationship romance' },
{ emoji: '๐', name: 'revolving hearts love relationship animated' },
{ emoji: '๐', name: 'beating heart love heartbeat pulse' },
{ emoji: '๐', name: 'growing heart love increase excited' },
{ emoji: '๐', name: 'sparkling heart love excitement sparkle' },
{ emoji: '๐', name: 'heart with arrow love cupid struck' },
{ emoji: '๐', name: 'heart with ribbon love gift valentine' },
{ emoji: '๐', name: 'heart decoration love ornament' },
{ emoji: 'โฃ๏ธ', name: 'heart exclamation love emphasis punctuation' },
{ emoji: '๐', name: 'broken heart sad heartbreak breakup' },
{ emoji: 'โค๏ธโ๐ฅ', name: 'heart on fire love passion intense' },
{ emoji: 'โค๏ธโ๐ฉน', name: 'mending heart love healing recovery' },
// Symbols
{ emoji: 'โจ', name: 'sparkles glitter shiny stars magic' },
{ emoji: '๐', name: 'glowing star shiny sparkle glitter bright' },
{ emoji: 'โญ', name: 'star rating favorite bookmark yellow' },
{ emoji: '๐ซ', name: 'dizzy star sparkle spin swirl' },
{ emoji: '๐ฅ', name: 'fire flame hot burn lit trending' },
{ emoji: 'โ๏ธ', name: 'comet space asteroid shooting star' },
{ emoji: '๐ฅ', name: 'collision boom bang explosion crash' },
{ emoji: '๐ข', name: 'anger mad symbol angry irritated rage' },
{ emoji: '๐ฌ', name: 'speech balloon message talk chat balloon' },
{ emoji: '๐๏ธโ๐จ๏ธ', name: 'eye in speech bubble witness statement' },
{ emoji: '๐ฏ๏ธ', name: 'right anger bubble rage mad angry' },
{ emoji: '๐ญ', name: 'thought balloon think dream wonder imagine' },
{ emoji: '๐จ๏ธ', name: 'left speech bubble talk chat message' },
{ emoji: '๐ฏ', name: 'dotted six pointed star jewish star of david' },
{ emoji: 'โก๏ธ', name: 'star of david jewish religion hebrew' },
{ emoji: 'โ๏ธ', name: 'latin cross christian religion christianity' },
{ emoji: 'โช๏ธ', name: 'star and crescent islam muslim religion' },
{ emoji: '๐๏ธ', name: 'om hindu religion spiritual' },
{ emoji: 'โธ๏ธ', name: 'wheel of dharma buddhist buddhism religion' },
{ emoji: 'โฎ๏ธ', name: 'peace symbol harmony pacifism' },
{ emoji: '๐', name: 'counterclockwise arrows button reload refresh' },
{ emoji: '๐', name: 'clockwise vertical arrows reload sync' },
{ emoji: '๐๏ธ', name: 'japanese "service charge" button kanji' },
{ emoji: '๐', name: 'japanese "here" button kanji' },
{ emoji: '๐น', name: 'japanese "discount" button kanji' },
{ emoji: '๐ถ', name: 'japanese "not free of charge" button kanji' },
{ emoji: '๐ฏ', name: 'japanese "reserved" button kanji' },
{ emoji: '๐', name: 'japanese "bargain" button kanji' },
{ emoji: '๐ฏ', name: 'hundred points perfect score 100 percent' },
{ emoji: '๐ ', name: 'input latin uppercase letters ABC uppercase' },
{ emoji: '๐ก', name: 'input latin lowercase letters abc lowercase' },
{ emoji: '๐ข', name: 'input numbers 123 number digits' },
{ emoji: '๐ฃ', name: 'input symbols special characters' },
{ emoji: '๐ค', name: 'input latin letters abc alphabet' },
{ emoji: '๐', name: 'AB button blood type' },
{ emoji: '๐', name: 'CL button clear delete' },
{ emoji: '๐', name: 'COOL button word cool' },
{ emoji: '๐', name: 'FREE button free no charge' },
{ emoji: '๐', name: 'ID button identification identity' },
{ emoji: '๐', name: 'NEW button new item badge' },
{ emoji: '๐', name: 'NG button not good no good' },
{ emoji: '๐', name: 'OK button okay good agree' },
{ emoji: '๐', name: 'SOS button emergency help sos' },
{ emoji: '๐', name: 'UP! button up level increase' },
{ emoji: '๐', name: 'VS button versus competition against' },
{ emoji: '๐', name: 'Japanese "here" button kanji' },
{ emoji: '๐๏ธ', name: 'Japanese "service charge" button kanji' },
{ emoji: '๐ท๏ธ', name: 'Japanese "monthly amount" button kanji' },
{ emoji: '๐ถ', name: 'Japanese "not free of charge" button kanji' },
{ emoji: '๐ฏ', name: 'Japanese "reserved" button kanji' },
{ emoji: '๐ณ', name: 'Japanese "vacancy" button kanji' },
{ emoji: '๐ด', name: 'Japanese "passing grade" button kanji' },
{ emoji: '๐ต', name: 'Japanese "no vacancy" button kanji' },
{ emoji: '๐น', name: 'Japanese "discount" button kanji' },
{ emoji: '๐บ', name: 'Japanese "open for business" button kanji' },
{ emoji: '๐', name: 'Japanese "bargain" button kanji' },
{ emoji: '๐', name: 'Japanese "acceptable" button kanji' },
{ emoji: '๐
ฐ๏ธ', name: 'A button blood type letter' },
{ emoji: '๐
ฑ๏ธ', name: 'B button blood type letter' },
{ emoji: '๐
พ๏ธ', name: 'O button blood type letter' },
{ emoji: '๐
ฟ๏ธ', name: 'P button parking' },
{ emoji: '๐', name: 'SOS button emergency help mayday' },
{ emoji: 'โ ๏ธ', name: 'warning caution alert danger triangle' },
{ emoji: 'โ', name: 'no entry prohibited forbidden' },
{ emoji: 'โจ๏ธ', name: 'hot springs steam bathing onsen' },
{ emoji: 'โป๏ธ', name: 'recycling symbol recycle environment green' },
{ emoji: 'โ๏ธ', name: 'medical symbol staff rod asklepios healthcare' },
{ emoji: '๐ง', name: 'ATM sign money bank cash withdrawal' },
{ emoji: '๐ฎ', name: 'litter in bin sign dispose trash garbage' },
{ emoji: '๐ฐ', name: 'potable water sign drinking drinkable' },
{ emoji: '๐น', name: 'male room sign restroom bathroom toilet' },
{ emoji: '๐บ', name: 'female room sign restroom bathroom toilet' },
{ emoji: '๐ป', name: 'restroom sign toilet bathroom wc' },
{ emoji: '๐ผ', name: 'baby symbol child infant' },
{ emoji: '๐พ', name: 'water closet toilet bathroom restroom wc' },
{ emoji: '๐', name: 'passport control border customs immigration' },
{ emoji: '๐', name: 'customs border declaration baggage' },
{ emoji: '๐', name: 'baggage claim luggage suitcase airport' },
{ emoji: '๐
', name: 'left luggage storage locker' },
{ emoji: '๐ธ', name: 'children crossing school zone warning' },
{ emoji: 'โ', name: 'no entry forbidden prohibited' },
{ emoji: '๐ซ', name: 'prohibited no forbidden ban' },
{ emoji: '๐ณ', name: 'no bicycles forbidden prohibited' },
{ emoji: '๐ญ', name: 'no smoking forbidden prohibited cigarette' },
{ emoji: '๐ฏ', name: 'no littering forbidden prohibited trash' },
{ emoji: '๐ฑ', name: 'non potable water not drinkable' },
{ emoji: '๐ท', name: 'no pedestrians forbidden prohibited walking' },
{ emoji: '๐', name: 'no one under eighteen 18 adult only xxx' },
{ emoji: 'โข๏ธ', name: 'radioactive danger nuclear warning' },
{ emoji: 'โฃ๏ธ', name: 'biohazard danger warning biological' },
{ emoji: 'โฌ๏ธ', name: 'up arrow direction pointer' },
{ emoji: 'โ๏ธ', name: 'up right arrow direction pointer' },
{ emoji: 'โก๏ธ', name: 'right arrow direction pointer' },
{ emoji: 'โ๏ธ', name: 'down right arrow direction pointer' },
{ emoji: 'โฌ๏ธ', name: 'down arrow direction pointer' },
{ emoji: 'โ๏ธ', name: 'down left arrow direction pointer' },
{ emoji: 'โฌ
๏ธ', name: 'left arrow direction pointer' },
{ emoji: 'โ๏ธ', name: 'up left arrow direction pointer' },
{ emoji: 'โ๏ธ', name: 'up down arrow direction vertical' },
{ emoji: 'โ๏ธ', name: 'left right arrow direction horizontal' },
{ emoji: 'โฉ๏ธ', name: 'right arrow curving left return back' },
{ emoji: 'โช๏ธ', name: 'left arrow curving right forward continue' },
{ emoji: 'โคด๏ธ', name: 'right arrow curving up direction' },
{ emoji: 'โคต๏ธ', name: 'right arrow curving down direction' },
{ emoji: '๐', name: 'clockwise vertical arrows refresh reload' },
{ emoji: '๐', name: 'counterclockwise arrows button refresh reload' },
{ emoji: '๐', name: 'back arrow previous return' },
{ emoji: '๐', name: 'end arrow finish stop' },
{ emoji: '๐', name: 'on! arrow continue go' },
{ emoji: '๐', name: 'soon arrow future shortly' },
{ emoji: '๐', name: 'top arrow up high best highest' },
// Weather and Nature
{ emoji: 'โ๏ธ', name: 'sun sunny weather hot bright sunshine' },
{ emoji: '๐ค๏ธ', name: 'sun behind small cloud partly cloudy weather' },
{ emoji: 'โ
', name: 'sun behind cloud partly cloudy weather' },
{ emoji: '๐ฅ๏ธ', name: 'sun behind large cloud cloudy weather' },
{ emoji: 'โ๏ธ', name: 'cloud cloudy weather overcast' },
{ emoji: '๐ฆ๏ธ', name: 'sun behind rain cloud rainy weather' },
{ emoji: '๐ง๏ธ', name: 'cloud with rain rainy weather wet' },
{ emoji: 'โ๏ธ', name: 'cloud with lightning and rain storm thunder weather' },
{ emoji: '๐ฉ๏ธ', name: 'cloud with lightning storm thunder weather' },
{ emoji: '๐จ๏ธ', name: 'cloud with snow snowfall cold weather' },
{ emoji: 'โ๏ธ', name: 'snowflake snow cold weather winter' },
{ emoji: 'โ๏ธ', name: 'snowman snow winter cold frosty' },
{ emoji: 'โ', name: 'snowman without snow frost winter cold' },
{ emoji: '๐ฌ๏ธ', name: 'wind face blowing breeze air' },
{ emoji: '๐จ', name: 'dashing away wind dash running fast' },
{ emoji: '๐ช๏ธ', name: 'tornado cyclone twister storm weather' },
{ emoji: '๐ซ๏ธ', name: 'fog mist weather cloud visibility' },
{ emoji: 'โ', name: 'umbrella with rain drops wet shower weather' },
{ emoji: 'โก', name: 'high voltage lightning thunder electricity danger' },
{ emoji: 'โ๏ธ', name: 'snowflake winter cold snow crystal' },
{ emoji: 'โ๏ธ', name: 'comet space shooting star asteroid' },
{ emoji: '๐ง', name: 'droplet water drip sweat tear' },
{ emoji: '๐ฆ', name: 'droplet water drip sweat tear splash' },
{ emoji: '๐', name: 'water wave sea ocean tsunami surf' },
{ emoji: '๐ซ๏ธ', name: 'fog foggy mist haze weather' },
{ emoji: '๐', name: 'rainbow pride lgbtq colorful weather' },
{ emoji: 'โฑ๏ธ', name: 'umbrella on ground beach sunny shade' },
{ emoji: 'โ๏ธ', name: 'umbrella rain shelter protection' },
{ emoji: 'โ', name: 'umbrella with rain drops wet weather storm' },
{ emoji: 'โ', name: 'snowman without snow winter cold' },
{ emoji: '๐', name: 'sun with face summer hot bright' },
{ emoji: '๐', name: 'full moon with face night sky' },
{ emoji: '๐', name: 'first quarter moon with face night sky' },
{ emoji: '๐', name: 'last quarter moon with face night sky' },
{ emoji: '๐', name: 'new moon with face night sky dark' },
{ emoji: '๐', name: 'full moon night sky astronomy' },
{ emoji: '๐', name: 'waning gibbous moon night sky astronomy' },
{ emoji: '๐', name: 'last quarter moon night sky astronomy' },
{ emoji: '๐', name: 'waning crescent moon night sky astronomy' },
{ emoji: '๐', name: 'new moon night sky astronomy dark' },
{ emoji: '๐', name: 'waxing crescent moon night sky astronomy' },
{ emoji: '๐', name: 'first quarter moon night sky astronomy' },
{ emoji: '๐', name: 'waxing gibbous moon night sky astronomy' },
{ emoji: '๐', name: 'crescent moon night sky islam' },
{ emoji: '๐', name: 'globe showing Americas earth world planet USA' },
{ emoji: '๐', name: 'globe showing Europe Africa earth world planet Europe Africa' },
{ emoji: '๐', name: 'globe showing Asia Australia earth world planet Asia Australia' },
{ emoji: '๐', name: 'globe with meridians earth world planet international' },
{ emoji: '๐ช', name: 'ringed planet saturn space astronomy' },
{ emoji: '๐', name: 'volcano mountain eruption lava geology' },
{ emoji: '๐', name: 'sunrise over mountains morning dawn daybreak' },
{ emoji: '๐
', name: 'sunrise morning dawn daybreak sun' },
{ emoji: '๐', name: 'cityscape at dusk sunset city evening' },
{ emoji: '๐', name: 'sunset city dusk evening' },
{ emoji: '๐', name: 'bridge at night evening dark' },
{ emoji: '๐', name: 'milky way galaxy stars space night' },
{ emoji: '๐ ', name: 'shooting star wish falling star space' },
{ emoji: '๐', name: 'foggy weather visibility fog mist' },
{ emoji: '๐', name: 'night with stars evening nighttime starry' },
{ emoji: '๐๏ธ', name: 'national park nature mountain forest' },
{ emoji: '๐๏ธ', name: 'desert arid hot sand dry' },
{ emoji: '๐๏ธ', name: 'desert island beach isolated coast' },
{ emoji: '๐๏ธ', name: 'beach with umbrella sand sea vacation' },
{ emoji: '๐ป', name: 'mount fuji mountain japan volcano' },
{ emoji: 'โฐ๏ธ', name: 'mountain highland peak summit' },
{ emoji: '๐๏ธ', name: 'snow capped mountain alpine peak' },
{ emoji: '๐๏ธ', name: 'camping outdoors tent adventure' },
{ emoji: '๐๏ธ', name: 'cityscape buildings skyscrapers metropolis' },
{ emoji: '๐ชจ', name: 'rock stone boulder mountain' },
{ emoji: '๐ชต', name: 'wood log timber lumber tree' },
{ emoji: '๐ธ', name: 'flying saucer UFO alien space' },
// Time and Calendar
{ emoji: '๐
', name: 'calendar date time schedule appointment' },
{ emoji: '๐', name: 'tear off calendar date time schedule' },
{ emoji: '๐๏ธ', name: 'spiral calendar date time schedule planner' },
{ emoji: 'โฐ', name: 'alarm clock time wake up morning' },
{ emoji: 'โฑ๏ธ', name: 'stopwatch time timer race' },
{ emoji: 'โฒ๏ธ', name: 'timer clock time countdown' },
{ emoji: '๐ฐ๏ธ', name: 'mantelpiece clock time antique vintage' },
{ emoji: 'โ', name: 'hourglass done time sand timer complete' },
{ emoji: 'โณ', name: 'hourglass not done time sand timer waiting' },
{ emoji: '๐', name: 'twelve oclock time noon midnight 12' },
{ emoji: '๐ง', name: 'twelve thirty time 12:30 half past twelve' },
{ emoji: '๐', name: 'one oclock time 1 hour' },
{ emoji: '๐', name: 'one thirty time 1:30 half past one' },
{ emoji: '๐', name: 'two oclock time 2 hour' },
{ emoji: '๐', name: 'two thirty time 2:30 half past two' },
{ emoji: '๐', name: 'three oclock time 3 hour' },
{ emoji: '๐', name: 'three thirty time 3:30 half past three' },
{ emoji: '๐', name: 'four oclock time 4 hour' },
{ emoji: '๐', name: 'four thirty time 4:30 half past four' },
{ emoji: '๐', name: 'five oclock time 5 hour' },
{ emoji: '๐ ', name: 'five thirty time 5:30 half past five' },
{ emoji: '๐', name: 'six oclock time 6 hour' },
{ emoji: '๐ก', name: 'six thirty time 6:30 half past six' },
{ emoji: '๐', name: 'seven oclock time 7 hour' },
{ emoji: '๐ข', name: 'seven thirty time 7:30 half past seven' },
{ emoji: '๐', name: 'eight oclock time 8 hour' },
{ emoji: '๐ฃ', name: 'eight thirty time 8:30 half past eight' },
{ emoji: '๐', name: 'nine oclock time 9 hour' },
{ emoji: '๐ค', name: 'nine thirty time 9:30 half past nine' },
{ emoji: '๐', name: 'ten oclock time 10 hour' },
{ emoji: '๐ฅ', name: 'ten thirty time 10:30 half past ten' },
{ emoji: '๐', name: 'eleven oclock time 11 hour' },
{ emoji: '๐ฆ', name: 'eleven thirty time 11:30 half past eleven' },
// Transportation
{ emoji: '๐', name: 'car automobile vehicle drive transport' },
{ emoji: '๐', name: 'taxi cab rideshare vehicle transportation' },
{ emoji: '๐', name: 'sport utility vehicle suv car jeep' },
{ emoji: '๐', name: 'bus vehicle transportation public' },
{ emoji: '๐', name: 'trolleybus vehicle transportation public' },
{ emoji: '๐๏ธ', name: 'racing car fast formula1 f1 speed' },
{ emoji: '๐', name: 'police car law enforcement vehicle cops' },
{ emoji: '๐', name: 'ambulance medical emergency vehicle 911' },
{ emoji: '๐', name: 'fire engine truck firefighter emergency' },
{ emoji: '๐', name: 'minibus vehicle transportation shuttle' },
{ emoji: '๐', name: 'delivery truck vehicle shipping transport' },
{ emoji: '๐', name: 'articulated lorry truck vehicle transport' },
{ emoji: '๐', name: 'tractor vehicle farm agriculture' },
{ emoji: '๐ป', name: 'pickup truck vehicle transportation' },
{ emoji: '๐๏ธ', name: 'motorcycle bike vehicle racing' },
{ emoji: '๐ต', name: 'motor scooter vehicle vespa transportation' },
{ emoji: '๐บ', name: 'auto rickshaw vehicle tuk tuk transportation' },
{ emoji: '๐ฒ', name: 'bicycle bike cycle vehicle transportation' },
{ emoji: '๐ด', name: 'kick scooter vehicle transportation' },
{ emoji: '๐', name: 'bus stop transportation public' },
{ emoji: '๐ฃ๏ธ', name: 'motorway highway road freeway' },
{ emoji: '๐ค๏ธ', name: 'railway track train transportation' },
{ emoji: 'โฝ', name: 'fuel pump gas petroleum gasoline' },
{ emoji: '๐จ', name: 'police car light emergency siren' },
{ emoji: '๐ฅ', name: 'horizontal traffic light stoplight' },
{ emoji: '๐ฆ', name: 'vertical traffic light stoplight' },
{ emoji: '๐ง', name: 'construction sign warning caution barrier' },
{ emoji: 'โ', name: 'anchor ship boat marina harbor' },
{ emoji: 'โต', name: 'sailboat boat yacht sailing' },
{ emoji: '๐ค', name: 'speedboat boat ship' },
{ emoji: '๐ข', name: 'ship boat cruise ferry' },
{ emoji: 'โ๏ธ', name: 'airplane flight plane flying aviation air travel jet' },
{ emoji: '๐ฉ๏ธ', name: 'small airplane flight aviation' },
{ emoji: '๐ซ', name: 'airplane departure takeoff flight flying' },
{ emoji: '๐ฌ', name: 'airplane arrival landing flight flying' },
{ emoji: '๐ช', name: 'parachute skydive flying' },
{ emoji: '๐บ', name: 'seat chair sitting' },
{ emoji: '๐', name: 'helicopter aircraft chopper flying' },
{ emoji: '๐', name: 'suspension railway transportation' },
{ emoji: '๐ ', name: 'mountain cableway transportation' },
{ emoji: '๐ก', name: 'aerial tramway transportation' },
{ emoji: '๐', name: 'rocket spaceship launch space blast rocketship' },
{ emoji: '๐ธ', name: 'flying saucer ufo alien space' },
{ emoji: '๐', name: 'station train subway metro transportation' },
{ emoji: '๐', name: 'locomotive train steam engine transportation railway' },
{ emoji: '๐', name: 'train transportation vehicle railway' },
{ emoji: '๐', name: 'metro subway train transportation' },
{ emoji: '๐', name: 'tram transportation vehicle' },
{ emoji: '๐', name: 'monorail transportation train' },
{ emoji: '๐', name: 'mountain railway transportation train' },
{ emoji: '๐', name: 'tram car transportation vehicle' },
{ emoji: '๐', name: 'railway car transportation train' },
{ emoji: '๐', name: 'high speed train bullet transportation' },
{ emoji: '๐
', name: 'bullet train high speed bullet transportation' },
{ emoji: '๐', name: 'light rail transportation train' },
{ emoji: '๐', name: 'stop sign octagon halt traffic' },
{ emoji: '๐ง', name: 'construction sign warning caution' },
{ emoji: 'โ ๏ธ', name: 'warning sign caution alert danger' },
// Sports and Activities
{ emoji: 'โฝ', name: 'soccer ball football sport sports game' },
{ emoji: '๐', name: 'basketball ball sport hoops nba' },
{ emoji: '๐', name: 'american football ball sport nfl game' },
{ emoji: 'โพ', name: 'baseball ball sport mlb game' },
{ emoji: '๐ฅ', name: 'softball ball sport game' },
{ emoji: '๐พ', name: 'tennis ball sport game racket' },
{ emoji: '๐', name: 'volleyball ball sport game' },
{ emoji: '๐', name: 'rugby football ball sport game' },
{ emoji: '๐ฅ', name: 'flying disc frisbee ultimate sport' },
{ emoji: '๐ฑ', name: 'pool 8 ball billiards snooker game' },
{ emoji: '๐ช', name: 'yo yo toy play spin string' },
{ emoji: '๐', name: 'ping pong table tennis paddle ball sport' },
{ emoji: '๐ธ', name: 'badminton racket shuttlecock sport' },
{ emoji: '๐', name: 'ice hockey stick and puck sport nhl game' },
{ emoji: '๐', name: 'field hockey stick and ball sport game' },
{ emoji: '๐ฅ', name: 'lacrosse stick and ball sport' },
{ emoji: '๐', name: 'cricket game bat ball sport' },
{ emoji: '๐ฅ
', name: 'goal net hockey soccer football sport' },
{ emoji: 'โณ', name: 'flag in hole golf sport' },
{ emoji: 'โธ๏ธ', name: 'ice skate skating winter sport' },
{ emoji: '๐ฃ', name: 'fishing pole rod fish catch' },
{ emoji: '๐คฟ', name: 'diving mask snorkel underwater scuba' },
{ emoji: '๐ฝ', name: 'running shirt athletics jersey' },
{ emoji: '๐ฟ', name: 'skis skiing winter snow sport' },
{ emoji: '๐ท', name: 'sleigh snowsled winter snow sport' },
{ emoji: '๐ฅ', name: 'curling stone winter sport olympics' },
{ emoji: '๐ฏ', name: 'direct hit bullseye target darts game' },
{ emoji: '๐ช', name: 'magic wand wizard magic magician' },
{ emoji: '๐ช', name: 'boomerang throw return australian' },
{ emoji: '๐น', name: 'bow and arrow archery sport shooting' },
{ emoji: '๐ฃ', name: 'fishing pole rod fish catch sport' },
{ emoji: '๐คฟ', name: 'diving mask snorkel scuba underwater' },
{ emoji: '๐ฅ', name: 'boxing glove sport fighting punch' },
{ emoji: '๐ฅ', name: 'martial arts uniform karate judo sport' },
{ emoji: '๐ฎ', name: 'video game controller play gaming gaming' },
{ emoji: '๐ฒ', name: 'game die dice gambling random' },
{ emoji: 'โ๏ธ', name: 'chess pawn board game strategy' },
{ emoji: '๐ญ', name: 'performing arts theater drama masks' },
{ emoji: '๐จ', name: 'artist palette art painting drawing' },
{ emoji: '๐ฌ', name: 'clapper board movie film director' },
{ emoji: '๐ค', name: 'microphone sing karaoke music' },
{ emoji: '๐ง', name: 'headphone music listen audio' },
{ emoji: '๐ผ', name: 'musical score notes sheet music' },
{ emoji: '๐น', name: 'musical keyboard piano organ instrument' },
{ emoji: '๐ช', name: 'banjo instrument music string' },
{ emoji: '๐ธ', name: 'guitar instrument music rock string' },
{ emoji: '๐ป', name: 'violin instrument music string' },
{ emoji: '๐บ', name: 'trumpet instrument music brass' },
{ emoji: '๐ท', name: 'saxophone instrument music jazz' },
{ emoji: '๐ฅ', name: 'drum instrument music percussion' },
{ emoji: '๐ช', name: 'long drum instrument music rhythm' },
{ emoji: '๐ต', name: 'musical note music tone sound' },
{ emoji: '๐ถ', name: 'musical notes music melody sound' },
{ emoji: '๐๏ธ', name: 'person lifting weights gym exercise strength' },
{ emoji: '๐', name: 'swimmer swimming water pool sport' },
{ emoji: '๐คฝ', name: 'person playing water polo swimming sport' },
{ emoji: '๐คพ', name: 'person playing handball sport ball' },
{ emoji: '๐๏ธ', name: 'person golfing golfer sport' },
{ emoji: '๐ง', name: 'person in lotus position yoga meditation zen' },
{ emoji: '๐ด', name: 'person biking cyclist bicycle sport' },
{ emoji: '๐ง', name: 'person climbing rock climber sport' },
{ emoji: '๐คบ', name: 'person fencing sword fight sport' },
{ emoji: '๐', name: 'horse racing jockey derby sport' },
{ emoji: '๐', name: 'person surfing surfer wave sport' },
{ emoji: '๐ฃ', name: 'person rowing boat row sport' },
{ emoji: '๐ช', name: 'parachute skydiving flying extreme' },
{ emoji: '๐', name: 'snowboarder snowboarding winter sport' },
{ emoji: 'โท๏ธ', name: 'skier skiing winter sport' },
{ emoji: '๐', name: 'trophy prize winning champion award' },
{ emoji: '๐ฅ', name: 'gold medal first champion award' },
{ emoji: '๐ฅ', name: 'silver medal second place award' },
{ emoji: '๐ฅ', name: 'bronze medal third place award' },
{ emoji: '๐
', name: 'sports medal award prize medal' },
{ emoji: '๐๏ธ', name: 'military medal award honor decoration' },
{ emoji: '๐ต๏ธ', name: 'rosette flower decoration' },
{ emoji: '๐๏ธ', name: 'reminder ribbon cause awareness' },
{ emoji: '๐ซ', name: 'ticket admission pass event' },
// Buildings and Places
{ emoji: '๐ ', name: 'house building home residence' },
{ emoji: '๐ก', name: 'house with garden home yard lawn' },
{ emoji: '๐ข', name: 'office building work corporate business' },
{ emoji: '๐ฃ', name: 'Japanese post office mail postal' },
{ emoji: '๐ค', name: 'post office mail postal' },
{ emoji: '๐ฅ', name: 'hospital health emergency medical sick' },
{ emoji: '๐ฆ', name: 'bank money financial building' },
{ emoji: '๐จ', name: 'hotel building lodging accommodation' },
{ emoji: '๐ฉ', name: 'love hotel heart romance building' },
{ emoji: '๐ช', name: 'convenience store building 7 eleven' },
{ emoji: '๐ซ', name: 'school building education student' },
{ emoji: '๐ฌ', name: 'department store building shopping mall' },
{ emoji: '๐ญ', name: 'factory building industrial manufacturing' },
{ emoji: '๐ฏ', name: 'japanese castle building fortress palace' },
{ emoji: '๐ฐ', name: 'castle building fortress palace medieval' },
{ emoji: '๐', name: 'wedding chapel church marriage love' },
{ emoji: '๐ผ', name: 'tokyo tower landmark Japan' },
{ emoji: '๐ฝ', name: 'Statue of Liberty USA America New York' },
{ emoji: 'โช', name: 'church building christian religion cross' },
{ emoji: '๐', name: 'hindu temple building religion jagannath' },
{ emoji: '๐', name: 'synagogue building judaism jewish religion' },
{ emoji: 'โฉ๏ธ', name: 'shinto shrine building religion Japanese' },
{ emoji: 'โฒ', name: 'fountain water park decoration' },
{ emoji: 'โบ', name: 'tent camping outdoors festival' },
{ emoji: '๐', name: 'foggy cityscape mist visibility' },
{ emoji: '๐', name: 'night with stars evening city dark starry' },
{ emoji: '๐๏ธ', name: 'cityscape buildings urban skyscrapers' },
{ emoji: '๐', name: 'sunrise over mountains morning dawn' },
{ emoji: '๐
', name: 'sunrise morning dawn daybreak' },
{ emoji: '๐', name: 'cityscape at dusk evening sunset' },
{ emoji: '๐', name: 'sunset evening dusk sun' },
{ emoji: '๐', name: 'bridge at night evening dark' },
{ emoji: '๐ ', name: 'carousel horse amusement park ride' },
{ emoji: '๐ก', name: 'ferris wheel amusement park carnival' },
{ emoji: '๐ข', name: 'roller coaster amusement park carnival ride' },
{ emoji: '๐', name: 'locomotive train steam engine railroad' },
{ emoji: '๐', name: 'barber pole haircut salon' },
{ emoji: '๐ช', name: 'circus tent festival carnival big top' },
// Music and Arts
{ emoji: '๐ต', name: 'musical note music sound tone melody' },
{ emoji: '๐ถ', name: 'musical notes music melody sound sing' },
{ emoji: '๐๏ธ', name: 'studio microphone recording podcast audio' },
{ emoji: '๐๏ธ', name: 'level slider control audio mixing' },
{ emoji: '๐๏ธ', name: 'control knobs dial mix audio adjustment' },
{ emoji: '๐ค', name: 'microphone sing karaoke voice audio' },
{ emoji: '๐ง', name: 'headphone music listen audio earphones' },
{ emoji: '๐ป', name: 'radio audio broadcast tuner music' },
{ emoji: '๐ท', name: 'saxophone instrument jazz blues music' },
{ emoji: '๐ช', name: 'accordion instrument music squeeze box' },
{ emoji: '๐ธ', name: 'guitar instrument music rock string' },
{ emoji: '๐น', name: 'musical keyboard piano organ instrument keys' },
{ emoji: '๐บ', name: 'trumpet instrument music brass' },
{ emoji: '๐ป', name: 'violin instrument music string orchestra' },
{ emoji: '๐ฅ', name: 'drum percussion instrument music beat' },
{ emoji: '๐ช', name: 'long drum instrument music percussion' },
{ emoji: '๐ช', name: 'banjo string instrument music country' },
{ emoji: '๐ญ', name: 'performing arts theater drama masks acting' },
{ emoji: '๐จ', name: 'artist palette paint drawing art colors' },
{ emoji: '๐งต', name: 'thread sewing craft string spool' },
{ emoji: '๐งถ', name: 'yarn knitting crochet craft wool' },
{ emoji: '๐ชก', name: 'sewing needle thread craft stitch' },
{ emoji: '๐ผ๏ธ', name: 'framed picture painting art museum gallery' },
{ emoji: '๐ฌ', name: 'clapper board movie film director action' },
{ emoji: '๐ฎ', name: 'video game controller play gaming esports' },
{ emoji: '๐น๏ธ', name: 'joystick gaming controller arcade' },
{ emoji: '๐ฒ', name: 'game die dice random gambling board game' },
{ emoji: 'โ๏ธ', name: 'chess pawn strategy board game' },
{ emoji: '๐ด', name: 'flower playing cards game hanafuda' },
{ emoji: '๐', name: 'mahjong red dragon game tiles' },
{ emoji: '๐ฏ', name: 'direct hit target bullseye darts game' },
{ emoji: '๐ช', name: 'circus tent entertainment carnival' },
{ emoji: '๐๏ธ', name: 'crayon drawing art coloring' },
{ emoji: '๐๏ธ', name: 'paintbrush art painting drawing' },
// Technology and Science
{ emoji: '๐ป', name: 'laptop computer pc tech notebook' },
{ emoji: '๐ฅ๏ธ', name: 'desktop computer pc monitor tech' },
{ emoji: '๐จ๏ธ', name: 'printer device output office' },
{ emoji: 'โจ๏ธ', name: 'keyboard typing input device' },
{ emoji: '๐ฑ๏ธ', name: 'computer mouse input device click' },
{ emoji: '๐ฒ๏ธ', name: 'trackball input device pointer' },
{ emoji: '๐ฝ', name: 'computer disk storage minidisc' },
{ emoji: '๐พ', name: 'floppy disk save old storage' },
{ emoji: '๐ฟ', name: 'optical disk cd dvd storage' },
{ emoji: '๐', name: 'dvd disk storage movie film' },
{ emoji: '๐งฎ', name: 'abacus calculation math counting' },
{ emoji: '๐ฅ', name: 'movie camera film video recording' },
{ emoji: '๐๏ธ', name: 'film frames movie cinema' },
{ emoji: '๐ฝ๏ธ', name: 'film projector movie cinema' },
{ emoji: '๐ฌ', name: 'clapper board movie director action film' },
{ emoji: '๐บ', name: 'television tv screen broadcast' },
{ emoji: '๐ท', name: 'camera photo photography picture' },
{ emoji: '๐ธ', name: 'camera with flash photography picture' },
{ emoji: '๐น', name: 'video camera recording film movie' },
{ emoji: '๐ผ', name: 'videocassette vhs tape video' },
{ emoji: '๐', name: 'magnifying glass tilted left search zoom' },
{ emoji: '๐', name: 'magnifying glass tilted right search zoom' },
{ emoji: '๐ฏ๏ธ', name: 'candle light wax flame' },
{ emoji: '๐ก', name: 'light bulb idea bright electricity' },
{ emoji: '๐ฆ', name: 'flashlight torch light portable' },
{ emoji: '๐', name: 'bright button light sun' },
{ emoji: '๐
', name: 'dim button low light brightness' },
{ emoji: '๐', name: 'battery power energy charge' },
{ emoji: '๐', name: 'electric plug power outlet electricity' },
{ emoji: '๐ก', name: 'satellite antenna dish signal reception' },
{ emoji: 'โณ', name: 'hourglass not done time sand waiting' },
{ emoji: 'โ', name: 'hourglass done time sand complete' },
{ emoji: 'โฐ', name: 'alarm clock time morning wakeup' },
{ emoji: 'โฑ๏ธ', name: 'stopwatch time timer precision' },
{ emoji: 'โฒ๏ธ', name: 'timer clock time countdown cooking' },
{ emoji: '๐งฎ', name: 'abacus calculate counting math' },
{ emoji: '๐ฌ', name: 'microscope science laboratory research' },
{ emoji: '๐ญ', name: 'telescope astronomy space stars' },
{ emoji: '๐ฑ', name: 'mobile phone smartphone iphone android cell' },
{ emoji: '๐ฒ', name: 'mobile phone with arrow call download' },
{ emoji: 'โ๏ธ', name: 'telephone phone call landline' },