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
//! Animals & Nature

use crate::Emoticon;

/// monkey ๐Ÿต (U+1F435)
pub fn monkey() -> Emoticon {
    Emoticon("\u{1F435}".to_string())
}

/// gorilla ๐Ÿฆ (U+1F98D)
pub fn gorilla() -> Emoticon {
    Emoticon("\u{1F98D}".to_string())
}

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

/// dog_face ๐Ÿถ (U+1F436)
pub fn dog_face() -> Emoticon {
    Emoticon("\u{1F436}".to_string())
}

/// dog ๐Ÿ• (U+1F415)
pub fn dog() -> Emoticon {
    Emoticon("\u{1F415}".to_string())
}

/// guide_dog ๐Ÿฆฎ (U+1F9AE)
pub fn guide_dog() -> Emoticon {
    Emoticon("\u{1F9AE}".to_string())
}

/// service_dog ๐Ÿ•โ€๐Ÿฆบ (U+1F415 U+200D U+1F9BA)
pub fn service_dog() -> Emoticon {
    Emoticon("\u{1F415}\u{200D}\u{1F9BA}".to_string())
}

/// poodle ๐Ÿฉ (U+1F429)
pub fn poodle() -> Emoticon {
    Emoticon("\u{1F429}".to_string())
}

/// wolf ๐Ÿบ (U+1F43A)
pub fn wolf() -> Emoticon {
    Emoticon("\u{1F43A}".to_string())
}

/// fox ๐ŸฆŠ (U+1F98A)
pub fn fox() -> Emoticon {
    Emoticon("\u{1F98A}".to_string())
}

/// raccoon ๐Ÿฆ (U+1F99D)
pub fn raccoon() -> Emoticon {
    Emoticon("\u{1F99D}".to_string())
}

/// cat_face ๐Ÿฑ (U+1F431)
pub fn cat_face() -> Emoticon {
    Emoticon("\u{1F431}".to_string())
}

/// cat ๐Ÿˆ (U+1F408)
pub fn cat() -> Emoticon {
    Emoticon("\u{1F408}".to_string())
}

/// black_cat ๐Ÿˆโ€โฌ› (U+1F408 U+200D U+2B1B)
pub fn black_cat() -> Emoticon {
    Emoticon("\u{1F408}\u{200D}\u{2B1B}".to_string())
}

/// lion ๐Ÿฆ (U+1F981)
pub fn lion() -> Emoticon {
    Emoticon("\u{1F981}".to_string())
}

/// tiger_face ๐Ÿฏ (U+1F42F)
pub fn tiger_face() -> Emoticon {
    Emoticon("\u{1F42F}".to_string())
}

/// tiger ๐Ÿ… (U+1F405)
pub fn tiger() -> Emoticon {
    Emoticon("\u{1F405}".to_string())
}

/// leopard ๐Ÿ† (U+1F406)
pub fn leopard() -> Emoticon {
    Emoticon("\u{1F406}".to_string())
}

/// horse_face ๐Ÿด (U+1F434)
pub fn horse_face() -> Emoticon {
    Emoticon("\u{1F434}".to_string())
}

/// moose ๐ŸซŽ (U+1FACE)
pub fn moose() -> Emoticon {
    Emoticon("\u{1FACE}".to_string())
}

/// donkey ๐Ÿซ (U+1FACF)
pub fn donkey() -> Emoticon {
    Emoticon("\u{1FACF}".to_string())
}

/// horse ๐ŸŽ (U+1F40E)
pub fn horse() -> Emoticon {
    Emoticon("\u{1F40E}".to_string())
}

/// unicorn ๐Ÿฆ„ (U+1F984)
pub fn unicorn() -> Emoticon {
    Emoticon("\u{1F984}".to_string())
}

/// zebra ๐Ÿฆ“ (U+1F993)
pub fn zebra() -> Emoticon {
    Emoticon("\u{1F993}".to_string())
}

/// deer ๐ŸฆŒ (U+1F98C)
pub fn deer() -> Emoticon {
    Emoticon("\u{1F98C}".to_string())
}

/// bison ๐Ÿฆฌ (U+1F9AC)
pub fn bison() -> Emoticon {
    Emoticon("\u{1F9AC}".to_string())
}

/// cow_face ๐Ÿฎ (U+1F42E)
pub fn cow_face() -> Emoticon {
    Emoticon("\u{1F42E}".to_string())
}

/// ox ๐Ÿ‚ (U+1F402)
pub fn ox() -> Emoticon {
    Emoticon("\u{1F402}".to_string())
}

/// water_buffalo ๐Ÿƒ (U+1F403)
pub fn water_buffalo() -> Emoticon {
    Emoticon("\u{1F403}".to_string())
}

/// cow ๐Ÿ„ (U+1F404)
pub fn cow() -> Emoticon {
    Emoticon("\u{1F404}".to_string())
}

/// pig_face ๐Ÿท (U+1F437)
pub fn pig_face() -> Emoticon {
    Emoticon("\u{1F437}".to_string())
}

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

/// boar ๐Ÿ— (U+1F417)
pub fn boar() -> Emoticon {
    Emoticon("\u{1F417}".to_string())
}

/// pig_nose ๐Ÿฝ (U+1F43D)
pub fn pig_nose() -> Emoticon {
    Emoticon("\u{1F43D}".to_string())
}

/// ram ๐Ÿ (U+1F40F)
pub fn ram() -> Emoticon {
    Emoticon("\u{1F40F}".to_string())
}

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

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

/// camel ๐Ÿช (U+1F42A)
pub fn camel() -> Emoticon {
    Emoticon("\u{1F42A}".to_string())
}

/// two_hump_camel ๐Ÿซ (U+1F42B)
pub fn two_hump_camel() -> Emoticon {
    Emoticon("\u{1F42B}".to_string())
}

/// llama ๐Ÿฆ™ (U+1F999)
pub fn llama() -> Emoticon {
    Emoticon("\u{1F999}".to_string())
}

/// giraffe ๐Ÿฆ’ (U+1F992)
pub fn giraffe() -> Emoticon {
    Emoticon("\u{1F992}".to_string())
}

/// elephant ๐Ÿ˜ (U+1F418)
pub fn elephant() -> Emoticon {
    Emoticon("\u{1F418}".to_string())
}

/// mammoth ๐Ÿฆฃ (U+1F9A3)
pub fn mammoth() -> Emoticon {
    Emoticon("\u{1F9A3}".to_string())
}

/// rhinoceros ๐Ÿฆ (U+1F98F)
pub fn rhinoceros() -> Emoticon {
    Emoticon("\u{1F98F}".to_string())
}

/// hippopotamus ๐Ÿฆ› (U+1F99B)
pub fn hippopotamus() -> Emoticon {
    Emoticon("\u{1F99B}".to_string())
}

/// mouse_face ๐Ÿญ (U+1F42D)
pub fn mouse_face() -> Emoticon {
    Emoticon("\u{1F42D}".to_string())
}

/// mouse ๐Ÿ (U+1F401)
pub fn mouse() -> Emoticon {
    Emoticon("\u{1F401}".to_string())
}

/// rat ๐Ÿ€ (U+1F400)
pub fn rat() -> Emoticon {
    Emoticon("\u{1F400}".to_string())
}

/// hamster ๐Ÿน (U+1F439)
pub fn hamster() -> Emoticon {
    Emoticon("\u{1F439}".to_string())
}

/// rabbit_face ๐Ÿฐ (U+1F430)
pub fn rabbit_face() -> Emoticon {
    Emoticon("\u{1F430}".to_string())
}

/// rabbit ๐Ÿ‡ (U+1F407)
pub fn rabbit() -> Emoticon {
    Emoticon("\u{1F407}".to_string())
}

/// chipmunk ๐Ÿฟ (U+1F43F)
pub fn chipmunk() -> Emoticon {
    Emoticon("\u{1F43F}".to_string())
}

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

/// hedgehog ๐Ÿฆ” (U+1F994)
pub fn hedgehog() -> Emoticon {
    Emoticon("\u{1F994}".to_string())
}

/// bat ๐Ÿฆ‡ (U+1F987)
pub fn bat() -> Emoticon {
    Emoticon("\u{1F987}".to_string())
}

/// bear ๐Ÿป (U+1F43B)
pub fn bear() -> Emoticon {
    Emoticon("\u{1F43B}".to_string())
}

/// polar_bear ๐Ÿปโ€โ„๏ธ (U+1F43B U+200D U+2744 U+FE0F)
pub fn polar_bear() -> Emoticon {
    Emoticon("\u{1F43B}\u{200D}\u{2744}\u{FE0F}".to_string())
}

/// koala ๐Ÿจ (U+1F428)
pub fn koala() -> Emoticon {
    Emoticon("\u{1F428}".to_string())
}

/// panda ๐Ÿผ (U+1F43C)
pub fn panda() -> Emoticon {
    Emoticon("\u{1F43C}".to_string())
}

/// sloth ๐Ÿฆฅ (U+1F9A5)
pub fn sloth() -> Emoticon {
    Emoticon("\u{1F9A5}".to_string())
}

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

/// skunk ๐Ÿฆจ (U+1F9A8)
pub fn skunk() -> Emoticon {
    Emoticon("\u{1F9A8}".to_string())
}

/// kangaroo ๐Ÿฆ˜ (U+1F998)
pub fn kangaroo() -> Emoticon {
    Emoticon("\u{1F998}".to_string())
}

/// badger ๐Ÿฆก (U+1F9A1)
pub fn badger() -> Emoticon {
    Emoticon("\u{1F9A1}".to_string())
}

/// paw_prints ๐Ÿพ (U+1F43E)
pub fn paw_prints() -> Emoticon {
    Emoticon("\u{1F43E}".to_string())
}

/// turkey ๐Ÿฆƒ (U+1F983)
pub fn turkey() -> Emoticon {
    Emoticon("\u{1F983}".to_string())
}

/// chicken ๐Ÿ” (U+1F414)
pub fn chicken() -> Emoticon {
    Emoticon("\u{1F414}".to_string())
}

/// rooster ๐Ÿ“ (U+1F413)
pub fn rooster() -> Emoticon {
    Emoticon("\u{1F413}".to_string())
}

/// hatching_chick ๐Ÿฃ (U+1F423)
pub fn hatching_chick() -> Emoticon {
    Emoticon("\u{1F423}".to_string())
}

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

/// front_facing_baby_chick ๐Ÿฅ (U+1F425)
pub fn front_facing_baby_chick() -> Emoticon {
    Emoticon("\u{1F425}".to_string())
}

/// bird ๐Ÿฆ (U+1F426)
pub fn bird() -> Emoticon {
    Emoticon("\u{1F426}".to_string())
}

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

/// dove ๐Ÿ•Š (U+1F54A)
pub fn dove() -> Emoticon {
    Emoticon("\u{1F54A}".to_string())
}

/// eagle ๐Ÿฆ… (U+1F985)
pub fn eagle() -> Emoticon {
    Emoticon("\u{1F985}".to_string())
}

/// duck ๐Ÿฆ† (U+1F986)
pub fn duck() -> Emoticon {
    Emoticon("\u{1F986}".to_string())
}

/// swan ๐Ÿฆข (U+1F9A2)
pub fn swan() -> Emoticon {
    Emoticon("\u{1F9A2}".to_string())
}

/// owl ๐Ÿฆ‰ (U+1F989)
pub fn owl() -> Emoticon {
    Emoticon("\u{1F989}".to_string())
}

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

/// feather ๐Ÿชถ (U+1FAB6)
pub fn feather() -> Emoticon {
    Emoticon("\u{1FAB6}".to_string())
}

/// flamingo ๐Ÿฆฉ (U+1F9A9)
pub fn flamingo() -> Emoticon {
    Emoticon("\u{1F9A9}".to_string())
}

/// peacock ๐Ÿฆš (U+1F99A)
pub fn peacock() -> Emoticon {
    Emoticon("\u{1F99A}".to_string())
}

/// parrot ๐Ÿฆœ (U+1F99C)
pub fn parrot() -> Emoticon {
    Emoticon("\u{1F99C}".to_string())
}

/// wing ๐Ÿชฝ (U+1FABD)
pub fn wing() -> Emoticon {
    Emoticon("\u{1FABD}".to_string())
}

/// black_bird ๐Ÿฆโ€โฌ› (U+1F426 U+200D U+2B1B)
pub fn black_bird() -> Emoticon {
    Emoticon("\u{1F426}\u{200D}\u{2B1B}".to_string())
}

/// goose ๐Ÿชฟ (U+1FABF)
pub fn goose() -> Emoticon {
    Emoticon("\u{1FABF}".to_string())
}

/// __phoenix ๐Ÿฆโ€๐Ÿ”ฅ (U+1F426 U+200D U+1F525)
pub fn __phoenix() -> Emoticon {
    Emoticon("\u{1F426}\u{200D}\u{1F525}".to_string())
}

/// frog ๐Ÿธ (U+1F438)
pub fn frog() -> Emoticon {
    Emoticon("\u{1F438}".to_string())
}

/// crocodile ๐ŸŠ (U+1F40A)
pub fn crocodile() -> Emoticon {
    Emoticon("\u{1F40A}".to_string())
}

/// turtle ๐Ÿข (U+1F422)
pub fn turtle() -> Emoticon {
    Emoticon("\u{1F422}".to_string())
}

/// lizard ๐ŸฆŽ (U+1F98E)
pub fn lizard() -> Emoticon {
    Emoticon("\u{1F98E}".to_string())
}

/// snake ๐Ÿ (U+1F40D)
pub fn snake() -> Emoticon {
    Emoticon("\u{1F40D}".to_string())
}

/// dragon_face ๐Ÿฒ (U+1F432)
pub fn dragon_face() -> Emoticon {
    Emoticon("\u{1F432}".to_string())
}

/// dragon ๐Ÿ‰ (U+1F409)
pub fn dragon() -> Emoticon {
    Emoticon("\u{1F409}".to_string())
}

/// sauropod ๐Ÿฆ• (U+1F995)
pub fn sauropod() -> Emoticon {
    Emoticon("\u{1F995}".to_string())
}

/// T_Rex ๐Ÿฆ– (U+1F996)
pub fn t_rex() -> Emoticon {
    Emoticon("\u{1F996}".to_string())
}

/// spouting_whale ๐Ÿณ (U+1F433)
pub fn spouting_whale() -> Emoticon {
    Emoticon("\u{1F433}".to_string())
}

/// whale ๐Ÿ‹ (U+1F40B)
pub fn whale() -> Emoticon {
    Emoticon("\u{1F40B}".to_string())
}

/// dolphin ๐Ÿฌ (U+1F42C)
pub fn dolphin() -> Emoticon {
    Emoticon("\u{1F42C}".to_string())
}

/// seal ๐Ÿฆญ (U+1F9AD)
pub fn seal() -> Emoticon {
    Emoticon("\u{1F9AD}".to_string())
}

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

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

/// blowfish ๐Ÿก (U+1F421)
pub fn blowfish() -> Emoticon {
    Emoticon("\u{1F421}".to_string())
}

/// shark ๐Ÿฆˆ (U+1F988)
pub fn shark() -> Emoticon {
    Emoticon("\u{1F988}".to_string())
}

/// octopus ๐Ÿ™ (U+1F419)
pub fn octopus() -> Emoticon {
    Emoticon("\u{1F419}".to_string())
}

/// spiral_shell ๐Ÿš (U+1F41A)
pub fn spiral_shell() -> Emoticon {
    Emoticon("\u{1F41A}".to_string())
}

/// coral ๐Ÿชธ (U+1FAB8)
pub fn coral() -> Emoticon {
    Emoticon("\u{1FAB8}".to_string())
}

/// jellyfish ๐Ÿชผ (U+1FABC)
pub fn jellyfish() -> Emoticon {
    Emoticon("\u{1FABC}".to_string())
}

/// snail ๐ŸŒ (U+1F40C)
pub fn snail() -> Emoticon {
    Emoticon("\u{1F40C}".to_string())
}

/// butterfly ๐Ÿฆ‹ (U+1F98B)
pub fn butterfly() -> Emoticon {
    Emoticon("\u{1F98B}".to_string())
}

/// bug ๐Ÿ› (U+1F41B)
pub fn bug() -> Emoticon {
    Emoticon("\u{1F41B}".to_string())
}

/// ant ๐Ÿœ (U+1F41C)
pub fn ant() -> Emoticon {
    Emoticon("\u{1F41C}".to_string())
}

/// honeybee ๐Ÿ (U+1F41D)
pub fn honeybee() -> Emoticon {
    Emoticon("\u{1F41D}".to_string())
}

/// beetle ๐Ÿชฒ (U+1FAB2)
pub fn beetle() -> Emoticon {
    Emoticon("\u{1FAB2}".to_string())
}

/// lady_beetle ๐Ÿž (U+1F41E)
pub fn lady_beetle() -> Emoticon {
    Emoticon("\u{1F41E}".to_string())
}

/// cricket ๐Ÿฆ— (U+1F997)
pub fn cricket() -> Emoticon {
    Emoticon("\u{1F997}".to_string())
}

/// cockroach ๐Ÿชณ (U+1FAB3)
pub fn cockroach() -> Emoticon {
    Emoticon("\u{1FAB3}".to_string())
}

/// spider ๐Ÿ•ท (U+1F577)
pub fn spider() -> Emoticon {
    Emoticon("\u{1F577}".to_string())
}

/// spider_web ๐Ÿ•ธ (U+1F578)
pub fn spider_web() -> Emoticon {
    Emoticon("\u{1F578}".to_string())
}

/// scorpion ๐Ÿฆ‚ (U+1F982)
pub fn scorpion() -> Emoticon {
    Emoticon("\u{1F982}".to_string())
}

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

/// fly ๐Ÿชฐ (U+1FAB0)
pub fn fly() -> Emoticon {
    Emoticon("\u{1FAB0}".to_string())
}

/// worm ๐Ÿชฑ (U+1FAB1)
pub fn worm() -> Emoticon {
    Emoticon("\u{1FAB1}".to_string())
}

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

/// bouquet ๐Ÿ’ (U+1F490)
pub fn bouquet() -> Emoticon {
    Emoticon("\u{1F490}".to_string())
}

/// cherry_blossom ๐ŸŒธ (U+1F338)
pub fn cherry_blossom() -> Emoticon {
    Emoticon("\u{1F338}".to_string())
}

/// white_flower ๐Ÿ’ฎ (U+1F4AE)
pub fn white_flower() -> Emoticon {
    Emoticon("\u{1F4AE}".to_string())
}

/// lotus ๐Ÿชท (U+1FAB7)
pub fn lotus() -> Emoticon {
    Emoticon("\u{1FAB7}".to_string())
}

/// rosette ๐Ÿต (U+1F3F5)
pub fn rosette() -> Emoticon {
    Emoticon("\u{1F3F5}".to_string())
}

/// wilted_flower ๐ŸŒน (U+1F339)
pub fn wilted_flower() -> Emoticon {
    Emoticon("\u{1F339}".to_string())
}

/// hibiscus ๐ŸŒบ (U+1F33A)
pub fn hibiscus() -> Emoticon {
    Emoticon("\u{1F33A}".to_string())
}

/// sunflower ๐ŸŒป (U+1F33B)
pub fn sunflower() -> Emoticon {
    Emoticon("\u{1F33B}".to_string())
}

/// blossom ๐ŸŒผ (U+1F33C)
pub fn blossom() -> Emoticon {
    Emoticon("\u{1F33C}".to_string())
}

/// tulip ๐ŸŒท (U+1F337)
pub fn tulip() -> Emoticon {
    Emoticon("\u{1F337}".to_string())
}

/// hyacinth ๐Ÿชป (U+1FABB)
pub fn hyacinth() -> Emoticon {
    Emoticon("\u{1FABB}".to_string())
}

/// seedling ๐ŸŒฑ (U+1F331)
pub fn seedling() -> Emoticon {
    Emoticon("\u{1F331}".to_string())
}

/// potted_plant ๐Ÿชด (U+1FAB4)
pub fn potted_plant() -> Emoticon {
    Emoticon("\u{1FAB4}".to_string())
}

/// evergreen_tree ๐ŸŒฒ (U+1F332)
pub fn evergreen_tree() -> Emoticon {
    Emoticon("\u{1F332}".to_string())
}

/// deciduous_tree ๐ŸŒณ (U+1F333)
pub fn deciduous_tree() -> Emoticon {
    Emoticon("\u{1F333}".to_string())
}

/// palm_tree ๐ŸŒด (U+1F334)
pub fn palm_tree() -> Emoticon {
    Emoticon("\u{1F334}".to_string())
}

/// cactus ๐ŸŒต (U+1F335)
pub fn cactus() -> Emoticon {
    Emoticon("\u{1F335}".to_string())
}

/// sheaf_of_rice ๐ŸŒพ (U+1F33E)
pub fn sheaf_of_rice() -> Emoticon {
    Emoticon("\u{1F33E}".to_string())
}

/// herb ๐ŸŒฟ (U+1F33F)
pub fn herb() -> Emoticon {
    Emoticon("\u{1F33F}".to_string())
}

/// shamrock โ˜˜ (U+2618)
pub fn shamrock() -> Emoticon {
    Emoticon("\u{2618}".to_string())
}

/// four_leaf_clover ๐Ÿ€ (U+1F340)
pub fn four_leaf_clover() -> Emoticon {
    Emoticon("\u{1F340}".to_string())
}

/// maple_leaf ๐Ÿ (U+1F341)
pub fn maple_leaf() -> Emoticon {
    Emoticon("\u{1F341}".to_string())
}

/// fallen_leaf ๐Ÿ‚ (U+1F342)
pub fn fallen_leaf() -> Emoticon {
    Emoticon("\u{1F342}".to_string())
}

/// leaf_fluttering_in_wind ๐Ÿƒ (U+1F343)
pub fn leaf_fluttering_in_wind() -> Emoticon {
    Emoticon("\u{1F343}".to_string())
}

/// empty_nest ๐Ÿชน (U+1FAB9)
pub fn empty_nest() -> Emoticon {
    Emoticon("\u{1FAB9}".to_string())
}

/// nest_with_eggs ๐Ÿชบ (U+1FABA)
pub fn nest_with_eggs() -> Emoticon {
    Emoticon("\u{1FABA}".to_string())
}

/// mushroom ๐Ÿ„ (U+1F344)
pub fn mushroom() -> Emoticon {
    Emoticon("\u{1F344}".to_string())
}