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
//! Symbols

use crate::Emoticon;

/// ATM_sign 🏧 (U+1F3E7)
pub fn atm_sign() -> Emoticon {
    Emoticon("\u{1F3E7}".to_string())
}

/// litter_in_bin_sign 🚮 (U+1F6AE)
pub fn litter_in_bin_sign() -> Emoticon {
    Emoticon("\u{1F6AE}".to_string())
}

/// potable_water 🚰 (U+1F6B0)
pub fn potable_water() -> Emoticon {
    Emoticon("\u{1F6B0}".to_string())
}

/// wheelchair_symbol ♿ (U+267F)
pub fn wheelchair_symbol() -> Emoticon {
    Emoticon("\u{267F}".to_string())
}

/// men_s_room 🚹 (U+1F6B9)
pub fn men_s_room() -> Emoticon {
    Emoticon("\u{1F6B9}".to_string())
}

/// restroom 🚺 (U+1F6BA)
pub fn restroom() -> Emoticon {
    Emoticon("\u{1F6BA}".to_string())
}

/// baby_symbol 🚼 (U+1F6BC)
pub fn baby_symbol() -> Emoticon {
    Emoticon("\u{1F6BC}".to_string())
}

/// water_closet 🚾 (U+1F6BE)
pub fn water_closet() -> Emoticon {
    Emoticon("\u{1F6BE}".to_string())
}

/// passport_control 🛂 (U+1F6C2)
pub fn passport_control() -> Emoticon {
    Emoticon("\u{1F6C2}".to_string())
}

/// customs 🛃 (U+1F6C3)
pub fn customs() -> Emoticon {
    Emoticon("\u{1F6C3}".to_string())
}

/// baggage_claim 🛄 (U+1F6C4)
pub fn baggage_claim() -> Emoticon {
    Emoticon("\u{1F6C4}".to_string())
}

/// left_luggage 🛅 (U+1F6C5)
pub fn left_luggage() -> Emoticon {
    Emoticon("\u{1F6C5}".to_string())
}

/// warning ⚠ (U+26A0)
pub fn warning() -> Emoticon {
    Emoticon("\u{26A0}".to_string())
}

/// children_crossing 🚸 (U+1F6B8)
pub fn children_crossing() -> Emoticon {
    Emoticon("\u{1F6B8}".to_string())
}

/// no_entry ⛔ (U+26D4)
pub fn no_entry() -> Emoticon {
    Emoticon("\u{26D4}".to_string())
}

/// prohibited 🚫 (U+1F6AB)
pub fn prohibited() -> Emoticon {
    Emoticon("\u{1F6AB}".to_string())
}

/// no_bicycles 🚳 (U+1F6B3)
pub fn no_bicycles() -> Emoticon {
    Emoticon("\u{1F6B3}".to_string())
}

/// no_smoking 🚭 (U+1F6AD)
pub fn no_smoking() -> Emoticon {
    Emoticon("\u{1F6AD}".to_string())
}

/// no_littering 🚯 (U+1F6AF)
pub fn no_littering() -> Emoticon {
    Emoticon("\u{1F6AF}".to_string())
}

/// non_potable_water 🚱 (U+1F6B1)
pub fn non_potable_water() -> Emoticon {
    Emoticon("\u{1F6B1}".to_string())
}

/// no_pedestrians 🚷 (U+1F6B7)
pub fn no_pedestrians() -> Emoticon {
    Emoticon("\u{1F6B7}".to_string())
}

/// no_mobile_phones 📵 (U+1F4F5)
pub fn no_mobile_phones() -> Emoticon {
    Emoticon("\u{1F4F5}".to_string())
}

/// no_one_under_eighteen 🔞 (U+1F51E)
pub fn no_one_under_eighteen() -> Emoticon {
    Emoticon("\u{1F51E}".to_string())
}

/// radioactive ☢ (U+2622)
pub fn radioactive() -> Emoticon {
    Emoticon("\u{2622}".to_string())
}

/// biohazard ☣ (U+2623)
pub fn biohazard() -> Emoticon {
    Emoticon("\u{2623}".to_string())
}

/// up_arrow ⬆ (U+2B06)
pub fn up_arrow() -> Emoticon {
    Emoticon("\u{2B06}".to_string())
}

/// up_right_arrow ↗ (U+2197)
pub fn up_right_arrow() -> Emoticon {
    Emoticon("\u{2197}".to_string())
}

/// right_arrow ➡ (U+27A1)
pub fn right_arrow() -> Emoticon {
    Emoticon("\u{27A1}".to_string())
}

/// down_right_arrow ↘ (U+2198)
pub fn down_right_arrow() -> Emoticon {
    Emoticon("\u{2198}".to_string())
}

/// down_arrow ⬇ (U+2B07)
pub fn down_arrow() -> Emoticon {
    Emoticon("\u{2B07}".to_string())
}

/// down_left_arrow ↙ (U+2199)
pub fn down_left_arrow() -> Emoticon {
    Emoticon("\u{2199}".to_string())
}

/// left_arrow ⬅ (U+2B05)
pub fn left_arrow() -> Emoticon {
    Emoticon("\u{2B05}".to_string())
}

/// up_left_arrow ↖ (U+2196)
pub fn up_left_arrow() -> Emoticon {
    Emoticon("\u{2196}".to_string())
}

/// up_down_arrow ↕ (U+2195)
pub fn up_down_arrow() -> Emoticon {
    Emoticon("\u{2195}".to_string())
}

/// left_right_arrow ↔ (U+2194)
pub fn left_right_arrow() -> Emoticon {
    Emoticon("\u{2194}".to_string())
}

/// right_arrow_curving_left ↩ (U+21A9)
pub fn right_arrow_curving_left() -> Emoticon {
    Emoticon("\u{21A9}".to_string())
}

/// left_arrow_curving_right ↪ (U+21AA)
pub fn left_arrow_curving_right() -> Emoticon {
    Emoticon("\u{21AA}".to_string())
}

/// right_arrow_curving_up ⤴ (U+2934)
pub fn right_arrow_curving_up() -> Emoticon {
    Emoticon("\u{2934}".to_string())
}

/// right_arrow_curving_down ⤵ (U+2935)
pub fn right_arrow_curving_down() -> Emoticon {
    Emoticon("\u{2935}".to_string())
}

/// clockwise_vertical_arrows 🔃 (U+1F503)
pub fn clockwise_vertical_arrows() -> Emoticon {
    Emoticon("\u{1F503}".to_string())
}

/// counterclockwise_arrows_button 🔄 (U+1F504)
pub fn counterclockwise_arrows_button() -> Emoticon {
    Emoticon("\u{1F504}".to_string())
}

/// BACK_arrow 🔙 (U+1F519)
pub fn back_arrow() -> Emoticon {
    Emoticon("\u{1F519}".to_string())
}

/// END_arrow 🔚 (U+1F51A)
pub fn end_arrow() -> Emoticon {
    Emoticon("\u{1F51A}".to_string())
}

/// ON_arrow 🔛 (U+1F51B)
pub fn on_arrow() -> Emoticon {
    Emoticon("\u{1F51B}".to_string())
}

/// SOON_arrow 🔜 (U+1F51C)
pub fn soon_arrow() -> Emoticon {
    Emoticon("\u{1F51C}".to_string())
}

/// TOP_arrow 🔝 (U+1F51D)
pub fn top_arrow() -> Emoticon {
    Emoticon("\u{1F51D}".to_string())
}

/// place_of_worship 🛐 (U+1F6D0)
pub fn place_of_worship() -> Emoticon {
    Emoticon("\u{1F6D0}".to_string())
}

/// atom_symbol ⚛ (U+269B)
pub fn atom_symbol() -> Emoticon {
    Emoticon("\u{269B}".to_string())
}

/// om 🕉 (U+1F549)
pub fn om() -> Emoticon {
    Emoticon("\u{1F549}".to_string())
}

/// star_of_David ✡ (U+2721)
pub fn star_of_david() -> Emoticon {
    Emoticon("\u{2721}".to_string())
}

/// wheel_of_dharma ☸ (U+2638)
pub fn wheel_of_dharma() -> Emoticon {
    Emoticon("\u{2638}".to_string())
}

/// yin_yang ☯ (U+262F)
pub fn yin_yang() -> Emoticon {
    Emoticon("\u{262F}".to_string())
}

/// latin_cross ✝ (U+271D)
pub fn latin_cross() -> Emoticon {
    Emoticon("\u{271D}".to_string())
}

/// orthodox_cross ☦ (U+2626)
pub fn orthodox_cross() -> Emoticon {
    Emoticon("\u{2626}".to_string())
}

/// star_and_crescent ☪ (U+262A)
pub fn star_and_crescent() -> Emoticon {
    Emoticon("\u{262A}".to_string())
}

/// peace_symbol ☮ (U+262E)
pub fn peace_symbol() -> Emoticon {
    Emoticon("\u{262E}".to_string())
}

/// menorah 🕎 (U+1F54E)
pub fn menorah() -> Emoticon {
    Emoticon("\u{1F54E}".to_string())
}

/// dotted_six_pointed_star 🔯 (U+1F52F)
pub fn dotted_six_pointed_star() -> Emoticon {
    Emoticon("\u{1F52F}".to_string())
}

/// khanda 🪯 (U+1FAAF)
pub fn khanda() -> Emoticon {
    Emoticon("\u{1FAAF}".to_string())
}

/// Aries ♈ (U+2648)
pub fn aries() -> Emoticon {
    Emoticon("\u{2648}".to_string())
}

/// Taurus ♉ (U+2649)
pub fn taurus() -> Emoticon {
    Emoticon("\u{2649}".to_string())
}

/// Gemini ♊ (U+264A)
pub fn gemini() -> Emoticon {
    Emoticon("\u{264A}".to_string())
}

/// Cancer ♋ (U+264B)
pub fn cancer() -> Emoticon {
    Emoticon("\u{264B}".to_string())
}

/// Leo ♌ (U+264C)
pub fn leo() -> Emoticon {
    Emoticon("\u{264C}".to_string())
}

/// Virgo ♍ (U+264D)
pub fn virgo() -> Emoticon {
    Emoticon("\u{264D}".to_string())
}

/// Libra ♎ (U+264E)
pub fn libra() -> Emoticon {
    Emoticon("\u{264E}".to_string())
}

/// Scorpio ♏ (U+264F)
pub fn scorpio() -> Emoticon {
    Emoticon("\u{264F}".to_string())
}

/// Sagittarius ♐ (U+2650)
pub fn sagittarius() -> Emoticon {
    Emoticon("\u{2650}".to_string())
}

/// Capricorn ♑ (U+2651)
pub fn capricorn() -> Emoticon {
    Emoticon("\u{2651}".to_string())
}

/// Aquarius ♒ (U+2652)
pub fn aquarius() -> Emoticon {
    Emoticon("\u{2652}".to_string())
}

/// Pisces ♓ (U+2653)
pub fn pisces() -> Emoticon {
    Emoticon("\u{2653}".to_string())
}

/// Ophiuchus ⛎ (U+26CE)
pub fn ophiuchus() -> Emoticon {
    Emoticon("\u{26CE}".to_string())
}

/// shuffle_tracks_button 🔀 (U+1F500)
pub fn shuffle_tracks_button() -> Emoticon {
    Emoticon("\u{1F500}".to_string())
}

/// repeat_button 🔁 (U+1F501)
pub fn repeat_button() -> Emoticon {
    Emoticon("\u{1F501}".to_string())
}

/// repeat_single_button 🔂 (U+1F502)
pub fn repeat_single_button() -> Emoticon {
    Emoticon("\u{1F502}".to_string())
}

/// play_button ▶ (U+25B6)
pub fn play_button() -> Emoticon {
    Emoticon("\u{25B6}".to_string())
}

/// fast_forward_button ⏩ (U+23E9)
pub fn fast_forward_button() -> Emoticon {
    Emoticon("\u{23E9}".to_string())
}

/// next_track_button ⏭ (U+23ED)
pub fn next_track_button() -> Emoticon {
    Emoticon("\u{23ED}".to_string())
}

/// play_or_pause_button ⏯ (U+23EF)
pub fn play_or_pause_button() -> Emoticon {
    Emoticon("\u{23EF}".to_string())
}

/// reverse_button ◀ (U+25C0)
pub fn reverse_button() -> Emoticon {
    Emoticon("\u{25C0}".to_string())
}

/// fast_reverse_button ⏪ (U+23EA)
pub fn fast_reverse_button() -> Emoticon {
    Emoticon("\u{23EA}".to_string())
}

/// last_track_button ⏮ (U+23EE)
pub fn last_track_button() -> Emoticon {
    Emoticon("\u{23EE}".to_string())
}

/// upwards_button 🔼 (U+1F53C)
pub fn upwards_button() -> Emoticon {
    Emoticon("\u{1F53C}".to_string())
}

/// fast_up_button ⏫ (U+23EB)
pub fn fast_up_button() -> Emoticon {
    Emoticon("\u{23EB}".to_string())
}

/// downwards_button 🔽 (U+1F53D)
pub fn downwards_button() -> Emoticon {
    Emoticon("\u{1F53D}".to_string())
}

/// fast_down_button ⏬ (U+23EC)
pub fn fast_down_button() -> Emoticon {
    Emoticon("\u{23EC}".to_string())
}

/// pause_button ⏸ (U+23F8)
pub fn pause_button() -> Emoticon {
    Emoticon("\u{23F8}".to_string())
}

/// stop_button ⏹ (U+23F9)
pub fn stop_button() -> Emoticon {
    Emoticon("\u{23F9}".to_string())
}

/// record_button ⏺ (U+23FA)
pub fn record_button() -> Emoticon {
    Emoticon("\u{23FA}".to_string())
}

/// eject_button ⏏ (U+23CF)
pub fn eject_button() -> Emoticon {
    Emoticon("\u{23CF}".to_string())
}

/// cinema 🎦 (U+1F3A6)
pub fn cinema() -> Emoticon {
    Emoticon("\u{1F3A6}".to_string())
}

/// dim_button 🔅 (U+1F505)
pub fn dim_button() -> Emoticon {
    Emoticon("\u{1F505}".to_string())
}

/// bright_button 🔆 (U+1F506)
pub fn bright_button() -> Emoticon {
    Emoticon("\u{1F506}".to_string())
}

/// antenna_bars 📶 (U+1F4F6)
pub fn antenna_bars() -> Emoticon {
    Emoticon("\u{1F4F6}".to_string())
}

/// wireless 🛜 (U+1F6DC)
pub fn wireless() -> Emoticon {
    Emoticon("\u{1F6DC}".to_string())
}

/// vibration_mode 📳 (U+1F4F3)
pub fn vibration_mode() -> Emoticon {
    Emoticon("\u{1F4F3}".to_string())
}

/// mobile_phone_off 📴 (U+1F4F4)
pub fn mobile_phone_off() -> Emoticon {
    Emoticon("\u{1F4F4}".to_string())
}

/// female_sign ♀ (U+2640)
pub fn female_sign() -> Emoticon {
    Emoticon("\u{2640}".to_string())
}

/// male_sign ♂ (U+2642)
pub fn male_sign() -> Emoticon {
    Emoticon("\u{2642}".to_string())
}

/// transgender_symbol ⚧ (U+26A7)
pub fn transgender_symbol() -> Emoticon {
    Emoticon("\u{26A7}".to_string())
}

/// multiply ✖ (U+2716)
pub fn multiply() -> Emoticon {
    Emoticon("\u{2716}".to_string())
}

/// plus ➕ (U+2795)
pub fn plus() -> Emoticon {
    Emoticon("\u{2795}".to_string())
}

/// minus ➖ (U+2796)
pub fn minus() -> Emoticon {
    Emoticon("\u{2796}".to_string())
}

/// divide ➗ (U+2797)
pub fn divide() -> Emoticon {
    Emoticon("\u{2797}".to_string())
}

/// heavy_equals_sign 🟰 (U+1F7F0)
pub fn heavy_equals_sign() -> Emoticon {
    Emoticon("\u{1F7F0}".to_string())
}

/// infinity ♾ (U+267E)
pub fn infinity() -> Emoticon {
    Emoticon("\u{267E}".to_string())
}

/// double_exclamation_mark ‼ (U+203C)
pub fn double_exclamation_mark() -> Emoticon {
    Emoticon("\u{203C}".to_string())
}

/// exclamation_question_mark ⁉ (U+2049)
pub fn exclamation_question_mark() -> Emoticon {
    Emoticon("\u{2049}".to_string())
}

/// red_question_mark ❓ (U+2753)
pub fn red_question_mark() -> Emoticon {
    Emoticon("\u{2753}".to_string())
}

/// white_question_mark ❔ (U+2754)
pub fn white_question_mark() -> Emoticon {
    Emoticon("\u{2754}".to_string())
}

/// white_exclamation_mark ❕ (U+2755)
pub fn white_exclamation_mark() -> Emoticon {
    Emoticon("\u{2755}".to_string())
}

/// red_exclamation_mark ❗ (U+2757)
pub fn red_exclamation_mark() -> Emoticon {
    Emoticon("\u{2757}".to_string())
}

/// wavy_dash 〰 (U+3030)
pub fn wavy_dash() -> Emoticon {
    Emoticon("\u{3030}".to_string())
}

/// currency_exchange 💱 (U+1F4B1)
pub fn currency_exchange() -> Emoticon {
    Emoticon("\u{1F4B1}".to_string())
}

/// heavy_dollar_sign 💲 (U+1F4B2)
pub fn heavy_dollar_sign() -> Emoticon {
    Emoticon("\u{1F4B2}".to_string())
}

/// medical_symbol ⚕ (U+2695)
pub fn medical_symbol() -> Emoticon {
    Emoticon("\u{2695}".to_string())
}

/// recycling_symbol ♻ (U+267B)
pub fn recycling_symbol() -> Emoticon {
    Emoticon("\u{267B}".to_string())
}

/// fleur_de_lis ⚜ (U+269C)
pub fn fleur_de_lis() -> Emoticon {
    Emoticon("\u{269C}".to_string())
}

/// trident_emblem 🔱 (U+1F531)
pub fn trident_emblem() -> Emoticon {
    Emoticon("\u{1F531}".to_string())
}

/// name_badge 📛 (U+1F4DB)
pub fn name_badge() -> Emoticon {
    Emoticon("\u{1F4DB}".to_string())
}

/// Japanese_symbol_for_beginner 🔰 (U+1F530)
pub fn japanese_symbol_for_beginner() -> Emoticon {
    Emoticon("\u{1F530}".to_string())
}

/// hollow_red_circle ⭕ (U+2B55)
pub fn hollow_red_circle() -> Emoticon {
    Emoticon("\u{2B55}".to_string())
}

/// check_mark_button ✅ (U+2705)
pub fn check_mark_button() -> Emoticon {
    Emoticon("\u{2705}".to_string())
}

/// check_box_with_check ☑ (U+2611)
pub fn check_box_with_check() -> Emoticon {
    Emoticon("\u{2611}".to_string())
}

/// check_mark ✔ (U+2714)
pub fn check_mark() -> Emoticon {
    Emoticon("\u{2714}".to_string())
}

/// cross_mark ❌ (U+274C)
pub fn cross_mark() -> Emoticon {
    Emoticon("\u{274C}".to_string())
}

/// cross_mark_button ❎ (U+274E)
pub fn cross_mark_button() -> Emoticon {
    Emoticon("\u{274E}".to_string())
}

/// curly_loop ➰ (U+27B0)
pub fn curly_loop() -> Emoticon {
    Emoticon("\u{27B0}".to_string())
}

/// double_curly_loop ➿ (U+27BF)
pub fn double_curly_loop() -> Emoticon {
    Emoticon("\u{27BF}".to_string())
}

/// part_alternation_mark 〽 (U+303D)
pub fn part_alternation_mark() -> Emoticon {
    Emoticon("\u{303D}".to_string())
}

/// eight_spoked_asterisk ✳ (U+2733)
pub fn eight_spoked_asterisk() -> Emoticon {
    Emoticon("\u{2733}".to_string())
}

/// eight_pointed_star ✴ (U+2734)
pub fn eight_pointed_star() -> Emoticon {
    Emoticon("\u{2734}".to_string())
}

/// sparkle ❇ (U+2747)
pub fn sparkle() -> Emoticon {
    Emoticon("\u{2747}".to_string())
}

/// copyright © (U+00A9)
pub fn copyright() -> Emoticon {
    Emoticon("\u{00A9}".to_string())
}

/// registered ® (U+00AE)
pub fn registered() -> Emoticon {
    Emoticon("\u{00AE}".to_string())
}

/// trade_mark ™ (U+2122)
pub fn trade_mark() -> Emoticon {
    Emoticon("\u{2122}".to_string())
}

/// keycap__ #️⃣ (U+0023 U+FE0F U+20E3)
pub fn keycap__() -> Emoticon {
    Emoticon("\u{0023}\u{FE0F}\u{20E3}".to_string())
}

/// keycap__ *️⃣ (U+002A U+FE0F U+20E3)
pub fn keycap() -> Emoticon {
    Emoticon("\u{002A}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_0 0️⃣ (U+0030 U+FE0F U+20E3)
pub fn keycap_0() -> Emoticon {
    Emoticon("\u{0030}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_1 1️⃣ (U+0031 U+FE0F U+20E3)
pub fn keycap_1() -> Emoticon {
    Emoticon("\u{0031}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_2 2️⃣ (U+0032 U+FE0F U+20E3)
pub fn keycap_2() -> Emoticon {
    Emoticon("\u{0032}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_3 3️⃣ (U+0033 U+FE0F U+20E3)
pub fn keycap_3() -> Emoticon {
    Emoticon("\u{0033}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_4 4️⃣ (U+0034 U+FE0F U+20E3)
pub fn keycap_4() -> Emoticon {
    Emoticon("\u{0034}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_5 5️⃣ (U+0035 U+FE0F U+20E3)
pub fn keycap_5() -> Emoticon {
    Emoticon("\u{0035}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_6 6️⃣ (U+0036 U+FE0F U+20E3)
pub fn keycap_6() -> Emoticon {
    Emoticon("\u{0036}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_7 7️⃣ (U+0037 U+FE0F U+20E3)
pub fn keycap_7() -> Emoticon {
    Emoticon("\u{0037}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_8 8️⃣ (U+0038 U+FE0F U+20E3)
pub fn keycap_8() -> Emoticon {
    Emoticon("\u{0038}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_9 9️⃣ (U+0039 U+FE0F U+20E3)
pub fn keycap_9() -> Emoticon {
    Emoticon("\u{0039}\u{FE0F}\u{20E3}".to_string())
}

/// keycap_10 🔟 (U+1F51F)
pub fn keycap_10() -> Emoticon {
    Emoticon("\u{1F51F}".to_string())
}

/// input_latin_uppercase 🔠 (U+1F520)
pub fn input_latin_uppercase() -> Emoticon {
    Emoticon("\u{1F520}".to_string())
}

/// input_latin_lowercase 🔡 (U+1F521)
pub fn input_latin_lowercase() -> Emoticon {
    Emoticon("\u{1F521}".to_string())
}

/// input_numbers 🔢 (U+1F522)
pub fn input_numbers() -> Emoticon {
    Emoticon("\u{1F522}".to_string())
}

/// input_symbols 🔣 (U+1F523)
pub fn input_symbols() -> Emoticon {
    Emoticon("\u{1F523}".to_string())
}

/// input_latin_letters 🔤 (U+1F524)
pub fn input_latin_letters() -> Emoticon {
    Emoticon("\u{1F524}".to_string())
}

/// A_button_blood_type_ 🅰 (U+1F170)
pub fn a_button_blood_type() -> Emoticon {
    Emoticon("\u{1F170}".to_string())
}

/// AB_button_blood_type_ 🆎 (U+1F18E)
pub fn ab_button_blood_type() -> Emoticon {
    Emoticon("\u{1F18E}".to_string())
}

/// B_button_blood_type_ 🅱 (U+1F171)
pub fn b_button_blood_type() -> Emoticon {
    Emoticon("\u{1F171}".to_string())
}

/// CL_button 🆑 (U+1F191)
pub fn cl_button() -> Emoticon {
    Emoticon("\u{1F191}".to_string())
}

/// COOL_button 🆒 (U+1F192)
pub fn cool_button() -> Emoticon {
    Emoticon("\u{1F192}".to_string())
}

/// FREE_button 🆓 (U+1F193)
pub fn free_button() -> Emoticon {
    Emoticon("\u{1F193}".to_string())
}

/// information ℹ (U+2139)
pub fn information() -> Emoticon {
    Emoticon("\u{2139}".to_string())
}

/// ID_button 🆔 (U+1F194)
pub fn id_button() -> Emoticon {
    Emoticon("\u{1F194}".to_string())
}

/// circled_M Ⓜ (U+24C2)
pub fn circled_m() -> Emoticon {
    Emoticon("\u{24C2}".to_string())
}

/// NEW_button 🆕 (U+1F195)
pub fn new_button() -> Emoticon {
    Emoticon("\u{1F195}".to_string())
}

/// NG_button 🆖 (U+1F196)
pub fn ng_button() -> Emoticon {
    Emoticon("\u{1F196}".to_string())
}

/// O_button_blood_type_ 🅾 (U+1F17E)
pub fn o_button_blood_type_() -> Emoticon {
    Emoticon("\u{1F17E}".to_string())
}

/// OK_button 🆗 (U+1F197)
pub fn ok_button() -> Emoticon {
    Emoticon("\u{1F197}".to_string())
}

/// P_button 🅿 (U+1F17F)
pub fn p_button() -> Emoticon {
    Emoticon("\u{1F17F}".to_string())
}

/// SOS_button 🆘 (U+1F198)
pub fn sos_button() -> Emoticon {
    Emoticon("\u{1F198}".to_string())
}

/// UP_button 🆙 (U+1F199)
pub fn up_button() -> Emoticon {
    Emoticon("\u{1F199}".to_string())
}

/// VS_button 🆚 (U+1F19A)
pub fn vs_button() -> Emoticon {
    Emoticon("\u{1F19A}".to_string())
}

/// Japanese_here_button 🈁 (U+1F201)
pub fn japanese_here_button() -> Emoticon {
    Emoticon("\u{1F201}".to_string())
}

/// Japanese_service_charge_button 🈂 (U+1F202)
pub fn japanese_service_charge_button() -> Emoticon {
    Emoticon("\u{1F202}".to_string())
}

/// Japanese_monthly_amount_button 🈷 (U+1F237)
pub fn japanese_monthly_amount_button() -> Emoticon {
    Emoticon("\u{1F237}".to_string())
}

/// Japanese_not_free_of_charge_button 🈶 (U+1F236)
pub fn japanese_not_free_of_charge_button() -> Emoticon {
    Emoticon("\u{1F236}".to_string())
}

/// Japanese_reserved_button 🈯 (U+1F22F)
pub fn japanese_reserved_button() -> Emoticon {
    Emoticon("\u{1F22F}".to_string())
}

/// Japanese_bargain_button 🉐 (U+1F250)
pub fn japanese_bargain_button() -> Emoticon {
    Emoticon("\u{1F250}".to_string())
}

/// Japanese_discount_button 🈹 (U+1F239)
pub fn japanese_discount_button() -> Emoticon {
    Emoticon("\u{1F239}".to_string())
}

/// Japanese_free_of_charge_button 🈚 (U+1F21A)
pub fn japanese_free_of_charge_button() -> Emoticon {
    Emoticon("\u{1F21A}".to_string())
}

/// Japanese_prohibited_button 🈲 (U+1F232)
pub fn japanese_prohibited_button() -> Emoticon {
    Emoticon("\u{1F232}".to_string())
}

/// Japanese_acceptable_button 🉑 (U+1F251)
pub fn japanese_acceptable_button() -> Emoticon {
    Emoticon("\u{1F251}".to_string())
}

/// Japanese_application_button 🈸 (U+1F238)
pub fn japanese_application_button() -> Emoticon {
    Emoticon("\u{1F238}".to_string())
}

/// Japanese_passing_grade_button 🈴 (U+1F234)
pub fn japanese_passing_grade_button() -> Emoticon {
    Emoticon("\u{1F234}".to_string())
}

/// Japanese_vacancy_button 🈳 (U+1F233)
pub fn japanese_vacancy_button() -> Emoticon {
    Emoticon("\u{1F233}".to_string())
}

/// Japanese_congratulations_button ㊗ (U+3297)
pub fn japanese_congratulations_button() -> Emoticon {
    Emoticon("\u{3297}".to_string())
}

/// Japanese_secret_button ㊙ (U+3299)
pub fn japanese_secret_button() -> Emoticon {
    Emoticon("\u{3299}".to_string())
}

/// Japanese_open_for_business_button 🈺 (U+1F23A)
pub fn japanese_open_for_business_button() -> Emoticon {
    Emoticon("\u{1F23A}".to_string())
}

/// Japanese_no_vacancy_button 🈵 (U+1F235)
pub fn japanese_no_vacancy_button() -> Emoticon {
    Emoticon("\u{1F235}".to_string())
}

/// red_circle 🔴 (U+1F534)
pub fn red_circle() -> Emoticon {
    Emoticon("\u{1F534}".to_string())
}

/// orange_circle 🟠 (U+1F7E0)
pub fn orange_circle() -> Emoticon {
    Emoticon("\u{1F7E0}".to_string())
}

/// yellow_circle 🟡 (U+1F7E1)
pub fn yellow_circle() -> Emoticon {
    Emoticon("\u{1F7E1}".to_string())
}

/// green_circle 🟢 (U+1F7E2)
pub fn green_circle() -> Emoticon {
    Emoticon("\u{1F7E2}".to_string())
}

/// blue_circle 🔵 (U+1F535)
pub fn blue_circle() -> Emoticon {
    Emoticon("\u{1F535}".to_string())
}

/// purple_circle 🟣 (U+1F7E3)
pub fn purple_circle() -> Emoticon {
    Emoticon("\u{1F7E3}".to_string())
}

/// brown_circle 🟤 (U+1F7E4)
pub fn brown_circle() -> Emoticon {
    Emoticon("\u{1F7E4}".to_string())
}

/// black_circle ⚫ (U+26AB)
pub fn black_circle() -> Emoticon {
    Emoticon("\u{26AB}".to_string())
}

/// white_circle ⚪ (U+26AA)
pub fn white_circle() -> Emoticon {
    Emoticon("\u{26AA}".to_string())
}

/// red_square 🟥 (U+1F7E5)
pub fn red_square() -> Emoticon {
    Emoticon("\u{1F7E5}".to_string())
}

/// orange_square 🟧 (U+1F7E7)
pub fn orange_square() -> Emoticon {
    Emoticon("\u{1F7E7}".to_string())
}

/// yellow_square 🟨 (U+1F7E8)
pub fn yellow_square() -> Emoticon {
    Emoticon("\u{1F7E8}".to_string())
}

/// green_square 🟩 (U+1F7E9)
pub fn green_square() -> Emoticon {
    Emoticon("\u{1F7E9}".to_string())
}

/// blue_square 🟦 (U+1F7E6)
pub fn blue_square() -> Emoticon {
    Emoticon("\u{1F7E6}".to_string())
}

/// purple_square 🟪 (U+1F7EA)
pub fn purple_square() -> Emoticon {
    Emoticon("\u{1F7EA}".to_string())
}

/// brown_square 🟫 (U+1F7EB)
pub fn brown_square() -> Emoticon {
    Emoticon("\u{1F7EB}".to_string())
}

/// black_large_square ⬛ (U+2B1B)
pub fn black_large_square() -> Emoticon {
    Emoticon("\u{2B1B}".to_string())
}

/// white_large_square ⬜ (U+2B1C)
pub fn white_large_square() -> Emoticon {
    Emoticon("\u{2B1C}".to_string())
}

/// black_medium_square ◼ (U+25FC)
pub fn black_medium_square() -> Emoticon {
    Emoticon("\u{25FC}".to_string())
}

/// white_medium_square ◻ (U+25FB)
pub fn white_medium_square() -> Emoticon {
    Emoticon("\u{25FB}".to_string())
}

/// black_medium_small_square ◾ (U+25FE)
pub fn black_medium_small_square() -> Emoticon {
    Emoticon("\u{25FE}".to_string())
}

/// white_medium_small_square ◽ (U+25FD)
pub fn white_medium_small_square() -> Emoticon {
    Emoticon("\u{25FD}".to_string())
}

/// black_small_square ▪ (U+25AA)
pub fn black_small_square() -> Emoticon {
    Emoticon("\u{25AA}".to_string())
}

/// white_small_square ▫ (U+25AB)
pub fn white_small_square() -> Emoticon {
    Emoticon("\u{25AB}".to_string())
}

/// large_orange_diamond 🔶 (U+1F536)
pub fn large_orange_diamond() -> Emoticon {
    Emoticon("\u{1F536}".to_string())
}

/// large_blue_diamond 🔷 (U+1F537)
pub fn large_blue_diamond() -> Emoticon {
    Emoticon("\u{1F537}".to_string())
}

/// small_orange_diamond 🔸 (U+1F538)
pub fn small_orange_diamond() -> Emoticon {
    Emoticon("\u{1F538}".to_string())
}

/// small_blue_diamond 🔹 (U+1F539)
pub fn small_blue_diamond() -> Emoticon {
    Emoticon("\u{1F539}".to_string())
}

/// red_triangle_pointed_up 🔺 (U+1F53A)
pub fn red_triangle_pointed_up() -> Emoticon {
    Emoticon("\u{1F53A}".to_string())
}

/// red_triangle_pointed_down 🔻 (U+1F53B)
pub fn red_triangle_pointed_down() -> Emoticon {
    Emoticon("\u{1F53B}".to_string())
}

/// diamond_with_a_dot 💠 (U+1F4A0)
pub fn diamond_with_a_dot() -> Emoticon {
    Emoticon("\u{1F4A0}".to_string())
}

/// radio_button 🔘 (U+1F518)
pub fn radio_button() -> Emoticon {
    Emoticon("\u{1F518}".to_string())
}

/// white_square_button 🔳 (U+1F533)
pub fn white_square_button() -> Emoticon {
    Emoticon("\u{1F533}".to_string())
}

/// black_square_button 🔲 (U+1F532)
pub fn black_square_button() -> Emoticon {
    Emoticon("\u{1F532}".to_string())
}