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
//! Food & Drink

use crate::Emoticon;

/// grapes 🍇 (U+1F347)
pub fn grapes() -> Emoticon {
    Emoticon("\u{1F347}".to_string())
}

/// melon 🍈 (U+1F348)
pub fn melon() -> Emoticon {
    Emoticon("\u{1F348}".to_string())
}

/// watermelon 🍉 (U+1F349)
pub fn watermelon() -> Emoticon {
    Emoticon("\u{1F349}".to_string())
}

/// tangerine 🍊 (U+1F34A)
pub fn tangerine() -> Emoticon {
    Emoticon("\u{1F34A}".to_string())
}

/// lemon 🍋 (U+1F34B)
pub fn lemon() -> Emoticon {
    Emoticon("\u{1F34B}".to_string())
}

/// __lime 🍋‍🟩 (U+1F34B U+200D U+1F7E9)
pub fn __lime() -> Emoticon {
    Emoticon("\u{1F34B}\u{200D}\u{1F7E9}".to_string())
}

/// banana 🍌 (U+1F34C)
pub fn banana() -> Emoticon {
    Emoticon("\u{1F34C}".to_string())
}

/// pineapple 🍍 (U+1F34D)
pub fn pineapple() -> Emoticon {
    Emoticon("\u{1F34D}".to_string())
}

/// mango 🥭 (U+1F96D)
pub fn mango() -> Emoticon {
    Emoticon("\u{1F96D}".to_string())
}

/// red_apple 🍎 (U+1F34E)
pub fn red_apple() -> Emoticon {
    Emoticon("\u{1F34E}".to_string())
}

/// green_apple 🍏 (U+1F34F)
pub fn green_apple() -> Emoticon {
    Emoticon("\u{1F34F}".to_string())
}

/// pear 🍐 (U+1F350)
pub fn pear() -> Emoticon {
    Emoticon("\u{1F350}".to_string())
}

/// peach 🍑 (U+1F351)
pub fn peach() -> Emoticon {
    Emoticon("\u{1F351}".to_string())
}

/// cherries 🍒 (U+1F352)
pub fn cherries() -> Emoticon {
    Emoticon("\u{1F352}".to_string())
}

/// strawberry 🍓 (U+1F353)
pub fn strawberry() -> Emoticon {
    Emoticon("\u{1F353}".to_string())
}

/// blueberries 🫐 (U+1FAD0)
pub fn blueberries() -> Emoticon {
    Emoticon("\u{1FAD0}".to_string())
}

/// kiwi_fruit 🥝 (U+1F95D)
pub fn kiwi_fruit() -> Emoticon {
    Emoticon("\u{1F95D}".to_string())
}

/// tomato 🍅 (U+1F345)
pub fn tomato() -> Emoticon {
    Emoticon("\u{1F345}".to_string())
}

/// olive 🫒 (U+1FAD2)
pub fn olive() -> Emoticon {
    Emoticon("\u{1FAD2}".to_string())
}

/// coconut 🥥 (U+1F965)
pub fn coconut() -> Emoticon {
    Emoticon("\u{1F965}".to_string())
}

/// avocado 🥑 (U+1F951)
pub fn avocado() -> Emoticon {
    Emoticon("\u{1F951}".to_string())
}

/// eggplant 🍆 (U+1F346)
pub fn eggplant() -> Emoticon {
    Emoticon("\u{1F346}".to_string())
}

/// potato 🥔 (U+1F954)
pub fn potato() -> Emoticon {
    Emoticon("\u{1F954}".to_string())
}

/// carrot 🥕 (U+1F955)
pub fn carrot() -> Emoticon {
    Emoticon("\u{1F955}".to_string())
}

/// ear_of_corn 🌽 (U+1F33D)
pub fn ear_of_corn() -> Emoticon {
    Emoticon("\u{1F33D}".to_string())
}

/// hot_pepper 🌶 (U+1F336)
pub fn hot_pepper() -> Emoticon {
    Emoticon("\u{1F336}".to_string())
}

/// bell_pepper 🫑 (U+1FAD1)
pub fn bell_pepper() -> Emoticon {
    Emoticon("\u{1FAD1}".to_string())
}

/// cucumber 🥒 (U+1F952)
pub fn cucumber() -> Emoticon {
    Emoticon("\u{1F952}".to_string())
}

/// leafy_green 🥬 (U+1F96C)
pub fn leafy_green() -> Emoticon {
    Emoticon("\u{1F96C}".to_string())
}

/// broccoli 🥦 (U+1F966)
pub fn broccoli() -> Emoticon {
    Emoticon("\u{1F966}".to_string())
}

/// garlic 🧄 (U+1F9C4)
pub fn garlic() -> Emoticon {
    Emoticon("\u{1F9C4}".to_string())
}

/// onion 🧅 (U+1F9C5)
pub fn onion() -> Emoticon {
    Emoticon("\u{1F9C5}".to_string())
}

/// peanuts 🥜 (U+1F95C)
pub fn peanuts() -> Emoticon {
    Emoticon("\u{1F95C}".to_string())
}

/// beans 🫘 (U+1FAD8)
pub fn beans() -> Emoticon {
    Emoticon("\u{1FAD8}".to_string())
}

/// chestnut 🌰 (U+1F330)
pub fn chestnut() -> Emoticon {
    Emoticon("\u{1F330}".to_string())
}

/// ginger_root 🫚 (U+1FADA)
pub fn ginger_root() -> Emoticon {
    Emoticon("\u{1FADA}".to_string())
}

/// pea_pod 🫛 (U+1FADB)
pub fn pea_pod() -> Emoticon {
    Emoticon("\u{1FADB}".to_string())
}

/// __brown_mushroom 🍄‍🟫 (U+1F344 U+200D U+1F7EB)
pub fn __brown_mushroom() -> Emoticon {
    Emoticon("\u{1F344}\u{200D}\u{1F7EB}".to_string())
}

/// bread 🍞 (U+1F35E)
pub fn bread() -> Emoticon {
    Emoticon("\u{1F35E}".to_string())
}

/// croissant 🥐 (U+1F950)
pub fn croissant() -> Emoticon {
    Emoticon("\u{1F950}".to_string())
}

/// baguette_bread 🥖 (U+1F956)
pub fn baguette_bread() -> Emoticon {
    Emoticon("\u{1F956}".to_string())
}

/// flatbread 🫓 (U+1FAD3)
pub fn flatbread() -> Emoticon {
    Emoticon("\u{1FAD3}".to_string())
}

/// pretzel 🥨 (U+1F968)
pub fn pretzel() -> Emoticon {
    Emoticon("\u{1F968}".to_string())
}

/// bagel 🥯 (U+1F96F)
pub fn bagel() -> Emoticon {
    Emoticon("\u{1F96F}".to_string())
}

/// pancakes 🥞 (U+1F95E)
pub fn pancakes() -> Emoticon {
    Emoticon("\u{1F95E}".to_string())
}

/// waffle 🧇 (U+1F9C7)
pub fn waffle() -> Emoticon {
    Emoticon("\u{1F9C7}".to_string())
}

/// cheese_wedge 🧀 (U+1F9C0)
pub fn cheese_wedge() -> Emoticon {
    Emoticon("\u{1F9C0}".to_string())
}

/// meat_on_bone 🍖 (U+1F356)
pub fn meat_on_bone() -> Emoticon {
    Emoticon("\u{1F356}".to_string())
}

/// poultry_leg 🍗 (U+1F357)
pub fn poultry_leg() -> Emoticon {
    Emoticon("\u{1F357}".to_string())
}

/// cut_of_meat 🥩 (U+1F969)
pub fn cut_of_meat() -> Emoticon {
    Emoticon("\u{1F969}".to_string())
}

/// bacon 🥓 (U+1F953)
pub fn bacon() -> Emoticon {
    Emoticon("\u{1F953}".to_string())
}

/// hamburger 🍔 (U+1F354)
pub fn hamburger() -> Emoticon {
    Emoticon("\u{1F354}".to_string())
}

/// french_fries 🍟 (U+1F35F)
pub fn french_fries() -> Emoticon {
    Emoticon("\u{1F35F}".to_string())
}

/// pizza 🍕 (U+1F355)
pub fn pizza() -> Emoticon {
    Emoticon("\u{1F355}".to_string())
}

/// hot_dog 🌭 (U+1F32D)
pub fn hot_dog() -> Emoticon {
    Emoticon("\u{1F32D}".to_string())
}

/// sandwich 🥪 (U+1F96A)
pub fn sandwich() -> Emoticon {
    Emoticon("\u{1F96A}".to_string())
}

/// taco 🌮 (U+1F32E)
pub fn taco() -> Emoticon {
    Emoticon("\u{1F32E}".to_string())
}

/// burrito 🌯 (U+1F32F)
pub fn burrito() -> Emoticon {
    Emoticon("\u{1F32F}".to_string())
}

/// tamale 🫔 (U+1FAD4)
pub fn tamale() -> Emoticon {
    Emoticon("\u{1FAD4}".to_string())
}

/// stuffed_flatbread 🥙 (U+1F959)
pub fn stuffed_flatbread() -> Emoticon {
    Emoticon("\u{1F959}".to_string())
}

/// falafel 🧆 (U+1F9C6)
pub fn falafel() -> Emoticon {
    Emoticon("\u{1F9C6}".to_string())
}

/// egg 🥚 (U+1F95A)
pub fn egg() -> Emoticon {
    Emoticon("\u{1F95A}".to_string())
}

/// cooking 🍳 (U+1F373)
pub fn cooking() -> Emoticon {
    Emoticon("\u{1F373}".to_string())
}

/// shallow_pan_of_food 🥘 (U+1F958)
pub fn shallow_pan_of_food() -> Emoticon {
    Emoticon("\u{1F958}".to_string())
}

/// pot_of_food 🍲 (U+1F372)
pub fn pot_of_food() -> Emoticon {
    Emoticon("\u{1F372}".to_string())
}

/// fondue 🫕 (U+1FAD5)
pub fn fondue() -> Emoticon {
    Emoticon("\u{1FAD5}".to_string())
}

/// bowl_with_spoon 🥣 (U+1F963)
pub fn bowl_with_spoon() -> Emoticon {
    Emoticon("\u{1F963}".to_string())
}

/// green_salad 🥗 (U+1F957)
pub fn green_salad() -> Emoticon {
    Emoticon("\u{1F957}".to_string())
}

/// popcorn 🍿 (U+1F37F)
pub fn popcorn() -> Emoticon {
    Emoticon("\u{1F37F}".to_string())
}

/// butter 🧈 (U+1F9C8)
pub fn butter() -> Emoticon {
    Emoticon("\u{1F9C8}".to_string())
}

/// salt 🧂 (U+1F9C2)
pub fn salt() -> Emoticon {
    Emoticon("\u{1F9C2}".to_string())
}

/// canned_food 🥫 (U+1F96B)
pub fn canned_food() -> Emoticon {
    Emoticon("\u{1F96B}".to_string())
}

/// bento_box 🍱 (U+1F371)
pub fn bento_box() -> Emoticon {
    Emoticon("\u{1F371}".to_string())
}

/// rice_cracker 🍘 (U+1F358)
pub fn rice_cracker() -> Emoticon {
    Emoticon("\u{1F358}".to_string())
}

/// rice_ball 🍙 (U+1F359)
pub fn rice_ball() -> Emoticon {
    Emoticon("\u{1F359}".to_string())
}

/// cooked_rice 🍚 (U+1F35A)
pub fn cooked_rice() -> Emoticon {
    Emoticon("\u{1F35A}".to_string())
}

/// curry_rice 🍛 (U+1F35B)
pub fn curry_rice() -> Emoticon {
    Emoticon("\u{1F35B}".to_string())
}

/// steaming_bowl 🍜 (U+1F35C)
pub fn steaming_bowl() -> Emoticon {
    Emoticon("\u{1F35C}".to_string())
}

/// spaghetti 🍝 (U+1F35D)
pub fn spaghetti() -> Emoticon {
    Emoticon("\u{1F35D}".to_string())
}

/// oden 🍠 (U+1F360)
pub fn oden() -> Emoticon {
    Emoticon("\u{1F360}".to_string())
}

/// sushi 🍣 (U+1F363)
pub fn sushi() -> Emoticon {
    Emoticon("\u{1F363}".to_string())
}

/// fried_shrimp 🍤 (U+1F364)
pub fn fried_shrimp() -> Emoticon {
    Emoticon("\u{1F364}".to_string())
}

/// fish_cake_with_swirl 🍥 (U+1F365)
pub fn fish_cake_with_swirl() -> Emoticon {
    Emoticon("\u{1F365}".to_string())
}

/// moon_cake 🥮 (U+1F96E)
pub fn moon_cake() -> Emoticon {
    Emoticon("\u{1F96E}".to_string())
}

/// dango 🍡 (U+1F361)
pub fn dango() -> Emoticon {
    Emoticon("\u{1F361}".to_string())
}

/// dumpling 🥟 (U+1F95F)
pub fn dumpling() -> Emoticon {
    Emoticon("\u{1F95F}".to_string())
}

/// fortune_cookie 🥠 (U+1F960)
pub fn fortune_cookie() -> Emoticon {
    Emoticon("\u{1F960}".to_string())
}

/// takeout_box 🥡 (U+1F961)
pub fn takeout_box() -> Emoticon {
    Emoticon("\u{1F961}".to_string())
}

/// crab 🦀 (U+1F980)
pub fn crab() -> Emoticon {
    Emoticon("\u{1F980}".to_string())
}

/// lobster 🦞 (U+1F99E)
pub fn lobster() -> Emoticon {
    Emoticon("\u{1F99E}".to_string())
}

/// shrimp 🦐 (U+1F990)
pub fn shrimp() -> Emoticon {
    Emoticon("\u{1F990}".to_string())
}

/// squid 🦑 (U+1F991)
pub fn squid() -> Emoticon {
    Emoticon("\u{1F991}".to_string())
}

/// oyster 🦪 (U+1F9AA)
pub fn oyster() -> Emoticon {
    Emoticon("\u{1F9AA}".to_string())
}

/// soft_ice_cream 🍦 (U+1F366)
pub fn soft_ice_cream() -> Emoticon {
    Emoticon("\u{1F366}".to_string())
}

/// shaved_ice 🍧 (U+1F367)
pub fn shaved_ice() -> Emoticon {
    Emoticon("\u{1F367}".to_string())
}

/// ice_cream 🍨 (U+1F368)
pub fn ice_cream() -> Emoticon {
    Emoticon("\u{1F368}".to_string())
}

/// doughnut 🍩 (U+1F369)
pub fn doughnut() -> Emoticon {
    Emoticon("\u{1F369}".to_string())
}

/// cookie 🍪 (U+1F36A)
pub fn cookie() -> Emoticon {
    Emoticon("\u{1F36A}".to_string())
}

/// birthday_cake 🎂 (U+1F382)
pub fn birthday_cake() -> Emoticon {
    Emoticon("\u{1F382}".to_string())
}

/// shortcake 🍰 (U+1F370)
pub fn shortcake() -> Emoticon {
    Emoticon("\u{1F370}".to_string())
}

/// cupcake 🧁 (U+1F9C1)
pub fn cupcake() -> Emoticon {
    Emoticon("\u{1F9C1}".to_string())
}

/// pie 🥧 (U+1F967)
pub fn pie() -> Emoticon {
    Emoticon("\u{1F967}".to_string())
}

/// chocolate_bar 🍫 (U+1F36B)
pub fn chocolate_bar() -> Emoticon {
    Emoticon("\u{1F36B}".to_string())
}

/// candy 🍬 (U+1F36C)
pub fn candy() -> Emoticon {
    Emoticon("\u{1F36C}".to_string())
}

/// lollipop 🍭 (U+1F36D)
pub fn lollipop() -> Emoticon {
    Emoticon("\u{1F36D}".to_string())
}

/// custard 🍮 (U+1F36E)
pub fn custard() -> Emoticon {
    Emoticon("\u{1F36E}".to_string())
}

/// honey_pot 🍯 (U+1F36F)
pub fn honey_pot() -> Emoticon {
    Emoticon("\u{1F36F}".to_string())
}

/// baby_bottle 🍼 (U+1F37C)
pub fn baby_bottle() -> Emoticon {
    Emoticon("\u{1F37C}".to_string())
}

/// glass_of_milk 🥛 (U+1F95B)
pub fn glass_of_milk() -> Emoticon {
    Emoticon("\u{1F95B}".to_string())
}

/// hot_beverage ☕ (U+2615)
pub fn hot_beverage() -> Emoticon {
    Emoticon("\u{2615}".to_string())
}

/// teapot 🫖 (U+1FAD6)
pub fn teapot() -> Emoticon {
    Emoticon("\u{1FAD6}".to_string())
}

/// teacup_without_handle 🍵 (U+1F375)
pub fn teacup_without_handle() -> Emoticon {
    Emoticon("\u{1F375}".to_string())
}

/// sake 🍶 (U+1F376)
pub fn sake() -> Emoticon {
    Emoticon("\u{1F376}".to_string())
}

/// bottle_with_popping_cork 🍾 (U+1F37E)
pub fn bottle_with_popping_cork() -> Emoticon {
    Emoticon("\u{1F37E}".to_string())
}

/// wine_glass 🍷 (U+1F377)
pub fn wine_glass() -> Emoticon {
    Emoticon("\u{1F377}".to_string())
}

/// cocktail_glass 🍸 (U+1F378)
pub fn cocktail_glass() -> Emoticon {
    Emoticon("\u{1F378}".to_string())
}

/// tropical_drink 🍹 (U+1F379)
pub fn tropical_drink() -> Emoticon {
    Emoticon("\u{1F379}".to_string())
}

/// beer_mug 🍺 (U+1F37A)
pub fn beer_mug() -> Emoticon {
    Emoticon("\u{1F37A}".to_string())
}

/// clinking_beer_mugs 🍻 (U+1F37B)
pub fn clinking_beer_mugs() -> Emoticon {
    Emoticon("\u{1F37B}".to_string())
}

/// clinking_glasses 🥂 (U+1F942)
pub fn clinking_glasses() -> Emoticon {
    Emoticon("\u{1F942}".to_string())
}

/// tumbler_glass 🥃 (U+1F943)
pub fn tumbler_glass() -> Emoticon {
    Emoticon("\u{1F943}".to_string())
}

/// pouring_liquid 🫗 (U+1FAD7)
pub fn pouring_liquid() -> Emoticon {
    Emoticon("\u{1FAD7}".to_string())
}

/// cup_with_straw 🥤 (U+1F964)
pub fn cup_with_straw() -> Emoticon {
    Emoticon("\u{1F964}".to_string())
}

/// bubble_tea 🧋 (U+1F9CB)
pub fn bubble_tea() -> Emoticon {
    Emoticon("\u{1F9CB}".to_string())
}

/// beverage_box 🧃 (U+1F9C3)
pub fn beverage_box() -> Emoticon {
    Emoticon("\u{1F9C3}".to_string())
}

/// mate 🧉 (U+1F9C9)
pub fn mate() -> Emoticon {
    Emoticon("\u{1F9C9}".to_string())
}

/// ice 🧊 (U+1F9CA)
pub fn ice() -> Emoticon {
    Emoticon("\u{1F9CA}".to_string())
}

/// chopsticks 🥢 (U+1F962)
pub fn chopsticks() -> Emoticon {
    Emoticon("\u{1F962}".to_string())
}

/// fork_and_knife_with_plate 🍽 (U+1F37D)
pub fn fork_and_knife_with_plate() -> Emoticon {
    Emoticon("\u{1F37D}".to_string())
}

/// fork_and_knife 🍴 (U+1F374)
pub fn fork_and_knife() -> Emoticon {
    Emoticon("\u{1F374}".to_string())
}

/// spoon 🥄 (U+1F944)
pub fn spoon() -> Emoticon {
    Emoticon("\u{1F944}".to_string())
}

/// kitchen_knife 🔪 (U+1F52A)
pub fn kitchen_knife() -> Emoticon {
    Emoticon("\u{1F52A}".to_string())
}

/// jar 🫙 (U+1FAD9)
pub fn jar() -> Emoticon {
    Emoticon("\u{1FAD9}".to_string())
}

/// amphora 🏺 (U+1F3FA)
pub fn amphora() -> Emoticon {
    Emoticon("\u{1F3FA}".to_string())
}