unicode-icons 2.1.2

(1869+) unicode icons in rust
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
//! People & Body

use crate::Emoticon;

/// waving_hand ๐Ÿ‘‹ (U+1F44B)
pub fn waving_hand() -> Emoticon {
    Emoticon("\u{1F44B}".to_string())
}

/// raised_back_of_hand ๐Ÿคš (U+1F91A)
pub fn raised_back_of_hand() -> Emoticon {
    Emoticon("\u{1F91A}".to_string())
}

/// hand_with_fingers_splayed ๐Ÿ– (U+1F590)
pub fn hand_with_fingers_splayed() -> Emoticon {
    Emoticon("\u{1F590}".to_string())
}

/// raised_hand โœ‹ (U+270B)
pub fn raised_hand() -> Emoticon {
    Emoticon("\u{270B}".to_string())
}

/// vulcan_salute ๐Ÿ–– (U+1F596)
pub fn vulcan_salute() -> Emoticon {
    Emoticon("\u{1F596}".to_string())
}

/// rightwards_hand ๐Ÿซฑ (U+1FAF1)
pub fn rightwards_hand() -> Emoticon {
    Emoticon("\u{1FAF1}".to_string())
}

/// leftwards_hand ๐Ÿซฒ (U+1FAF2)
pub fn leftwards_hand() -> Emoticon {
    Emoticon("\u{1FAF2}".to_string())
}

/// palm_down_hand ๐Ÿซณ (U+1FAF3)
pub fn palm_down_hand() -> Emoticon {
    Emoticon("\u{1FAF3}".to_string())
}

/// palm_up_hand ๐Ÿซด (U+1FAF4)
pub fn palm_up_hand() -> Emoticon {
    Emoticon("\u{1FAF4}".to_string())
}

/// leftwards_pushing_hand ๐Ÿซท (U+1FAF7)
pub fn leftwards_pushing_hand() -> Emoticon {
    Emoticon("\u{1FAF7}".to_string())
}

/// rightwards_pushing_hand ๐Ÿซธ (U+1FAF8)
pub fn rightwards_pushing_hand() -> Emoticon {
    Emoticon("\u{1FAF8}".to_string())
}

/// OK_hand ๐Ÿ‘Œ (U+1F44C)
pub fn ok_hand() -> Emoticon {
    Emoticon("\u{1F44C}".to_string())
}

/// pinched_fingers ๐ŸคŒ (U+1F90C)
pub fn pinched_fingers() -> Emoticon {
    Emoticon("\u{1F90C}".to_string())
}

/// pinching_hand ๐Ÿค (U+1F90F)
pub fn pinching_hand() -> Emoticon {
    Emoticon("\u{1F90F}".to_string())
}

/// victory_hand โœŒ (U+270C)
pub fn victory_hand() -> Emoticon {
    Emoticon("\u{270C}".to_string())
}

/// crossed_fingers ๐Ÿคž (U+1F91E)
pub fn crossed_fingers() -> Emoticon {
    Emoticon("\u{1F91E}".to_string())
}

/// hand_with_index_finger_and_thumb_crossed ๐Ÿซฐ (U+1FAF0)
pub fn hand_with_index_finger_and_thumb_crossed() -> Emoticon {
    Emoticon("\u{1FAF0}".to_string())
}

/// love_you_gesture ๐ŸคŸ (U+1F91F)
pub fn love_you_gesture() -> Emoticon {
    Emoticon("\u{1F91F}".to_string())
}

/// sign_of_the_horns ๐Ÿค˜ (U+1F918)
pub fn sign_of_the_horns() -> Emoticon {
    Emoticon("\u{1F918}".to_string())
}

/// call_me_hand ๐Ÿค™ (U+1F919)
pub fn call_me_hand() -> Emoticon {
    Emoticon("\u{1F919}".to_string())
}

/// backhand_index_pointing_right ๐Ÿ‘ˆ (U+1F448)
pub fn backhand_index_pointing_right() -> Emoticon {
    Emoticon("\u{1F448}".to_string())
}

/// backhand_index_pointing_up ๐Ÿ‘† (U+1F446)
pub fn backhand_index_pointing_up() -> Emoticon {
    Emoticon("\u{1F446}".to_string())
}

/// middle_finger ๐Ÿ–• (U+1F595)
pub fn middle_finger() -> Emoticon {
    Emoticon("\u{1F595}".to_string())
}

/// backhand_index_pointing_down ๐Ÿ‘‡ (U+1F447)
pub fn backhand_index_pointing_down() -> Emoticon {
    Emoticon("\u{1F447}".to_string())
}

/// index_pointing_up โ˜ (U+261D)
pub fn index_pointing_up() -> Emoticon {
    Emoticon("\u{261D}".to_string())
}

/// index_pointing_at_the_viewer ๐Ÿซต (U+1FAF5)
pub fn index_pointing_at_the_viewer() -> Emoticon {
    Emoticon("\u{1FAF5}".to_string())
}

/// thumbs_up ๐Ÿ‘ (U+1F44D)
pub fn thumbs_up() -> Emoticon {
    Emoticon("\u{1F44D}".to_string())
}

/// thumbs_down ๐Ÿ‘Ž (U+1F44E)
pub fn thumbs_down() -> Emoticon {
    Emoticon("\u{1F44E}".to_string())
}

/// raised_fist โœŠ (U+270A)
pub fn raised_fist() -> Emoticon {
    Emoticon("\u{270A}".to_string())
}

/// oncoming_fist ๐Ÿ‘Š (U+1F44A)
pub fn oncoming_fist() -> Emoticon {
    Emoticon("\u{1F44A}".to_string())
}

/// left_facing_fist ๐Ÿค› (U+1F91B)
pub fn left_facing_fist() -> Emoticon {
    Emoticon("\u{1F91B}".to_string())
}

/// right_facing_fist ๐Ÿคœ (U+1F91C)
pub fn right_facing_fist() -> Emoticon {
    Emoticon("\u{1F91C}".to_string())
}

/// clapping_hands ๐Ÿ‘ (U+1F44F)
pub fn clapping_hands() -> Emoticon {
    Emoticon("\u{1F44F}".to_string())
}

/// raising_hands ๐Ÿ™Œ (U+1F64C)
pub fn raising_hands() -> Emoticon {
    Emoticon("\u{1F64C}".to_string())
}

/// heart_hands ๐Ÿซถ (U+1FAF6)
pub fn heart_hands() -> Emoticon {
    Emoticon("\u{1FAF6}".to_string())
}

/// open_hands ๐Ÿ‘ (U+1F450)
pub fn open_hands() -> Emoticon {
    Emoticon("\u{1F450}".to_string())
}

/// palms_up_together ๐Ÿคฒ (U+1F932)
pub fn palms_up_together() -> Emoticon {
    Emoticon("\u{1F932}".to_string())
}

/// handshake ๐Ÿค (U+1F91D)
pub fn handshake() -> Emoticon {
    Emoticon("\u{1F91D}".to_string())
}

/// folded_hands ๐Ÿ™ (U+1F64F)
pub fn folded_hands() -> Emoticon {
    Emoticon("\u{1F64F}".to_string())
}

/// writing_hand โœ (U+270D)
pub fn writing_hand() -> Emoticon {
    Emoticon("\u{270D}".to_string())
}

/// nail_polish ๐Ÿ’… (U+1F485)
pub fn nail_polish() -> Emoticon {
    Emoticon("\u{1F485}".to_string())
}

/// selfie ๐Ÿคณ (U+1F933)
pub fn selfie() -> Emoticon {
    Emoticon("\u{1F933}".to_string())
}

/// flexed_biceps ๐Ÿ’ช (U+1F4AA)
pub fn flexed_biceps() -> Emoticon {
    Emoticon("\u{1F4AA}".to_string())
}

/// mechanical_arm ๐Ÿฆพ (U+1F9BE)
pub fn mechanical_arm() -> Emoticon {
    Emoticon("\u{1F9BE}".to_string())
}

/// mechanical_leg ๐Ÿฆฟ (U+1F9BF)
pub fn mechanical_leg() -> Emoticon {
    Emoticon("\u{1F9BF}".to_string())
}

/// leg ๐Ÿฆต (U+1F9B5)
pub fn leg() -> Emoticon {
    Emoticon("\u{1F9B5}".to_string())
}

/// foot ๐Ÿฆถ (U+1F9B6)
pub fn foot() -> Emoticon {
    Emoticon("\u{1F9B6}".to_string())
}

/// ear ๐Ÿ‘‚ (U+1F442)
pub fn ear() -> Emoticon {
    Emoticon("\u{1F442}".to_string())
}

/// ear_with_hearing_aid ๐Ÿฆป (U+1F9BB)
pub fn ear_with_hearing_aid() -> Emoticon {
    Emoticon("\u{1F9BB}".to_string())
}

/// nose ๐Ÿ‘ƒ (U+1F443)
pub fn nose() -> Emoticon {
    Emoticon("\u{1F443}".to_string())
}

/// brain ๐Ÿง  (U+1F9E0)
pub fn brain() -> Emoticon {
    Emoticon("\u{1F9E0}".to_string())
}

/// anatomical_heart ๐Ÿซ€ (U+1FAC0)
pub fn anatomical_heart() -> Emoticon {
    Emoticon("\u{1FAC0}".to_string())
}

/// lungs ๐Ÿซ (U+1FAC1)
pub fn lungs() -> Emoticon {
    Emoticon("\u{1FAC1}".to_string())
}

/// tooth ๐Ÿฆท (U+1F9B7)
pub fn tooth() -> Emoticon {
    Emoticon("\u{1F9B7}".to_string())
}

/// bone ๐Ÿฆด (U+1F9B4)
pub fn bone() -> Emoticon {
    Emoticon("\u{1F9B4}".to_string())
}

/// eyes ๐Ÿ‘€ (U+1F440)
pub fn eyes() -> Emoticon {
    Emoticon("\u{1F440}".to_string())
}

/// eye ๐Ÿ‘ (U+1F441)
pub fn eye() -> Emoticon {
    Emoticon("\u{1F441}".to_string())
}

/// tongue ๐Ÿ‘… (U+1F445)
pub fn tongue() -> Emoticon {
    Emoticon("\u{1F445}".to_string())
}

/// mouth ๐Ÿ‘„ (U+1F444)
pub fn mouth() -> Emoticon {
    Emoticon("\u{1F444}".to_string())
}

/// biting_lip ๐Ÿซฆ (U+1FAE6)
pub fn biting_lip() -> Emoticon {
    Emoticon("\u{1FAE6}".to_string())
}

/// baby ๐Ÿ‘ถ (U+1F476)
pub fn baby() -> Emoticon {
    Emoticon("\u{1F476}".to_string())
}

/// child ๐Ÿง’ (U+1F9D2)
pub fn child() -> Emoticon {
    Emoticon("\u{1F9D2}".to_string())
}

/// boy ๐Ÿ‘ฆ (U+1F466)
pub fn boy() -> Emoticon {
    Emoticon("\u{1F466}".to_string())
}

/// girl ๐Ÿ‘ง (U+1F467)
pub fn girl() -> Emoticon {
    Emoticon("\u{1F467}".to_string())
}

/// person ๐Ÿง‘ (U+1F9D1)
pub fn person() -> Emoticon {
    Emoticon("\u{1F9D1}".to_string())
}

/// person_blond_hair ๐Ÿ‘ฑ (U+1F471)
pub fn person_blond_hair() -> Emoticon {
    Emoticon("\u{1F471}".to_string())
}

/// man ๐Ÿ‘จ (U+1F468)
pub fn man() -> Emoticon {
    Emoticon("\u{1F468}".to_string())
}

/// person_beard ๐Ÿง” (U+1F9D4)
pub fn person_beard() -> Emoticon {
    Emoticon("\u{1F9D4}".to_string())
}

/// man_beard ๐Ÿง”โ€โ™‚๏ธ (U+1F9D4 U+200D U+2642 U+FE0F)
pub fn man_beard() -> Emoticon {
    Emoticon("\u{1F9D4}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_beard ๐Ÿง”โ€โ™€๏ธ (U+1F9D4 U+200D U+2640 U+FE0F)
pub fn woman_beard() -> Emoticon {
    Emoticon("\u{1F9D4}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// man_red_hair ๐Ÿ‘จโ€๐Ÿฆฐ (U+1F468 U+200D U+1F9B0)
pub fn man_red_hair() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F9B0}".to_string())
}

/// man_curly_hair ๐Ÿ‘จโ€๐Ÿฆฑ (U+1F468 U+200D U+1F9B1)
pub fn man_curly_hair() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F9B1}".to_string())
}

/// man_white_hair ๐Ÿ‘จโ€๐Ÿฆณ (U+1F468 U+200D U+1F9B3)
pub fn man_white_hair() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F9B3}".to_string())
}

/// man_bald ๐Ÿ‘จโ€๐Ÿฆฒ (U+1F468 U+200D U+1F9B2)
pub fn man_bald() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F9B2}".to_string())
}

/// woman ๐Ÿ‘ฉ (U+1F469)
pub fn woman() -> Emoticon {
    Emoticon("\u{1F469}".to_string())
}

/// woman_red_hair ๐Ÿ‘ฉโ€๐Ÿฆฐ (U+1F469 U+200D U+1F9B0)
pub fn woman_red_hair() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F9B0}".to_string())
}

/// person_red_hair ๐Ÿง‘โ€๐Ÿฆฐ (U+1F9D1 U+200D U+1F9B0)
pub fn person_red_hair() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9B0}".to_string())
}

/// woman_curly_hair ๐Ÿ‘ฉโ€๐Ÿฆฑ (U+1F469 U+200D U+1F9B1)
pub fn woman_curly_hair() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F9B1}".to_string())
}

/// person_curly_hair ๐Ÿง‘โ€๐Ÿฆฑ (U+1F9D1 U+200D U+1F9B1)
pub fn person_curly_hair() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9B1}".to_string())
}

/// woman_white_hair ๐Ÿ‘ฉโ€๐Ÿฆณ (U+1F469 U+200D U+1F9B3)
pub fn woman_white_hair() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F9B3}".to_string())
}

/// person_white_hair ๐Ÿง‘โ€๐Ÿฆณ (U+1F9D1 U+200D U+1F9B3)
pub fn person_white_hair() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9B3}".to_string())
}

/// woman_bald ๐Ÿ‘ฉโ€๐Ÿฆฒ (U+1F469 U+200D U+1F9B2)
pub fn woman_bald() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F9B2}".to_string())
}

/// person_bald ๐Ÿง‘โ€๐Ÿฆฒ (U+1F9D1 U+200D U+1F9B2)
pub fn person_bald() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9B2}".to_string())
}

/// woman_blond_hair ๐Ÿ‘ฑโ€โ™€๏ธ (U+1F471 U+200D U+2640 U+FE0F)
pub fn woman_blond_hair() -> Emoticon {
    Emoticon("\u{1F471}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// man_blond_hair ๐Ÿ‘ฑโ€โ™‚๏ธ (U+1F471 U+200D U+2642 U+FE0F)
pub fn man_blond_hair() -> Emoticon {
    Emoticon("\u{1F471}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// older_person ๐Ÿง“ (U+1F9D3)
pub fn older_person() -> Emoticon {
    Emoticon("\u{1F9D3}".to_string())
}

/// old_man ๐Ÿ‘ด (U+1F474)
pub fn old_man() -> Emoticon {
    Emoticon("\u{1F474}".to_string())
}

/// person_frowning ๐Ÿ‘ต (U+1F475)
pub fn person_frowning() -> Emoticon {
    Emoticon("\u{1F475}".to_string())
}

/// man_frowning ๐Ÿ™โ€โ™‚๏ธ (U+1F64D U+200D U+2642 U+FE0F)
pub fn man_frowning() -> Emoticon {
    Emoticon("\u{1F64D}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_frowning ๐Ÿ™โ€โ™€๏ธ (U+1F64D U+200D U+2640 U+FE0F)
pub fn woman_frowning() -> Emoticon {
    Emoticon("\u{1F64D}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_pouting ๐Ÿ™Ž (U+1F64E)
pub fn person_pouting() -> Emoticon {
    Emoticon("\u{1F64E}".to_string())
}

/// man_pouting ๐Ÿ™Žโ€โ™‚๏ธ (U+1F64E U+200D U+2642 U+FE0F)
pub fn man_pouting() -> Emoticon {
    Emoticon("\u{1F64E}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_pouting ๐Ÿ™Žโ€โ™€๏ธ (U+1F64E U+200D U+2640 U+FE0F)
pub fn woman_pouting() -> Emoticon {
    Emoticon("\u{1F64E}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_gesturing_NO ๐Ÿ™… (U+1F645)
pub fn person_gesturing_no() -> Emoticon {
    Emoticon("\u{1F645}".to_string())
}

/// man_gesturing_NO ๐Ÿ™…โ€โ™‚๏ธ (U+1F645 U+200D U+2642 U+FE0F)
pub fn man_gesturing_no() -> Emoticon {
    Emoticon("\u{1F645}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_gesturing_NO ๐Ÿ™…โ€โ™€๏ธ (U+1F645 U+200D U+2640 U+FE0F)
pub fn woman_gesturing_no() -> Emoticon {
    Emoticon("\u{1F645}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_gesturing_OK ๐Ÿ™† (U+1F646)
pub fn person_gesturing_ok() -> Emoticon {
    Emoticon("\u{1F646}".to_string())
}

/// man_gesturing_OK ๐Ÿ™†โ€โ™‚๏ธ (U+1F646 U+200D U+2642 U+FE0F)
pub fn man_gesturing_ok() -> Emoticon {
    Emoticon("\u{1F646}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_gesturing_OK ๐Ÿ™†โ€โ™€๏ธ (U+1F646 U+200D U+2640 U+FE0F)
pub fn woman_gesturing_ok() -> Emoticon {
    Emoticon("\u{1F646}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_tipping_hand ๐Ÿ’ (U+1F481)
pub fn person_tipping_hand() -> Emoticon {
    Emoticon("\u{1F481}".to_string())
}

/// man_tipping_hand ๐Ÿ’โ€โ™‚๏ธ (U+1F481 U+200D U+2642 U+FE0F)
pub fn man_tipping_hand() -> Emoticon {
    Emoticon("\u{1F481}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// person_raising_hand ๐Ÿ’โ€โ™€๏ธ (U+1F481 U+200D U+2640 U+FE0F)
pub fn person_raising_hand() -> Emoticon {
    Emoticon("\u{1F481}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// man_raising_hand ๐Ÿ™‹โ€โ™‚๏ธ (U+1F64B U+200D U+2642 U+FE0F)
pub fn man_raising_hand() -> Emoticon {
    Emoticon("\u{1F64B}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_raising_hand ๐Ÿ™‹โ€โ™€๏ธ (U+1F64B U+200D U+2640 U+FE0F)
pub fn woman_raising_hand() -> Emoticon {
    Emoticon("\u{1F64B}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// deaf_person ๐Ÿง (U+1F9CF)
pub fn deaf_person() -> Emoticon {
    Emoticon("\u{1F9CF}".to_string())
}

/// deaf_man ๐Ÿงโ€โ™‚๏ธ (U+1F9CF U+200D U+2642 U+FE0F)
pub fn deaf_man() -> Emoticon {
    Emoticon("\u{1F9CF}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// deaf_woman ๐Ÿงโ€โ™€๏ธ (U+1F9CF U+200D U+2640 U+FE0F)
pub fn deaf_woman() -> Emoticon {
    Emoticon("\u{1F9CF}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_bowing ๐Ÿ™‡ (U+1F647)
pub fn person_bowing() -> Emoticon {
    Emoticon("\u{1F647}".to_string())
}

/// man_bowing ๐Ÿ™‡โ€โ™‚๏ธ (U+1F647 U+200D U+2642 U+FE0F)
pub fn man_bowing() -> Emoticon {
    Emoticon("\u{1F647}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_bowing ๐Ÿ™‡โ€โ™€๏ธ (U+1F647 U+200D U+2640 U+FE0F)
pub fn woman_bowing() -> Emoticon {
    Emoticon("\u{1F647}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_facepalming ๐Ÿคฆ (U+1F926)
pub fn person_facepalming() -> Emoticon {
    Emoticon("\u{1F926}".to_string())
}

/// man_facepalming ๐Ÿคฆโ€โ™‚๏ธ (U+1F926 U+200D U+2642 U+FE0F)
pub fn man_facepalming() -> Emoticon {
    Emoticon("\u{1F926}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_facepalming ๐Ÿคฆโ€โ™€๏ธ (U+1F926 U+200D U+2640 U+FE0F)
pub fn woman_facepalming() -> Emoticon {
    Emoticon("\u{1F926}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_shrugging ๐Ÿคท (U+1F937)
pub fn person_shrugging() -> Emoticon {
    Emoticon("\u{1F937}".to_string())
}

/// man_shrugging ๐Ÿคทโ€โ™‚๏ธ (U+1F937 U+200D U+2642 U+FE0F)
pub fn man_shrugging() -> Emoticon {
    Emoticon("\u{1F937}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_shrugging ๐Ÿคทโ€โ™€๏ธ (U+1F937 U+200D U+2640 U+FE0F)
pub fn woman_shrugging() -> Emoticon {
    Emoticon("\u{1F937}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// health_worker ๐Ÿง‘โ€โš•๏ธ (U+1F9D1 U+200D U+2695 U+FE0F)
pub fn health_worker() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{2695}\u{FE0F}".to_string())
}

/// man_health_worker ๐Ÿ‘จโ€โš•๏ธ (U+1F468 U+200D U+2695 U+FE0F)
pub fn man_health_worker() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{2695}\u{FE0F}".to_string())
}

/// woman_health_worker ๐Ÿ‘ฉโ€โš•๏ธ (U+1F469 U+200D U+2695 U+FE0F)
pub fn woman_health_worker() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{2695}\u{FE0F}".to_string())
}

/// student ๐Ÿง‘โ€๐ŸŽ“ (U+1F9D1 U+200D U+1F393)
pub fn student() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F393}".to_string())
}

/// man_student ๐Ÿ‘จโ€๐ŸŽ“ (U+1F468 U+200D U+1F393)
pub fn man_student() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F393}".to_string())
}

/// woman_student ๐Ÿ‘ฉโ€๐ŸŽ“ (U+1F469 U+200D U+1F393)
pub fn woman_student() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F393}".to_string())
}

/// teacher ๐Ÿง‘โ€๐Ÿซ (U+1F9D1 U+200D U+1F3EB)
pub fn teacher() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F3EB}".to_string())
}

/// man_teacher ๐Ÿ‘จโ€๐Ÿซ (U+1F468 U+200D U+1F3EB)
pub fn man_teacher() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F3EB}".to_string())
}

/// woman_teacher ๐Ÿ‘ฉโ€๐Ÿซ (U+1F469 U+200D U+1F3EB)
pub fn woman_teacher() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F3EB}".to_string())
}

/// judge ๐Ÿง‘โ€โš–๏ธ (U+1F9D1 U+200D U+2696 U+FE0F)
pub fn judge() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{2696}\u{FE0F}".to_string())
}

/// man_judge ๐Ÿ‘จโ€โš–๏ธ (U+1F468 U+200D U+2696 U+FE0F)
pub fn man_judge() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{2696}\u{FE0F}".to_string())
}

/// woman_judge ๐Ÿ‘ฉโ€โš–๏ธ (U+1F469 U+200D U+2696 U+FE0F)
pub fn woman_judge() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{2696}\u{FE0F}".to_string())
}

/// farmer ๐Ÿง‘โ€๐ŸŒพ (U+1F9D1 U+200D U+1F33E)
pub fn farmer() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F33E}".to_string())
}

/// man_farmer ๐Ÿ‘จโ€๐ŸŒพ (U+1F468 U+200D U+1F33E)
pub fn man_farmer() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F33E}".to_string())
}

/// woman_farmer ๐Ÿ‘ฉโ€๐ŸŒพ (U+1F469 U+200D U+1F33E)
pub fn woman_farmer() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F33E}".to_string())
}

/// cook ๐Ÿง‘โ€๐Ÿณ (U+1F9D1 U+200D U+1F373)
pub fn cook() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F373}".to_string())
}

/// man_cook ๐Ÿ‘จโ€๐Ÿณ (U+1F468 U+200D U+1F373)
pub fn man_cook() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F373}".to_string())
}

/// woman_cook ๐Ÿ‘ฉโ€๐Ÿณ (U+1F469 U+200D U+1F373)
pub fn woman_cook() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F373}".to_string())
}

/// mechanic ๐Ÿง‘โ€๐Ÿ”ง (U+1F9D1 U+200D U+1F527)
pub fn mechanic() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F527}".to_string())
}

/// man_mechanic ๐Ÿ‘จโ€๐Ÿ”ง (U+1F468 U+200D U+1F527)
pub fn man_mechanic() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F527}".to_string())
}

/// woman_mechanic ๐Ÿ‘ฉโ€๐Ÿ”ง (U+1F469 U+200D U+1F527)
pub fn woman_mechanic() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F527}".to_string())
}

/// factory_worker ๐Ÿง‘โ€๐Ÿญ (U+1F9D1 U+200D U+1F3ED)
pub fn factory_worker() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F3ED}".to_string())
}

/// man_factory_worker ๐Ÿ‘จโ€๐Ÿญ (U+1F468 U+200D U+1F3ED)
pub fn man_factory_worker() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F3ED}".to_string())
}

/// woman_factory_worker ๐Ÿ‘ฉโ€๐Ÿญ (U+1F469 U+200D U+1F3ED)
pub fn woman_factory_worker() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F3ED}".to_string())
}

/// office_worker ๐Ÿง‘โ€๐Ÿ’ผ (U+1F9D1 U+200D U+1F4BC)
pub fn office_worker() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F4BC}".to_string())
}

/// man_office_worker ๐Ÿ‘จโ€๐Ÿ’ผ (U+1F468 U+200D U+1F4BC)
pub fn man_office_worker() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F4BC}".to_string())
}

/// woman_office_worker ๐Ÿ‘ฉโ€๐Ÿ’ผ (U+1F469 U+200D U+1F4BC)
pub fn woman_office_worker() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F4BC}".to_string())
}

/// scientist ๐Ÿง‘โ€๐Ÿ”ฌ (U+1F9D1 U+200D U+1F52C)
pub fn scientist() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F52C}".to_string())
}

/// man_scientist ๐Ÿ‘จโ€๐Ÿ”ฌ (U+1F468 U+200D U+1F52C)
pub fn man_scientist() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F52C}".to_string())
}

/// woman_scientist ๐Ÿ‘ฉโ€๐Ÿ”ฌ (U+1F469 U+200D U+1F52C)
pub fn woman_scientist() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F52C}".to_string())
}

/// technologist ๐Ÿง‘โ€๐Ÿ’ป (U+1F9D1 U+200D U+1F4BB)
pub fn technologist() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F4BB}".to_string())
}

/// man_technologist ๐Ÿ‘จโ€๐Ÿ’ป (U+1F468 U+200D U+1F4BB)
pub fn man_technologist() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F4BB}".to_string())
}

/// woman_technologist ๐Ÿ‘ฉโ€๐Ÿ’ป (U+1F469 U+200D U+1F4BB)
pub fn woman_technologist() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F4BB}".to_string())
}

/// singer ๐Ÿง‘โ€๐ŸŽค (U+1F9D1 U+200D U+1F3A4)
pub fn singer() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F3A4}".to_string())
}

/// man_singer ๐Ÿ‘จโ€๐ŸŽค (U+1F468 U+200D U+1F3A4)
pub fn man_singer() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F3A4}".to_string())
}

/// woman_singer ๐Ÿ‘ฉโ€๐ŸŽค (U+1F469 U+200D U+1F3A4)
pub fn woman_singer() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F3A4}".to_string())
}

/// artist ๐Ÿง‘โ€๐ŸŽจ (U+1F9D1 U+200D U+1F3A8)
pub fn artist() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F3A8}".to_string())
}

/// man_artist ๐Ÿ‘จโ€๐ŸŽจ (U+1F468 U+200D U+1F3A8)
pub fn man_artist() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F3A8}".to_string())
}

/// woman_artist ๐Ÿ‘ฉโ€๐ŸŽจ (U+1F469 U+200D U+1F3A8)
pub fn woman_artist() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F3A8}".to_string())
}

/// pilot ๐Ÿง‘โ€โœˆ๏ธ (U+1F9D1 U+200D U+2708 U+FE0F)
pub fn pilot() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{2708}\u{FE0F}".to_string())
}

/// man_pilot ๐Ÿ‘จโ€โœˆ๏ธ (U+1F468 U+200D U+2708 U+FE0F)
pub fn man_pilot() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{2708}\u{FE0F}".to_string())
}

/// woman_pilot ๐Ÿ‘ฉโ€โœˆ๏ธ (U+1F469 U+200D U+2708 U+FE0F)
pub fn woman_pilot() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{2708}\u{FE0F}".to_string())
}

/// astronaut ๐Ÿง‘โ€๐Ÿš€ (U+1F9D1 U+200D U+1F680)
pub fn astronaut() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F680}".to_string())
}

/// man_astronaut ๐Ÿ‘จโ€๐Ÿš€ (U+1F468 U+200D U+1F680)
pub fn man_astronaut() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F680}".to_string())
}

/// woman_astronaut ๐Ÿ‘ฉโ€๐Ÿš€ (U+1F469 U+200D U+1F680)
pub fn woman_astronaut() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F680}".to_string())
}

/// firefighter ๐Ÿง‘โ€๐Ÿš’ (U+1F9D1 U+200D U+1F692)
pub fn firefighter() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F692}".to_string())
}

/// man_firefighter ๐Ÿ‘จโ€๐Ÿš’ (U+1F468 U+200D U+1F692)
pub fn man_firefighter() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F692}".to_string())
}

/// woman_firefighter ๐Ÿ‘ฉโ€๐Ÿš’ (U+1F469 U+200D U+1F692)
pub fn woman_firefighter() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F692}".to_string())
}

/// police_officer ๐Ÿ‘ฎ (U+1F46E)
pub fn police_officer() -> Emoticon {
    Emoticon("\u{1F46E}".to_string())
}

/// man_police_officer ๐Ÿ‘ฎโ€โ™‚๏ธ (U+1F46E U+200D U+2642 U+FE0F)
pub fn man_police_officer() -> Emoticon {
    Emoticon("\u{1F46E}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_police_officer ๐Ÿ‘ฎโ€โ™€๏ธ (U+1F46E U+200D U+2640 U+FE0F)
pub fn woman_police_officer() -> Emoticon {
    Emoticon("\u{1F46E}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// detective ๐Ÿ•ต (U+1F575)
pub fn detective() -> Emoticon {
    Emoticon("\u{1F575}".to_string())
}

/// man_detective ๐Ÿ•ต๏ธโ€โ™‚๏ธ (U+1F575 U+FE0F U+200D U+2642 U+FE0F)
pub fn man_detective() -> Emoticon {
    Emoticon("\u{1F575}\u{FE0F}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_detective ๐Ÿ•ต๏ธโ€โ™€๏ธ (U+1F575 U+FE0F U+200D U+2640 U+FE0F)
pub fn woman_detective() -> Emoticon {
    Emoticon("\u{1F575}\u{FE0F}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// guard ๐Ÿ’‚ (U+1F482)
pub fn guard() -> Emoticon {
    Emoticon("\u{1F482}".to_string())
}

/// man_guard ๐Ÿ’‚โ€โ™‚๏ธ (U+1F482 U+200D U+2642 U+FE0F)
pub fn man_guard() -> Emoticon {
    Emoticon("\u{1F482}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_guard ๐Ÿ’‚โ€โ™€๏ธ (U+1F482 U+200D U+2640 U+FE0F)
pub fn woman_guard() -> Emoticon {
    Emoticon("\u{1F482}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// ninja ๐Ÿฅท (U+1F977)
pub fn ninja() -> Emoticon {
    Emoticon("\u{1F977}".to_string())
}

/// construction_worker ๐Ÿ‘ท (U+1F477)
pub fn construction_worker() -> Emoticon {
    Emoticon("\u{1F477}".to_string())
}

/// man_construction_worker ๐Ÿ‘ทโ€โ™‚๏ธ (U+1F477 U+200D U+2642 U+FE0F)
pub fn man_construction_worker() -> Emoticon {
    Emoticon("\u{1F477}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_construction_worker ๐Ÿ‘ทโ€โ™€๏ธ (U+1F477 U+200D U+2640 U+FE0F)
pub fn woman_construction_worker() -> Emoticon {
    Emoticon("\u{1F477}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_with_crown ๐Ÿซ… (U+1FAC5)
pub fn person_with_crown() -> Emoticon {
    Emoticon("\u{1FAC5}".to_string())
}

/// prince ๐Ÿคด (U+1F934)
pub fn prince() -> Emoticon {
    Emoticon("\u{1F934}".to_string())
}

/// princess ๐Ÿ‘ธ (U+1F478)
pub fn princess() -> Emoticon {
    Emoticon("\u{1F478}".to_string())
}

/// person_wearing_turban ๐Ÿ‘ณ (U+1F473)
pub fn person_wearing_turban() -> Emoticon {
    Emoticon("\u{1F473}".to_string())
}

/// man_wearing_turban ๐Ÿ‘ณโ€โ™‚๏ธ (U+1F473 U+200D U+2642 U+FE0F)
pub fn man_wearing_turban() -> Emoticon {
    Emoticon("\u{1F473}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_wearing_turban ๐Ÿ‘ณโ€โ™€๏ธ (U+1F473 U+200D U+2640 U+FE0F)
pub fn woman_wearing_turban() -> Emoticon {
    Emoticon("\u{1F473}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_with_skullcap ๐Ÿ‘ฒ (U+1F472)
pub fn person_with_skullcap() -> Emoticon {
    Emoticon("\u{1F472}".to_string())
}

/// woman_with_headscarf ๐Ÿง• (U+1F9D5)
pub fn woman_with_headscarf() -> Emoticon {
    Emoticon("\u{1F9D5}".to_string())
}

/// person_in_tuxedo ๐Ÿคต (U+1F935)
pub fn person_in_tuxedo() -> Emoticon {
    Emoticon("\u{1F935}".to_string())
}

/// man_in_tuxedo ๐Ÿคตโ€โ™‚๏ธ (U+1F935 U+200D U+2642 U+FE0F)
pub fn man_in_tuxedo() -> Emoticon {
    Emoticon("\u{1F935}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_in_tuxedo ๐Ÿคตโ€โ™€๏ธ (U+1F935 U+200D U+2640 U+FE0F)
pub fn woman_in_tuxedo() -> Emoticon {
    Emoticon("\u{1F935}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_with_veil ๐Ÿ‘ฐ (U+1F470)
pub fn person_with_veil() -> Emoticon {
    Emoticon("\u{1F470}".to_string())
}

/// man_with_veil ๐Ÿ‘ฐโ€โ™‚๏ธ (U+1F470 U+200D U+2642 U+FE0F)
pub fn man_with_veil() -> Emoticon {
    Emoticon("\u{1F470}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_with_veil ๐Ÿ‘ฐโ€โ™€๏ธ (U+1F470 U+200D U+2640 U+FE0F)
pub fn woman_with_veil() -> Emoticon {
    Emoticon("\u{1F470}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// pregnant_woman ๐Ÿคฐ (U+1F930)
pub fn pregnant_woman() -> Emoticon {
    Emoticon("\u{1F930}".to_string())
}

/// pregnant_man ๐Ÿซƒ (U+1FAC3)
pub fn pregnant_man() -> Emoticon {
    Emoticon("\u{1FAC3}".to_string())
}

/// pregnant_person ๐Ÿซ„ (U+1FAC4)
pub fn pregnant_person() -> Emoticon {
    Emoticon("\u{1FAC4}".to_string())
}

/// breast_feeding ๐Ÿคฑ (U+1F931)
pub fn breast_feeding() -> Emoticon {
    Emoticon("\u{1F931}".to_string())
}

/// woman_feeding_baby ๐Ÿ‘ฉโ€๐Ÿผ (U+1F469 U+200D U+1F37C)
pub fn woman_feeding_baby() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F37C}".to_string())
}

/// man_feeding_baby ๐Ÿ‘จโ€๐Ÿผ (U+1F468 U+200D U+1F37C)
pub fn man_feeding_baby() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F37C}".to_string())
}

/// person_feeding_baby ๐Ÿง‘โ€๐Ÿผ (U+1F9D1 U+200D U+1F37C)
pub fn person_feeding_baby() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F37C}".to_string())
}

/// baby_angel ๐Ÿ‘ผ (U+1F47C)
pub fn baby_angel() -> Emoticon {
    Emoticon("\u{1F47C}".to_string())
}

/// Santa_Claus ๐ŸŽ… (U+1F385)
pub fn santa_claus() -> Emoticon {
    Emoticon("\u{1F385}".to_string())
}

/// Mrs_Claus ๐Ÿคถ (U+1F936)
pub fn mrs_claus() -> Emoticon {
    Emoticon("\u{1F936}".to_string())
}

/// mx_claus ๐Ÿง‘โ€๐ŸŽ„ (U+1F9D1 U+200D U+1F384)
pub fn mx_claus() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F384}".to_string())
}

/// superhero ๐Ÿฆธ (U+1F9B8)
pub fn superhero() -> Emoticon {
    Emoticon("\u{1F9B8}".to_string())
}

/// man_superhero ๐Ÿฆธโ€โ™‚๏ธ (U+1F9B8 U+200D U+2642 U+FE0F)
pub fn man_superhero() -> Emoticon {
    Emoticon("\u{1F9B8}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_superhero ๐Ÿฆธโ€โ™€๏ธ (U+1F9B8 U+200D U+2640 U+FE0F)
pub fn woman_superhero() -> Emoticon {
    Emoticon("\u{1F9B8}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// supervillain ๐Ÿฆน (U+1F9B9)
pub fn supervillain() -> Emoticon {
    Emoticon("\u{1F9B9}".to_string())
}

/// man_supervillain ๐Ÿฆนโ€โ™‚๏ธ (U+1F9B9 U+200D U+2642 U+FE0F)
pub fn man_supervillain() -> Emoticon {
    Emoticon("\u{1F9B9}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_supervillain ๐Ÿฆนโ€โ™€๏ธ (U+1F9B9 U+200D U+2640 U+FE0F)
pub fn woman_supervillain() -> Emoticon {
    Emoticon("\u{1F9B9}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// mage ๐Ÿง™ (U+1F9D9)
pub fn mage() -> Emoticon {
    Emoticon("\u{1F9D9}".to_string())
}

/// man_mage ๐Ÿง™โ€โ™‚๏ธ (U+1F9D9 U+200D U+2642 U+FE0F)
pub fn man_mage() -> Emoticon {
    Emoticon("\u{1F9D9}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_mage ๐Ÿง™โ€โ™€๏ธ (U+1F9D9 U+200D U+2640 U+FE0F)
pub fn woman_mage() -> Emoticon {
    Emoticon("\u{1F9D9}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// fairy ๐Ÿงš (U+1F9DA)
pub fn fairy() -> Emoticon {
    Emoticon("\u{1F9DA}".to_string())
}

/// man_fairy ๐Ÿงšโ€โ™‚๏ธ (U+1F9DA U+200D U+2642 U+FE0F)
pub fn man_fairy() -> Emoticon {
    Emoticon("\u{1F9DA}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_fairy ๐Ÿงšโ€โ™€๏ธ (U+1F9DA U+200D U+2640 U+FE0F)
pub fn woman_fairy() -> Emoticon {
    Emoticon("\u{1F9DA}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// vampire ๐Ÿง› (U+1F9DB)
pub fn vampire() -> Emoticon {
    Emoticon("\u{1F9DB}".to_string())
}

/// man_vampire ๐Ÿง›โ€โ™‚๏ธ (U+1F9DB U+200D U+2642 U+FE0F)
pub fn man_vampire() -> Emoticon {
    Emoticon("\u{1F9DB}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_vampire ๐Ÿง›โ€โ™€๏ธ (U+1F9DB U+200D U+2640 U+FE0F)
pub fn woman_vampire() -> Emoticon {
    Emoticon("\u{1F9DB}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// merperson ๐Ÿงœ (U+1F9DC)
pub fn merperson() -> Emoticon {
    Emoticon("\u{1F9DC}".to_string())
}

/// merman ๐Ÿงœโ€โ™‚๏ธ (U+1F9DC U+200D U+2642 U+FE0F)
pub fn merman() -> Emoticon {
    Emoticon("\u{1F9DC}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// mermaid ๐Ÿงœโ€โ™€๏ธ (U+1F9DC U+200D U+2640 U+FE0F)
pub fn mermaid() -> Emoticon {
    Emoticon("\u{1F9DC}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// elf ๐Ÿง (U+1F9DD)
pub fn elf() -> Emoticon {
    Emoticon("\u{1F9DD}".to_string())
}

/// man_elf ๐Ÿงโ€โ™‚๏ธ (U+1F9DD U+200D U+2642 U+FE0F)
pub fn man_elf() -> Emoticon {
    Emoticon("\u{1F9DD}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_elf ๐Ÿงโ€โ™€๏ธ (U+1F9DD U+200D U+2640 U+FE0F)
pub fn woman_elf() -> Emoticon {
    Emoticon("\u{1F9DD}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// genie ๐Ÿงž (U+1F9DE)
pub fn genie() -> Emoticon {
    Emoticon("\u{1F9DE}".to_string())
}

/// man_genie ๐Ÿงžโ€โ™‚๏ธ (U+1F9DE U+200D U+2642 U+FE0F)
pub fn man_genie() -> Emoticon {
    Emoticon("\u{1F9DE}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_genie ๐Ÿงžโ€โ™€๏ธ (U+1F9DE U+200D U+2640 U+FE0F)
pub fn woman_genie() -> Emoticon {
    Emoticon("\u{1F9DE}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// zombie ๐ŸงŸ (U+1F9DF)
pub fn zombie() -> Emoticon {
    Emoticon("\u{1F9DF}".to_string())
}

/// man_zombie ๐ŸงŸโ€โ™‚๏ธ (U+1F9DF U+200D U+2642 U+FE0F)
pub fn man_zombie() -> Emoticon {
    Emoticon("\u{1F9DF}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_zombie ๐ŸงŸโ€โ™€๏ธ (U+1F9DF U+200D U+2640 U+FE0F)
pub fn woman_zombie() -> Emoticon {
    Emoticon("\u{1F9DF}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// troll ๐ŸงŒ (U+1F9CC)
pub fn troll() -> Emoticon {
    Emoticon("\u{1F9CC}".to_string())
}

/// person_getting_massage ๐Ÿ’† (U+1F486)
pub fn person_getting_massage() -> Emoticon {
    Emoticon("\u{1F486}".to_string())
}

/// woman_getting_massage ๐Ÿ’†โ€โ™‚๏ธ (U+1F486 U+200D U+2642 U+FE0F)
pub fn woman_getting_massage() -> Emoticon {
    Emoticon("\u{1F486}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// person_getting_haircut ๐Ÿ’‡ (U+1F487)
pub fn person_getting_haircut() -> Emoticon {
    Emoticon("\u{1F487}".to_string())
}

/// man_getting_haircut ๐Ÿ’‡โ€โ™‚๏ธ (U+1F487 U+200D U+2642 U+FE0F)
pub fn man_getting_haircut() -> Emoticon {
    Emoticon("\u{1F487}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_getting_haircut ๐Ÿ’‡โ€โ™€๏ธ (U+1F487 U+200D U+2640 U+FE0F)
pub fn woman_getting_haircut() -> Emoticon {
    Emoticon("\u{1F487}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_walking ๐Ÿšถ (U+1F6B6)
pub fn person_walking() -> Emoticon {
    Emoticon("\u{1F6B6}".to_string())
}

/// man_walking ๐Ÿšถโ€โ™‚๏ธ (U+1F6B6 U+200D U+2642 U+FE0F)
pub fn man_walking() -> Emoticon {
    Emoticon("\u{1F6B6}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_walking ๐Ÿšถโ€โ™€๏ธ (U+1F6B6 U+200D U+2640 U+FE0F)
pub fn woman_walking() -> Emoticon {
    Emoticon("\u{1F6B6}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_standing ๐Ÿง (U+1F9CD)
pub fn person_standing() -> Emoticon {
    Emoticon("\u{1F9CD}".to_string())
}

/// man_standing ๐Ÿงโ€โ™‚๏ธ (U+1F9CD U+200D U+2642 U+FE0F)
pub fn man_standing() -> Emoticon {
    Emoticon("\u{1F9CD}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_standing ๐Ÿงโ€โ™€๏ธ (U+1F9CD U+200D U+2640 U+FE0F)
pub fn woman_standing() -> Emoticon {
    Emoticon("\u{1F9CD}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_kneeling ๐ŸงŽ (U+1F9CE)
pub fn person_kneeling() -> Emoticon {
    Emoticon("\u{1F9CE}".to_string())
}

/// man_kneeling ๐ŸงŽโ€โ™‚๏ธ (U+1F9CE U+200D U+2642 U+FE0F)
pub fn man_kneeling() -> Emoticon {
    Emoticon("\u{1F9CE}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_kneeling ๐ŸงŽโ€โ™€๏ธ (U+1F9CE U+200D U+2640 U+FE0F)
pub fn woman_kneeling() -> Emoticon {
    Emoticon("\u{1F9CE}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_with_white_cane ๐Ÿง‘โ€๐Ÿฆฏ (U+1F9D1 U+200D U+1F9AF)
pub fn person_with_white_cane() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9AF}".to_string())
}

/// man_with_white_cane ๐Ÿ‘จโ€๐Ÿฆฏ (U+1F468 U+200D U+1F9AF)
pub fn man_with_white_cane() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F9AF}".to_string())
}

/// woman_with_white_cane ๐Ÿ‘ฉโ€๐Ÿฆฏ (U+1F469 U+200D U+1F9AF)
pub fn woman_with_white_cane() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F9AF}".to_string())
}

/// person_in_motorized_wheelchair ๐Ÿง‘โ€๐Ÿฆผ (U+1F9D1 U+200D U+1F9BC)
pub fn person_in_motorized_wheelchair() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9BC}".to_string())
}

/// man_in_motorized_wheelchair ๐Ÿ‘จโ€๐Ÿฆผ (U+1F468 U+200D U+1F9BC)
pub fn man_in_motorized_wheelchair() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F9BC}".to_string())
}

/// woman_in_motorized_wheelchair ๐Ÿ‘ฉโ€๐Ÿฆผ (U+1F469 U+200D U+1F9BC)
pub fn woman_in_motorized_wheelchair() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F9BC}".to_string())
}

/// person_in_manual_wheelchair ๐Ÿง‘โ€๐Ÿฆฝ (U+1F9D1 U+200D U+1F9BD)
pub fn person_in_manual_wheelchair() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9BD}".to_string())
}

/// man_in_manual_wheelchair ๐Ÿ‘จโ€๐Ÿฆฝ (U+1F468 U+200D U+1F9BD)
pub fn man_in_manual_wheelchair() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F9BD}".to_string())
}

/// woman_in_manual_wheelchair ๐Ÿ‘ฉโ€๐Ÿฆฝ (U+1F469 U+200D U+1F9BD)
pub fn woman_in_manual_wheelchair() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F9BD}".to_string())
}

/// person_running ๐Ÿƒ (U+1F3C3)
pub fn person_running() -> Emoticon {
    Emoticon("\u{1F3C3}".to_string())
}

/// man_running ๐Ÿƒโ€โ™‚๏ธ (U+1F3C3 U+200D U+2642 U+FE0F)
pub fn man_running() -> Emoticon {
    Emoticon("\u{1F3C3}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_running ๐Ÿƒโ€โ™€๏ธ (U+1F3C3 U+200D U+2640 U+FE0F)
pub fn woman_running() -> Emoticon {
    Emoticon("\u{1F3C3}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// woman_dancing ๐Ÿ’ƒ (U+1F483)
pub fn woman_dancing() -> Emoticon {
    Emoticon("\u{1F483}".to_string())
}

/// man_dancing ๐Ÿ•บ (U+1F57A)
pub fn man_dancing() -> Emoticon {
    Emoticon("\u{1F57A}".to_string())
}

/// person_in_suit_levitating ๐Ÿ•ด (U+1F574)
pub fn person_in_suit_levitating() -> Emoticon {
    Emoticon("\u{1F574}".to_string())
}

/// people_with_bunny_ears ๐Ÿ‘ฏ (U+1F46F)
pub fn people_with_bunny_ears() -> Emoticon {
    Emoticon("\u{1F46F}".to_string())
}

/// men_with_bunny_ears ๐Ÿ‘ฏโ€โ™‚๏ธ (U+1F46F U+200D U+2642 U+FE0F)
pub fn men_with_bunny_ears() -> Emoticon {
    Emoticon("\u{1F46F}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// women_with_bunny_ears ๐Ÿ‘ฏโ€โ™€๏ธ (U+1F46F U+200D U+2640 U+FE0F)
pub fn women_with_bunny_ears() -> Emoticon {
    Emoticon("\u{1F46F}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_in_steamy_room ๐Ÿง– (U+1F9D6)
pub fn person_in_steamy_room() -> Emoticon {
    Emoticon("\u{1F9D6}".to_string())
}

/// man_in_steamy_room ๐Ÿง–โ€โ™‚๏ธ (U+1F9D6 U+200D U+2642 U+FE0F)
pub fn man_in_steamy_room() -> Emoticon {
    Emoticon("\u{1F9D6}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_in_steamy_room ๐Ÿง–โ€โ™€๏ธ (U+1F9D6 U+200D U+2640 U+FE0F)
pub fn woman_in_steamy_room() -> Emoticon {
    Emoticon("\u{1F9D6}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_climbing ๐Ÿง— (U+1F9D7)
pub fn person_climbing() -> Emoticon {
    Emoticon("\u{1F9D7}".to_string())
}

/// man_climbing ๐Ÿง—โ€โ™‚๏ธ (U+1F9D7 U+200D U+2642 U+FE0F)
pub fn man_climbing() -> Emoticon {
    Emoticon("\u{1F9D7}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_climbing ๐Ÿง—โ€โ™€๏ธ (U+1F9D7 U+200D U+2640 U+FE0F)
pub fn woman_climbing() -> Emoticon {
    Emoticon("\u{1F9D7}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_fencing ๐Ÿคบ (U+1F93A)
pub fn person_fencing() -> Emoticon {
    Emoticon("\u{1F93A}".to_string())
}

/// horse_racing ๐Ÿ‡ (U+1F3C7)
pub fn horse_racing() -> Emoticon {
    Emoticon("\u{1F3C7}".to_string())
}

/// skier โ›ท (U+26F7)
pub fn skier() -> Emoticon {
    Emoticon("\u{26F7}".to_string())
}

/// snowboarder ๐Ÿ‚ (U+1F3C2)
pub fn snowboarder() -> Emoticon {
    Emoticon("\u{1F3C2}".to_string())
}

/// person_golfing ๐ŸŒ (U+1F3CC)
pub fn person_golfing() -> Emoticon {
    Emoticon("\u{1F3CC}".to_string())
}

/// man_golfing ๐ŸŒ๏ธโ€โ™‚๏ธ (U+1F3CC U+FE0F U+200D U+2642 U+FE0F)
pub fn man_golfing() -> Emoticon {
    Emoticon("\u{1F3CC}\u{FE0F}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_golfing ๐ŸŒ๏ธโ€โ™€๏ธ (U+1F3CC U+FE0F U+200D U+2640 U+FE0F)
pub fn woman_golfing() -> Emoticon {
    Emoticon("\u{1F3CC}\u{FE0F}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_surfing ๐Ÿ„ (U+1F3C4)
pub fn person_surfing() -> Emoticon {
    Emoticon("\u{1F3C4}".to_string())
}

/// man_surfing ๐Ÿ„โ€โ™‚๏ธ (U+1F3C4 U+200D U+2642 U+FE0F)
pub fn man_surfing() -> Emoticon {
    Emoticon("\u{1F3C4}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_surfing ๐Ÿ„โ€โ™€๏ธ (U+1F3C4 U+200D U+2640 U+FE0F)
pub fn woman_surfing() -> Emoticon {
    Emoticon("\u{1F3C4}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_rowing_boat ๐Ÿšฃ (U+1F6A3)
pub fn person_rowing_boat() -> Emoticon {
    Emoticon("\u{1F6A3}".to_string())
}

/// man_rowing_boat ๐Ÿšฃโ€โ™‚๏ธ (U+1F6A3 U+200D U+2642 U+FE0F)
pub fn man_rowing_boat() -> Emoticon {
    Emoticon("\u{1F6A3}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_rowing_boat ๐Ÿšฃโ€โ™€๏ธ (U+1F6A3 U+200D U+2640 U+FE0F)
pub fn woman_rowing_boat() -> Emoticon {
    Emoticon("\u{1F6A3}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_swimming ๐ŸŠ (U+1F3CA)
pub fn person_swimming() -> Emoticon {
    Emoticon("\u{1F3CA}".to_string())
}

/// man_swimming ๐ŸŠโ€โ™‚๏ธ (U+1F3CA U+200D U+2642 U+FE0F)
pub fn man_swimming() -> Emoticon {
    Emoticon("\u{1F3CA}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_swimming ๐ŸŠโ€โ™€๏ธ (U+1F3CA U+200D U+2640 U+FE0F)
pub fn woman_swimming() -> Emoticon {
    Emoticon("\u{1F3CA}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_bouncing_ball โ›น (U+26F9)
pub fn person_bouncing_ball() -> Emoticon {
    Emoticon("\u{26F9}".to_string())
}

/// man_bouncing_ball โ›น๏ธโ€โ™‚๏ธ (U+26F9 U+FE0F U+200D U+2642 U+FE0F)
pub fn man_bouncing_ball() -> Emoticon {
    Emoticon("\u{26F9}\u{FE0F}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_bouncing_ball โ›น๏ธโ€โ™€๏ธ (U+26F9 U+FE0F U+200D U+2640 U+FE0F)
pub fn woman_bouncing_ball() -> Emoticon {
    Emoticon("\u{26F9}\u{FE0F}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_lifting_weights ๐Ÿ‹ (U+1F3CB)
pub fn person_lifting_weights() -> Emoticon {
    Emoticon("\u{1F3CB}".to_string())
}

/// man_lifting_weights ๐Ÿ‹๏ธโ€โ™‚๏ธ (U+1F3CB U+FE0F U+200D U+2642 U+FE0F)
pub fn man_lifting_weights() -> Emoticon {
    Emoticon("\u{1F3CB}\u{FE0F}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_lifting_weights ๐Ÿ‹๏ธโ€โ™€๏ธ (U+1F3CB U+FE0F U+200D U+2640 U+FE0F)
pub fn woman_lifting_weights() -> Emoticon {
    Emoticon("\u{1F3CB}\u{FE0F}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_biking ๐Ÿšด (U+1F6B4)
pub fn person_biking() -> Emoticon {
    Emoticon("\u{1F6B4}".to_string())
}

/// man_biking ๐Ÿšดโ€โ™‚๏ธ (U+1F6B4 U+200D U+2642 U+FE0F)
pub fn man_biking() -> Emoticon {
    Emoticon("\u{1F6B4}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_biking ๐Ÿšดโ€โ™€๏ธ (U+1F6B4 U+200D U+2640 U+FE0F)
pub fn woman_biking() -> Emoticon {
    Emoticon("\u{1F6B4}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_mountain_biking ๐Ÿšต (U+1F6B5)
pub fn person_mountain_biking() -> Emoticon {
    Emoticon("\u{1F6B5}".to_string())
}

/// man_mountain_biking ๐Ÿšตโ€โ™‚๏ธ (U+1F6B5 U+200D U+2642 U+FE0F)
pub fn man_mountain_biking() -> Emoticon {
    Emoticon("\u{1F6B5}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_mountain_biking ๐Ÿšตโ€โ™€๏ธ (U+1F6B5 U+200D U+2640 U+FE0F)
pub fn woman_mountain_biking() -> Emoticon {
    Emoticon("\u{1F6B5}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_cartwheeling ๐Ÿคธ (U+1F938)
pub fn person_cartwheeling() -> Emoticon {
    Emoticon("\u{1F938}".to_string())
}

/// man_cartwheeling ๐Ÿคธโ€โ™‚๏ธ (U+1F938 U+200D U+2642 U+FE0F)
pub fn man_cartwheeling() -> Emoticon {
    Emoticon("\u{1F938}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_cartwheeling ๐Ÿคธโ€โ™€๏ธ (U+1F938 U+200D U+2640 U+FE0F)
pub fn woman_cartwheeling() -> Emoticon {
    Emoticon("\u{1F938}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// people_wrestling ๐Ÿคผ (U+1F93C)
pub fn people_wrestling() -> Emoticon {
    Emoticon("\u{1F93C}".to_string())
}

/// men_wrestling ๐Ÿคผโ€โ™‚๏ธ (U+1F93C U+200D U+2642 U+FE0F)
pub fn men_wrestling() -> Emoticon {
    Emoticon("\u{1F93C}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// women_wrestling ๐Ÿคผโ€โ™€๏ธ (U+1F93C U+200D U+2640 U+FE0F)
pub fn women_wrestling() -> Emoticon {
    Emoticon("\u{1F93C}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_playing_water_polo ๐Ÿคฝ (U+1F93D)
pub fn person_playing_water_polo() -> Emoticon {
    Emoticon("\u{1F93D}".to_string())
}

/// man_playing_water_polo ๐Ÿคฝโ€โ™‚๏ธ (U+1F93D U+200D U+2642 U+FE0F)
pub fn man_playing_water_polo() -> Emoticon {
    Emoticon("\u{1F93D}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_playing_water_polo ๐Ÿคฝโ€โ™€๏ธ (U+1F93D U+200D U+2640 U+FE0F)
pub fn woman_playing_water_polo() -> Emoticon {
    Emoticon("\u{1F93D}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_playing_handball ๐Ÿคพ (U+1F93E)
pub fn person_playing_handball() -> Emoticon {
    Emoticon("\u{1F93E}".to_string())
}

/// man_playing_handball ๐Ÿคพโ€โ™‚๏ธ (U+1F93E U+200D U+2642 U+FE0F)
pub fn man_playing_handball() -> Emoticon {
    Emoticon("\u{1F93E}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_playing_handball ๐Ÿคพโ€โ™€๏ธ (U+1F93E U+200D U+2640 U+FE0F)
pub fn woman_playing_handball() -> Emoticon {
    Emoticon("\u{1F93E}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_juggling ๐Ÿคน (U+1F939)
pub fn person_juggling() -> Emoticon {
    Emoticon("\u{1F939}".to_string())
}

/// man_juggling ๐Ÿคนโ€โ™‚๏ธ (U+1F939 U+200D U+2642 U+FE0F)
pub fn man_juggling() -> Emoticon {
    Emoticon("\u{1F939}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_juggling ๐Ÿคนโ€โ™€๏ธ (U+1F939 U+200D U+2640 U+FE0F)
pub fn woman_juggling() -> Emoticon {
    Emoticon("\u{1F939}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_in_lotus_position ๐Ÿง˜ (U+1F9D8)
pub fn person_in_lotus_position() -> Emoticon {
    Emoticon("\u{1F9D8}".to_string())
}

/// man_in_lotus_position ๐Ÿง˜โ€โ™‚๏ธ (U+1F9D8 U+200D U+2642 U+FE0F)
pub fn man_in_lotus_position() -> Emoticon {
    Emoticon("\u{1F9D8}\u{200D}\u{2642}\u{FE0F}".to_string())
}

/// woman_in_lotus_position ๐Ÿง˜โ€โ™€๏ธ (U+1F9D8 U+200D U+2640 U+FE0F)
pub fn woman_in_lotus_position() -> Emoticon {
    Emoticon("\u{1F9D8}\u{200D}\u{2640}\u{FE0F}".to_string())
}

/// person_taking_bath ๐Ÿ›€ (U+1F6C0)
pub fn person_taking_bath() -> Emoticon {
    Emoticon("\u{1F6C0}".to_string())
}

/// person_in_bed ๐Ÿ›Œ (U+1F6CC)
pub fn person_in_bed() -> Emoticon {
    Emoticon("\u{1F6CC}".to_string())
}

/// people_holding_hands ๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘ (U+1F9D1 U+200D U+1F91D U+200D U+1F9D1)
pub fn people_holding_hands() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F91D}\u{200D}\u{1F9D1}".to_string())
}

/// women_holding_hands ๐Ÿ‘ญ (U+1F46D)
pub fn women_holding_hands() -> Emoticon {
    Emoticon("\u{1F46D}".to_string())
}

/// woman_and_man_holding_hands ๐Ÿ‘ซ (U+1F46B)
pub fn woman_and_man_holding_hands() -> Emoticon {
    Emoticon("\u{1F46B}".to_string())
}

/// men_holding_hands ๐Ÿ‘ฌ (U+1F46C)
pub fn men_holding_hands() -> Emoticon {
    Emoticon("\u{1F46C}".to_string())
}

/// kiss ๐Ÿ’ (U+1F48F)
pub fn kiss() -> Emoticon {
    Emoticon("\u{1F48F}".to_string())
}

/// kiss_woman_man ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ (U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468)
pub fn kiss_woman_man() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{2764}\u{FE0F}\u{200D}\u{1F48B}\u{200D}\u{1F468}".to_string())
}

/// kiss_man_man ๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ (U+1F468 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468)
pub fn kiss_man_man() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{2764}\u{FE0F}\u{200D}\u{1F48B}\u{200D}\u{1F468}".to_string())
}

/// kiss_woman_woman ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ (U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469)
pub fn kiss_woman_woman() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{2764}\u{FE0F}\u{200D}\u{1F48B}\u{200D}\u{1F469}".to_string())
}

/// couple_with_heart ๐Ÿ’‘ (U+1F491)
pub fn couple_with_heart() -> Emoticon {
    Emoticon("\u{1F491}".to_string())
}

/// couple_with_heart_woman_man ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ (U+1F469 U+200D U+2764 U+FE0F U+200D U+1F468)
pub fn couple_with_heart_woman_man() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{2764}\u{FE0F}\u{200D}\u{1F468}".to_string())
}

/// couple_with_heart_man_man ๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ (U+1F468 U+200D U+2764 U+FE0F U+200D U+1F468)
pub fn couple_with_heart_man_man() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{2764}\u{FE0F}\u{200D}\u{1F468}".to_string())
}

/// couple_with_heart_woman_woman ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ (U+1F469 U+200D U+2764 U+FE0F U+200D U+1F469)
pub fn couple_with_heart_woman_woman() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{2764}\u{FE0F}\u{200D}\u{1F469}".to_string())
}

/// family_man_woman_boy ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F469 U+200D U+1F466)
pub fn family_man_woman_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F469}\u{200D}\u{1F466}".to_string())
}

/// family_man_woman_girl ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง (U+1F468 U+200D U+1F469 U+200D U+1F467)
pub fn family_man_woman_girl() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F469}\u{200D}\u{1F467}".to_string())
}

/// family_man_woman_girl_boy ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466)
pub fn family_man_woman_girl_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F466}".to_string())
}

/// family_man_woman_boy_boy ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466)
pub fn family_man_woman_boy_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F469}\u{200D}\u{1F466}\u{200D}\u{1F466}".to_string())
}

/// family_man_woman_girl_girl ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง (U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467)
pub fn family_man_woman_girl_girl() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F467}".to_string())
}

/// family_man_man_boy ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F468 U+200D U+1F466)
pub fn family_man_man_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F468}\u{200D}\u{1F466}".to_string())
}

/// family_man_man_girl ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง (U+1F468 U+200D U+1F468 U+200D U+1F467)
pub fn family_man_man_girl() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F468}\u{200D}\u{1F467}".to_string())
}

/// family_man_man_girl_boy ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466)
pub fn family_man_man_girl_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F468}\u{200D}\u{1F467}\u{200D}\u{1F466}".to_string())
}

/// family_man_man_boy_boy ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466)
pub fn family_man_man_boy_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F468}\u{200D}\u{1F466}\u{200D}\u{1F466}".to_string())
}

/// family_man_man_girl_girl ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง (U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467)
pub fn family_man_man_girl_girl() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F468}\u{200D}\u{1F467}\u{200D}\u{1F467}".to_string())
}

/// family_woman_woman_boy ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ (U+1F469 U+200D U+1F469 U+200D U+1F466)
pub fn family_woman_woman_boy() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F469}\u{200D}\u{1F466}".to_string())
}

/// family_woman_woman_girl ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง (U+1F469 U+200D U+1F469 U+200D U+1F467)
pub fn family_woman_woman_girl() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F469}\u{200D}\u{1F467}".to_string())
}

/// family_woman_woman_girl_boy ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ (U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466)
pub fn family_woman_woman_girl_boy() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F466}".to_string())
}

/// family_woman_woman_boy_boy ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ (U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466)
pub fn family_woman_woman_boy_boy() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F469}\u{200D}\u{1F466}\u{200D}\u{1F466}".to_string())
}

/// family_woman_woman_girl_girl ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง (U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467)
pub fn family_woman_woman_girl_girl() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F467}".to_string())
}

/// family_man_boy ๐Ÿ‘จโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F466)
pub fn family_man_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F466}".to_string())
}

/// family_man_boy_boy ๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F466 U+200D U+1F466)
pub fn family_man_boy_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F466}\u{200D}\u{1F466}".to_string())
}

/// family_man_girl ๐Ÿ‘จโ€๐Ÿ‘ง (U+1F468 U+200D U+1F467)
pub fn family_man_girl() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F467}".to_string())
}

/// family_man_girl_boy ๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ (U+1F468 U+200D U+1F467 U+200D U+1F466)
pub fn family_man_girl_boy() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F467}\u{200D}\u{1F466}".to_string())
}

/// family_man_girl_girl ๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง (U+1F468 U+200D U+1F467 U+200D U+1F467)
pub fn family_man_girl_girl() -> Emoticon {
    Emoticon("\u{1F468}\u{200D}\u{1F467}\u{200D}\u{1F467}".to_string())
}

/// family_woman_boy ๐Ÿ‘ฉโ€๐Ÿ‘ฆ (U+1F469 U+200D U+1F466)
pub fn family_woman_boy() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F466}".to_string())
}

/// family_woman_boy_boy ๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ (U+1F469 U+200D U+1F466 U+200D U+1F466)
pub fn family_woman_boy_boy() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F466}\u{200D}\u{1F466}".to_string())
}

/// family_woman_girl ๐Ÿ‘ฉโ€๐Ÿ‘ง (U+1F469 U+200D U+1F467)
pub fn family_woman_girl() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F467}".to_string())
}

/// family_woman_girl_boy ๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ (U+1F469 U+200D U+1F467 U+200D U+1F466)
pub fn family_woman_girl_boy() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F466}".to_string())
}

/// family_woman_girl_girl ๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง (U+1F469 U+200D U+1F467 U+200D U+1F467)
pub fn family_woman_girl_girl() -> Emoticon {
    Emoticon("\u{1F469}\u{200D}\u{1F467}\u{200D}\u{1F467}".to_string())
}

/// speaking_head ๐Ÿ—ฃ (U+1F5E3)
pub fn speaking_head() -> Emoticon {
    Emoticon("\u{1F5E3}".to_string())
}

/// bust_in_silhouette ๐Ÿ‘ค (U+1F464)
pub fn bust_in_silhouette() -> Emoticon {
    Emoticon("\u{1F464}".to_string())
}

/// busts_in_silhouette ๐Ÿ‘ฅ (U+1F465)
pub fn busts_in_silhouette() -> Emoticon {
    Emoticon("\u{1F465}".to_string())
}

/// people_hugging ๐Ÿซ‚ (U+1FAC2)
pub fn people_hugging() -> Emoticon {
    Emoticon("\u{1FAC2}".to_string())
}

/// family ๐Ÿ‘ช (U+1F46A)
pub fn family() -> Emoticon {
    Emoticon("\u{1F46A}".to_string())
}

/// __family_adult_adult_child ๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’ (U+1F9D1 U+200D U+1F9D1 U+200D U+1F9D2)
pub fn family_adult_adult_child() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9D1}\u{200D}\u{1F9D2}".to_string())
}

/// __family_adult_adult_child_child ๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ (U+1F9D1 U+200D U+1F9D1 U+200D U+1F9D2 U+200D U+1F9D2)
pub fn family_adult_adult_child_child() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9D1}\u{200D}\u{1F9D2}\u{200D}\u{1F9D2}".to_string())
}

/// __family_adult_child ๐Ÿง‘โ€๐Ÿง’ (U+1F9D1 U+200D U+1F9D2)
pub fn family_adult_child() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9D2}".to_string())
}

/// __family_adult_child_child ๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ (U+1F9D1 U+200D U+1F9D2 U+200D U+1F9D2)
pub fn family_adult_child_child() -> Emoticon {
    Emoticon("\u{1F9D1}\u{200D}\u{1F9D2}\u{200D}\u{1F9D2}".to_string())
}

/// footprints ๐Ÿ‘ฃ (U+1F463)
pub fn footprints() -> Emoticon {
    Emoticon("\u{1F463}".to_string())
}