omp-tui 0.1.0

Retained-mode terminal UI components, rendering, input, and terminal integration for omp
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
# Canonical icon catalog for terminal UIs
# `name` is short and stable; `alias` is an optional qualified compatibility key.
# New rows may leave `alias` empty. Escapes: \s = space (U+0020), \\ = literal backslash.
name	alias	ascii	unicode	nerd_font
abacus	object.abacus	abacus	๐Ÿงฎ	๓ฑ› 
aborted	status.aborted	[-]	โน	๏
add	action.add	+	โœš	๏ง
added	status.added	+	โœš	๏ง
adhesive-bandage	object.adhesiveBandage	bandg	๐Ÿฉน	๎ตด
admin	user.admin	admin	๐Ÿ‘‘	๎ท
admission-ticket	object.admissionTicket	tkt	๐ŸŽŸ	๏……
agents	icon.agents	AG	๐Ÿ‘ฅ	๏ƒ€
airplane	object.airplane	plane	โœˆ	๏ฒ
airplane-arrival	object.airplaneArrival	<fly	๐Ÿ›ฌ	๎นท
airplane-departure	object.airplaneDeparture	fly>	๐Ÿ›ซ	๎นธ
alarm-clock-alert	object.alarmClockAlert	alarm	โฐ	๓ฐฅ•
alien	object.alien	alien	๐Ÿ‘ฝ	๓ฐขš
alien-invader	object.alienInvader	alien	๐Ÿ‘พ	๓ฐฏ‰
ambulance	object.ambulance	ambul	๐Ÿš‘	๏ƒน
american-football	object.americanFootball	footbl	๐Ÿˆ	๎ตฉ
anchor	object.anchor	anchor	โš“	๏„ฝ
angry-face	status.angryFace	>:[	๐Ÿ˜ 	๎ธŸ
appearance	tab.appearance	[A]	๐ŸŽจ	๓ฐƒฃ
aquarius	object.aquarius	aquar	โ™’	๓ฐฉฝ
archive	lang.archive	zip	๐Ÿ—œ	๏†‡
archive-file	file.archive	[zip]	๐Ÿ—œ	๏‡†
archived	status.archived	[arc]	๐Ÿ“ฆ	๏†‡
aries	object.aries	Aries	โ™ˆ	๓ฐฉพ
ascii-left	sep.asciiLeft	>	>	>
ascii-right	sep.asciiRight	<	<	<
asia-australia-globe	object.asiaAustraliaGlobe	earth	๐ŸŒ	๎น‡
ask	tool.ask	[?]	?	๎ซ‡
atm	device.atm	ATM	๐Ÿง	๓ฐต‡
atom	object.atom	atom	โš›	๎บ™
audio	file.audio	[mp3]	๐ŸŽต	๏‡‡
auto	icon.auto	[A]	โŸฒ	๓ฐจ
auto-pending	thinking.autoPending	[~]	โŸณ	๏ด
auto-rickshaw	object.autoRickshaw	tuk	๐Ÿ›บ	๓ฑ–ป
automobile	object.automobile	car	๐Ÿš—	๏†น
axe	object.axe	axe	๐Ÿช“	๓ฐฃˆ
baby-bottle	object.babyBottle	bottle	๐Ÿผ	๓ฐผน
back	nav.back	<-	โŸต	๏ 
bacon	object.bacon	bacon	๐Ÿฅ“	๎ฝท
badminton	object.badminton	baddy	๐Ÿธ	๓ฐก‘
baguette	object.baguette	bread	๐Ÿฅ–	๓ฐผพ
ballet-shoes	object.balletShoes	ballet	๐Ÿฉฐ	๓ฑ—Š
balloon	object.balloon	baloon	๐ŸŽˆ	๓ฐจฆ
ballot-box	object.ballotBox	vote	๐Ÿ—ณ	๓ฐง‰
banana	object.banana	banana	๐ŸŒ	๎Ё
bank	object.bank	bank	๐Ÿฆ	๏†œ
baseball	object.baseball	ball	โšพ	๎ตœ
bash	tool.bash	$	โฏ	๎ฏŠ
basket	object.basket	basket	๐Ÿงบ	๓ฐถ
basketball	object.basketball	ball	๐Ÿ€	๎ต
bat	object.bat	bat	๐Ÿฆ‡	๓ฐญŸ
bathtub	object.bathtub	tub	๐Ÿ›	๏‹
battery	device.battery	bat	๐Ÿ”‹	๏‰€
beach-umbrella	object.beachUmbrella	beach	๐Ÿ–	๎บ‘
beaming-face	status.beamingFace	:D	๐Ÿ˜	๎น‹
beans-coffee	object.beansCoffee	beans	๐Ÿซ˜	๎‰ช
bear-teddy	object.bearTeddy	bear	๐Ÿป	๓ฑฃป
beating-heart	status.beatingHeart	<3!	๐Ÿ’“	๏ˆž
bed-classic	object.bedClassic	bed	๐Ÿ›	๏ˆถ
beer-mug	object.beerMug	beer	๐Ÿบ	๏ƒผ
bell	comm.bell	bell	๐Ÿ””	๏ƒณ
bell-off	comm.bellOff	bell-off	๐Ÿ”•	๏‡ถ
bicycle	object.bicycle	bike	๐Ÿšฒ	๏ˆ†
binary	lang.binary	bin	โš™	๓ฐ†š
biohazard	security.biohazard	bio	โ˜ฃ	๎ผต
biometric-fingerprint	security.biometricFingerprint	finger	๐Ÿซ†	๎น€
bird	object.bird	bird	๐Ÿฆ	๓ฑ—†
birthday-cake	object.birthdayCake	cake	๐ŸŽ‚	๏‡ฝ
biting-lip	status.bitingLip	lip	๐Ÿซฆ	๎‰˜
black-bird-crow	object.blackBirdCrow	crow	๐Ÿฆโ€โฌ›	๎ทช
black-cat	object.blackCat	cat	๐Ÿˆโ€โฌ›	๎ปญ
black-circle	object.blackCircle	(o)	โšซ	๏„‘
black-flag	object.blackFlag	flag	๐Ÿด	๏€ค
black-medium-square	object.blackMediumSquare	[#]	โ—ผ	๓ฐจ“
black-pen-nib	object.blackPenNib	nib	โœ’	๎นต
black-small-square	object.blackSmallSquare	[#]	โ–ช	๓ฐจ•
block	sep.block	#	โ–Œ	โ–ˆ
blocked	status.blocked	[X]	๐Ÿšซ	๏ž
blood-drop	object.bloodDrop	blood	๐Ÿฉธ	๎‰ต
blue-circle-large	object.blueCircleLarge	(blue)	๐Ÿ”ต	๎ฎต
bluetooth	device.bluetooth	bt	แ›’	๏Š“
boar-pig	object.boarPig	boar	๐Ÿ—	๓ฐ
bolt	object.bolt	bolt	โšก	๏ƒง
bomb	object.bomb	bomb	๐Ÿ’ฃ	๏‡ข
bone	object.bone	bone	๐Ÿฆด	๎บš
book	object.book	book	๐Ÿ“–	๏€ญ
bookmark	object.bookmark	bm	๐Ÿ”–	๏€ฎ
boomerang	object.boomerang	boom	๐Ÿชƒ	๓ฑƒ
bow-arrow	object.bowArrow	bow	๐Ÿน	๓ฑก
bowl-with-spoon	object.bowlWithSpoon	bowl	๐Ÿฅฃ	๓ฐŠŽ
bowling	object.bowling	bowl	๐ŸŽณ	๓ฐƒ“
boxing-glove	object.boxingGlove	box	๐ŸฅŠ	๓ฐญฅ
bracket-left	format.bracketLeft	[	โŸฆ	โŸจ
bracket-right	format.bracketRight	]	โŸง	โŸฉ
branch	icon.branch	@	โ‘‚	๏„ฆ
bread	object.bread	bread	๐Ÿž	๎Š
bridge-at-night	object.bridgeAtNight	bridge	๐ŸŒ‰	๓ฐ˜˜
bright-button-five	status.brightButtonFive	(*)	๐Ÿ”†	๓ฐƒž
broadcast	comm.broadcast	bcast	๐Ÿ“ก	๎ทฃ
broken-chain	object.brokenChain	-/ -	โ›“๏ธโ€๐Ÿ’ฅ	๏„ง
broken-heart	object.brokenHeart	</3	๐Ÿ’”	๓ฐ‹”
bronze-medal	object.bronzeMedal	3rd	๐Ÿฅ‰	๎นซ
broom	object.broom	broom	๐Ÿงน	๎ทค
brown-circle	object.brownCircle	(o)	๐ŸŸค	๏„‘
brown-mushroom	object.brownMushroom	shroom	๐Ÿ„โ€๐ŸŸซ	๓ฐŸŸ
brown-square	object.brownSquare	[brn]	๐ŸŸซ	๏ƒˆ
browser	tool.browser	[w]	๐ŸŒ	๎ชฎ
bubble-tea	object.bubbleTea	boba	๐Ÿง‹	๓ฐถž
bubbles-thought-outline	object.bubblesThoughtOutline	ooo	๐Ÿซง	๓ฐŸท
bucket	object.bucket	buck	๐Ÿชฃ	๓ฑ•
bug	object.bug	bug	๐Ÿ›	๏†ˆ
bullet	format.bullet	*	โ€ข	๏„‘
bus	object.bus	bus	๐ŸšŒ	๏ˆ‡
bus-stop	object.busStop	stop	๐Ÿš	๓ฑ€’
butterfly	object.butterfly	fly	๐Ÿฆ‹	๓ฑ–‰
c	lang.c	c	โ’ธ	๎˜ž
cache	icon.cache	cache	๐Ÿ’พ	๏‡€
cache-miss	icon.cacheMiss	!	โŠ˜	๏ž
cactus	object.cactus	cactus	๐ŸŒต	๓ฐถต
calendar	object.calendar	cal	๐Ÿ“…	๏„ณ
call-me-hand	comm.callMeHand	call	๐Ÿค™	๏‚•
camera	icon.camera	[o]	๐Ÿ“ท	๏‚ƒ
camera-flash-device	object.cameraFlashDevice	flash	๐Ÿ“ธ	๏‘†
camera-object	object.camera	cam	๐Ÿ“ท	๏€ฐ
campground	object.campground	camp	๐Ÿ•	๎ปฌ
cancel	action.cancel	[x]	๐Ÿšซ	๏ž
cancellable	action.cancellable	esc	โŽ‹	๓ฑŠท
candle	object.candle	candle	๐Ÿ•ฏ	๓ฐ—ข
candy	object.candy	candy	๐Ÿฌ	๓ฑฅฐ
capricorn	object.capricorn	Cap	โ™‘	๓ฐช€
card-file-word-box	file.cardFileWordBox	cards	๐Ÿ—ƒ	๓ฐˆญ
card-index-card	object.cardIndexCard	card	๐Ÿ“‡	๓ฐญฏ
carousel-horse	object.carouselHorse	ride	๐ŸŽ 	๎ผ„
carrot	object.carrot	carrot	๐Ÿฅ•	๎ผป
cart	object.cart	cart	๐Ÿ›’	๏บ
castle	object.castle	castle	๐Ÿฐ	๓ฐ„š
cat	object.cat	cat	๐Ÿˆ	๎ปญ
cat-face	object.catFace	cat	๐Ÿฑ	๎ปญ
chair	object.chair	chair	๐Ÿช‘	๎ปฎ
changed	status.changed	~	ฮ”	๏€Ÿ
chart	object.chart	chart	๐Ÿ“ˆ	๏ˆ
chart-bar	object.chartBar	bar	๐Ÿ“Š	๏‚€
chart-decreasing	object.chartDecreasing	down	๐Ÿ“‰	๓ฐ”ณ
chart-pie	object.chartPie	pie	๐Ÿฅง	๏ˆ€
chat	comm.chat	chat	๐Ÿ’ฌ	๏‰บ
check-button	status.checkButton	[ok]	โœ…	๏€Œ
checked	checkbox.checked	[x]	โ˜‘	๏…Š
checkered-flag	object.checkeredFlag	finish	๐Ÿ	๏„ž
cheese	object.cheese	cheese	๐Ÿง€	๎ฝบ
cherries	object.cherries	cherry	๐Ÿ’	๓ฑ‚
cherry-blossom	object.cherryBlossom	bloom	๐ŸŒธ	๎Š›
chess-pawn	object.chessPawn	pawn	โ™Ÿ	๎ตค
chicken-thigh	object.chickenThigh	chick	๐Ÿ”	๎ŠŸ
christmas-family-tree	object.christmasFamilyTree	Xmas	๐ŸŽ„	๓ฑ˜Ž
church	object.church	church	โ›ช	๎ทง
cigarette	object.cigarette	smoke	๐Ÿšฌ	๎ถŒ
cinema	object.cinema	film	๐ŸŽฆ	๏€ˆ
circus-tent	object.circusTent	tent	๐ŸŽช	๓ฐ”ˆ
cityscape-dusk	object.cityscapeDusk	dusk	๐ŸŒ†	๎
clapping-hands	action.clappingHands	clap	๐Ÿ‘	๓ฑฅ‹
clinking-beer-mugs	object.clinkingBeerMugs	beer	๐Ÿป	๏ƒผ
clipboard	object.clipboard	clip	๐Ÿ“‹	๏ฟ
clock	object.clock	clock	๐Ÿ•’	๏€—
clockwise-arrows	object.clockwiseArrows	<->	๐Ÿ”ƒ	๏€ก
clone	git.clone	clone	๐Ÿ‘ฅ	๏‰
close	action.close	x	โœ•	๏€
closed-mailbox	comm.closedMailbox	mail	๐Ÿ“ช	๓ฐ›ฎ
closed-umbrella	object.closedUmbrella	umb	๐ŸŒ‚	๓ฐฆฐ
cloud	device.cloud	cloud	โ˜	๏ƒ‚
coat-rack	object.coatRack	coat	๐Ÿงฅ	๓ฑ‚ž
cockroach	object.cockroach	roach	๐Ÿชณ	๎‰ฉ
cocktail-glass	object.cocktailGlass	drink	๐Ÿธ	๓ฐ–
code	object.code	code	๐Ÿ’ป	๏„ก
code-file	file.code	[src]	๐Ÿ“œ	๏‡‰
coffin	object.coffin	coffin	โšฐ	๓ฐญฟ
collapse	nav.collapse	-	โ–พ	๏ƒ—
color-swatch	md.colorSwatch	[]	โ– 	โ– 
comet	object.comet	comet	โ˜„	๎‰ญ
comment	comm.comment	//	๐Ÿ’ฌ	๏ต
comments	comm.comments	///	๐Ÿ—จ	๏‚†
commit	git.commit	commit	โ—	๏…ฒ
compass	object.compass	N	๐Ÿงญ	๏…Ž
compress	action.compress	><	๐Ÿ—œ	๏ฆ
conf	lang.conf	conf	โš™	๎˜•
config	file.config	[cfg]	โš™	๏‡ž
confirm	action.confirm	[ok]	โœ“	๏€Œ
conflict	status.conflict	[!]	โšก	๏…ฟ
context	icon.context	ctx:	โ—ซ	๎œ
context-file	icon.extensionContextFile	CF	๐Ÿ“Ž	๏ƒถ
context-tab	tab.context	[X]	๐Ÿ“‹	๓ฐ˜ธ
cooked-rice	object.cookedRice	rice	๐Ÿš	๓ฐŸช
cookie	object.cookie	cookie	๐Ÿช	๎ธฌ
copy	action.copy	cp	๐Ÿ“‹	๏ƒ…
copyright	object.copyright	(c)	ยฉ	๏‡น
cost	icon.cost	$	๐Ÿ’ฒ	๏…•
couch-and-lamp	object.couchAndLamp	couch	๐Ÿ›‹	๎ถ—
cow	object.cow	cow	๐Ÿ„	๎ปฑ
cow-face	object.cowFace	cow	๐Ÿฎ	๎ปฑ
cowboy-face	user.cowboyFace	cowboy	๐Ÿค 	๓ฐบ›
cpp	lang.cpp	cpp	โž•	๎˜
cpu	device.cpu	cpu	๐Ÿ”ฒ	๏‹›
credit-card-classic	object.creditCardClassic	card	๐Ÿ’ณ	๏‚
cricket	object.cricket	crick	๐Ÿฆ—	๓ฐตญ
cricket-game	object.cricketGame	crickt	๐Ÿ	๓ฐตญ
cross	boxSharp.cross	+	โ”ผ	โ”ผ
cross-mark	status.crossMark	X	โŒ	๎ปƒ
cross-mark-button	status.crossMarkButton	[x]	โŽ	๎ปƒ
crossed-flags	object.crossedFlags	flags	๐ŸŽŒ	๏„
crossed-swords	object.crossedSwords	X-swd	โš”	๓ฐž‡
crown	object.crown	crown	๐Ÿ‘‘	๎ทซ
crutch	object.crutch	crutch	๐Ÿฉผ	๎ฝพ
crying-cat	status.cryingCat	cry	๐Ÿ˜ฟ	๎ปญ
crying-face	object.cryingFace	:'(	๐Ÿ˜ข	๎นป
crystal-ball	object.crystalBall	orb	๐Ÿ”ฎ	๓ฐฌฏ
csharp	lang.csharp	cs	โ™ฏ	๎žผ
css	lang.css	css	๐ŸŽจ	๎‰
csv	lang.csv	csv	๐Ÿ“‘	๓ฐˆ›
csv-file	file.csv	[csv]	๐Ÿ“Š	๎ปผ
cucumber	object.cucumber	cuke	๐Ÿฅ’	๎žท
cupcake	object.cupcake	cake	๐Ÿง	๓ฐฅš
curling-stone	object.curlingStone	curl	๐ŸฅŒ	๓ฐกฃ
currency-exchange	object.currencyExchange	exch	๐Ÿ’ฑ	๏ƒฌ
cursor	nav.cursor	>	โฏ	๏”
cut-meat	object.cutMeat	meat	๐Ÿฅฉ	๎Šฅ
dagger-knife	object.daggerKnife	knife	๐Ÿ—ก	๓ฐงป
dash	format.dash	-	โ€”	โ€“
database	device.database	[DB]	๐Ÿ—„	๏‡€
database-file	file.database	[db]	๐Ÿ—„	๏‡€
debug	tool.debug	dbg	๐Ÿž	๎ซ˜
decorative-notebook	object.decorativeNotebook	note	๐Ÿ“”	๓ฐ ฎ
default	lang.default	code	โŒ˜	๏‡‰
delete	tool.delete	rm	๐Ÿ—‘	๏„ญ
delivery-truck	object.deliveryTruck	truck	๐Ÿšš	๓ฐ”พ
desert-island	object.desertIsland	island	๐Ÿ	๓ฑ
desktop	device.desktop	desk	๐Ÿ–ฅ	๏„ˆ
diamond-dot	object.diamondDot	<.>	๐Ÿ’ 	๏ŠŸ
diamond-suit	object.diamondSuit	<>	โ™ฆ	๏ŠŸ
diff	git.diff	diff	ยฑ	๏…ฟ
dim-button-five	device.dimButtonFive	dim	๐Ÿ”…	๓ฐƒž
disabled	status.disabled	[\s]	โฆธ	๏ž
divide-sign	object.divideSign	/	โž—	๎ทณ
diving-mask	object.divingMask	dive	๐Ÿคฟ	๓ฑฅท
diya-lamp	object.diyaLamp	lamp	๐Ÿช”	๓ฐšต
dna	object.dna	dna	๐Ÿงฌ	๎ตฝ
docker	lang.docker	docker	๐Ÿณ	๎žฐ
dog	object.dog	dog	๐Ÿ•	๎ปท
dollar-banknote	object.dollarBanknote	$	๐Ÿ’ต	๏…•
dolphin	object.dolphin	dolph	๐Ÿฌ	๓ฑขด
done	status.done	*	โ€ข	โ€ข
donkey	object.donkey	donkey	๐Ÿซ	๓ฐŸ‚
dot	sep.dot	\s-\s	\sยท\s	\sยท\s
double-exclamation	status.doubleExclamation	!!	โ€ผ	๏„ช
down	nav.down	v	โ–ผ	๏ฃ
down-button	nav.downButton	down	๐Ÿ”ฝ	๏ฃ
down-left-arrow	nav.downLeftArrow	dl	โ†™	๓ฑžก
down-right-arrow	nav.downRightArrow	dr	โ†˜	๓ฑžฃ
download	action.download	dn	โฌ‡	๏€™
draft	status.draft	[D]	๐Ÿ“	๏Ÿ
dragon	object.dragon	drgn	๐Ÿ‰	๎ปธ
dragon-face	object.dragonFace	dragon	๐Ÿฒ	๎ปธ
dress	object.dress	dress	๐Ÿ‘—	๎‰ด
drive	file.drive	[hdd]	๐Ÿ’ฝ	๏‚ 
droplet	object.droplet	drop	๐Ÿ’ง	๏ƒ
drum	object.drum	drum	๐Ÿฅ	๎ธฒ
duck	object.duck	duck	๐Ÿฆ†	๓ฐ‡ฅ
ear-listening	object.earListening	listen	๐Ÿ‘‚	๏Šข
ear-of-corn	object.earOfCorn	corn	๐ŸŒฝ	๓ฐžธ
earth-africa	object.earthAfrica	earth	๐ŸŒ	๎น…
earth-americas	object.earthAmericas	earth	๐ŸŒŽ	๎น†
edit	tool.edit	~	โœŽ	๎ฉณ
egg	object.egg	egg	๐Ÿฅš	๎พ€
eight-spoked-asterisk	object.eightSpokedAsterisk	*	โœณ	๏ฉ
eject	action.eject	^	โ	๏’
elevator	object.elevator	lift	๐Ÿ›—	๓ฐ‡ญ
eleven-oclock	object.elevenOclock	11:00	๐Ÿ•š	๓ฑ‘‰
email-symbol	comm.emailSymbol	email	๐Ÿ“ง	๓ฐ‡ฎ
enabled	status.enabled	[x]	โ—	๏„‘
end-arrow	object.endArrow	END	๐Ÿ”š	๓ฐ‘
enter	nav.enter	enter	โ†ต	๏‹ธ
env	lang.env	env	๐Ÿ”ง	๎˜•
envelope-arrow-up-box	comm.envelopeArrowUpBox	mail^	๐Ÿ“ฉ	๓ฐ›ƒ
error	status.error	[!!]	โœ˜	๏€
euro-banknote	object.euroBanknote	EUR	๐Ÿ’ถ	๏…“
eval	tool.eval	>_	โ–ถ	๎ฎฏ
evergreen-pine	object.evergreenPine	pine	๐ŸŒฒ	๓ฐ…
ewe-sheep	object.eweSheep	ewe	๐Ÿ‘	๓ฐณ†
exa	tool.exa	exa	๐Ÿ”ญ	๎ญจ
exclamation-question	status.exclamationQuestion	!?	โ‰	๏„ช
exit	nav.exit	exit	๐Ÿšช	๏‹ต
expand	action.expand	<>	โ†”	๏ฅ
external	nav.external	ext	โ†—	๏‚ณ
eye	object.eye	eye	๐Ÿ‘	๏ฎ
eye-off	object.eyeOff	eye-off	๐Ÿ™ˆ	๏ฐ
eye-speech-thought	comm.eyeSpeechThought	think	๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ	๓ฐŸถ
factory	object.factory	fact	๐Ÿญ	๓ฐˆ
fast	icon.fast	>>	โšก	๏ƒง
fast-forward-button	action.fastForwardButton	>>	โฉ	๏
fast-reverse	nav.fastReverse	<<	โช	๏‰
fax	device.fax	fax	๐Ÿ“ 	๏†ฌ
feather	object.feather	feath	๐Ÿชถ	๎ทท
ferris-wheel	object.ferrisWheel	wheel	๐ŸŽก	๓ฐบค
ferry	object.ferry	ferry	โ›ด	๓ฐˆ“
fever-thermometer	object.feverThermometer	fever	๐Ÿค’	๏‹‡
field-hockey	object.fieldHockey	hock	๐Ÿ‘	๎ตฌ
file	icon.file	[F]	๐Ÿ“„	๏…›
file-download	file.download	[dl]	๐Ÿ“ฅ	๎ธถ
file-lock	file.lock	[lock]	๐Ÿ”’	๏€ฃ
file-upload	file.upload	[ul]	๐Ÿ“ค	๎ธฝ
files	tab.files	[F]	๐Ÿ“	๓ฐˆ”
film-frames	object.filmFrames	film	๐ŸŽž	๏€ˆ
film-projector	object.filmProjector	film	๐Ÿ“ฝ	๓ฐฎ
filter	action.filter	[flt]	๐Ÿ”ป	๏‚ฐ
fingerprint	security.fingerprint	fp	๐Ÿ‘†	๎น€
fire	object.fire	fire	๐Ÿ”ฅ	๏ญ
fire-engine-flame	object.fireEngineFlame	fire	๐Ÿš’	๏’
fire-extinguisher	object.fireExtinguisher	fire-x	๐Ÿงฏ	๏„ด
first	nav.first	|<	โ‡ค	๏ˆ
first-place-medal	object.firstPlaceMedal	#1	๐Ÿฅ‡	๎นซ
first-quarter-moon	object.firstQuarterMoon	moon	๐ŸŒ“	๓ฐฝก
fish	object.fish	fish	๐ŸŸ	๎น
fishing-pole	object.fishingPole	fish	๐ŸŽฃ	๎น
flag	object.flag	flag	๐Ÿšฉ	๏€ค
flashlight	object.flashlight	light	๐Ÿ”ฆ	๓ฐ‰„
flask	object.flask	flask	๐Ÿงช	๏ƒƒ
flat-shoe-sneaker	object.flatShoeSneaker	shoe	๐Ÿฅฟ	๓ฑ—ˆ
fleur-de-lis	object.fleurDeLis	fleur	โšœ	๓ฑŒƒ
flower-playing-cards	object.flowerPlayingCards	cards	๐ŸŽด	๓ฑขก
fly	object.fly	fly	๐Ÿชฐ	๎ตƒ
flying-disc	object.flyingDisc	disc	๐Ÿฅ	๓ฐ—ฎ
fog	status.fog	fog	๐ŸŒซ	๎Œ“
foggy-weather	object.foggyWeather	fog	๐ŸŒ	๎Œ“
folded-hands-praying	object.foldedHandsPraying	pray	๐Ÿ™	๎ป›
folder	icon.folder	[D]	๐Ÿ“	๏„•
folder-closed	file.folderClosed	[D]	๐Ÿ“	๏ป
folder-open	file.folderOpen	[O]	๐Ÿ“‚	๏ผ
food-pot	object.foodPot	pot	๐Ÿฒ	๓ฐ‹ฅ
footprints	object.footprints	steps	๐Ÿ‘ฃ	๎‰
fork	git.fork	fork	โ‘‚	๏„ฆ
fork-and-knife	object.forkAndKnife	F+K	๐Ÿด	๓ฐฉฐ
formal-shoe	object.formalShoe	shoe	๐Ÿ‘ž	๓ฐญ‡
fortune-cookie	object.fortuneCookie	luck	๐Ÿฅ 	๎ธฌ
fountain	object.fountain	fount	โ›ฒ	๓ฐฅซ
fountain-pen	object.fountainPen	pen	๐Ÿ–‹	๓ฐด’
four-leaf-clover	object.fourLeafClover	luck	๐Ÿ€	๓ฐ –
french-fries	object.frenchFries	fries	๐ŸŸ	๓ฑฅ—
fried-egg	object.friedEgg	egg	๐Ÿณ	๓ฑกŠ
frog	object.frog	frog	๐Ÿธ	๎ทธ
frowning-face	status.frowningFace	:(	โ˜น	๏„™
fuel-pump	object.fuelPump	fuel	โ›ฝ	๎ทน
full-moon	object.fullMoon	moon	๐ŸŒ•	๓ฐฝข
game-die	object.gameDie	die	๐ŸŽฒ	๎ฐ—
gamepad	object.gamepad	pad	๐ŸŽฎ	๏„›
garden-house	object.gardenHouse	house	๐Ÿก	๏€•
gear	object.gear	gear	โš™	๏€“
gemini	object.gemini	Gem	โ™Š	๓ฐช
gh	tool.gh	gh	โއ	๎ช„
ghost	icon.ghost	@	๐Ÿ‘ป	๓ฐŠ 
gift	object.gift	gift	๐ŸŽ	๏ซ
git	icon.git	git:	โއ	๏‡“
glasses	object.glasses	glass	๐Ÿ‘“	๎ทบ
globe	object.globe	globe	๐ŸŒ	๏‚ฌ
gloves-boxing	object.glovesBoxing	glove	๐Ÿงค	๓ฐญฅ
glowing-star-weather	object.glowingStarWeather	glow	๐ŸŒŸ	๎ฐ
go	lang.go	go	๐Ÿน	๎˜ง
goal	icon.goal	goal	๐ŸŽฏ	๏…€
goal-net-octicon	object.goalNetOcticon	goal	๐Ÿฅ…	๏“ž
goal-tool	tool.goal	(o)	โ—Ž	๎ฏธ
graduation-cap	object.graduationCap	grad	๐ŸŽ“	๏†
grapes	object.grapes	grape	๐Ÿ‡	๓ฑ„
green-square	object.greenSquare	[grn]	๐ŸŸฉ	๏ƒˆ
grid	object.grid	grid	โ–ฆ	๏€‰
grin-big-eyes-grimace	status.grinBigEyesGrimace	:D	๐Ÿ˜ƒ	๎นˆ
grin-grimace	status.grinGrimace	:-D	๐Ÿ˜€	๎นˆ
grin-sweat	object.grinSweat	:D'	๐Ÿ˜…	๎นŒ
grinning-cat	object.grinningCat	cat	๐Ÿ˜บ	๎ปญ
grinning-smile	status.grinningSmile	:-D	๐Ÿ˜„	๏„˜
group	user.group	group	๐Ÿ‘ฅ	๏ƒ€
guide-dog-service	object.guideDogService	dog	๐Ÿฆฎ	๓ฐชญ
guitar	object.guitar	guitar	๐ŸŽธ	๎ฝŽ
hamburger	object.hamburger	burger	๐Ÿ”	๓ฐš…
hammer	object.hammer	hammer	๐Ÿ”จ	๎ปฟ
hammer-and-pick	object.hammerAndPick	tools	โš’	๎ปฟ
hamsa	object.hamsa	hamsa	๐Ÿชฌ	๎ปŠ
hand-lizard	object.handLizard	lizard	๐ŸฆŽ	๏‰˜
hand-over-mouth	action.handOverMouth	shh	๐Ÿคญ	๏‰–
handbag	object.handbag	bag	๐Ÿ‘œ	๓ฐธ
handshake	object.handshake	shake	๐Ÿค	๏Šต
head-bandage	object.headBandage	bandg	๐Ÿค•	๎ตด
headphones	object.headphones	phones	๐ŸŽง	๏€ฅ
hearing-aid	device.hearingAid	hear+	๐Ÿฆป	๓ฐŸ…
heart	object.heart	heart	โค	๏€„
heart-exclamation-thick	status.heartExclamationThick	<!>	โฃ	๓ฑˆธ
heart-eyes-grin-hearts	object.heartEyesGrinHearts	<3	๐Ÿ˜	๎น
heart-hands	object.heartHands	heart	๐Ÿซถ	๓ฑƒฑ
heart-suit-beat	object.heartSuitBeat	<3	โ™ฅ	๏ˆž
heavy-equals	object.heavyEquals	==	๐ŸŸฐ	๎ทถ
helicopter	object.helicopter	heli	๐Ÿš	๎ทฝ
help	object.help	help	โ“	๏™
hidden	file.hidden	[.]	๐Ÿ™ˆ	๏ฐ
high	thinking.high	[high]	โ—’\shigh	๓ฐชฃ\shigh
high-heel	object.highHeel	heel	๐Ÿ‘ 	๓ฐญˆ
high-speed-train	object.highSpeedTrain	train	๐Ÿš„	๏ˆธ
hiking-boot	object.hikingBoot	boot	๐Ÿฅพ	๓ฐตฟ
history	git.history	hist	๐Ÿ“œ	๏‡š
hockey-puck	object.hockeyPuck	puck	๐Ÿ’	๎ตฌ
hollow-red-circle	object.hollowRedCircle	(o)	โญ•	๏„Œ
home	nav.home	home	๐Ÿ 	๏€•
honey-pot	object.honeyPot	honey	๐Ÿฏ	๓ฐ‹ฅ
honeybee	object.honeybee	bee	๐Ÿ	๓ฐพก
hook	icon.extensionHook	HK	๐Ÿช	๏ƒ
horse	object.horse	horse	๐ŸŽ	๎ผ„
horse-face	object.horseFace	horse	๐Ÿด	๎ฝ‘
hospital	object.hospital	hosp	๐Ÿฅ	๏ƒธ
host	icon.host	host	๐Ÿ–ฅ	๏„‰
hot-dog	object.hotDog	hotdog	๐ŸŒญ	๎พ‡
hot-face	status.hotFace	hot	๐Ÿฅต	๎ซ
hot-pepper	object.hotPepper	hot	๐ŸŒถ	๎พ‹
hot-springs	object.hotSprings	hot	โ™จ	๎ซ
hotel	object.hotel	hotel	๐Ÿจ	๏ˆถ
hourglass	object.hourglass	hour	โŒ›	๏‰”
houses	object.houses	homes	๐Ÿ˜	๏€•
hr-char	md.hrChar	-	โ”€	โ”€
html	lang.html	html	๐ŸŒ	๎œถ
ice-cream	object.iceCream	icecrm	๐Ÿจ	๎พˆ
ice-cube	object.iceCube	ice	๐ŸงŠ	๏†ฒ
ice-skate	object.iceSkate	skate	โ›ธ	๓ฐดต
identification-card	object.identificationCard	ID	๐Ÿชช	๏‹‚
image	object.image	img	๐Ÿ–ผ	๏€พ
image-file	file.image	[img]	๐Ÿ–ผ	๏‡…
image-language	lang.image	img	๐Ÿ–ผ	๓ฐˆŸ
inbox	comm.inbox	inbox	๐Ÿ“ฅ	๏€œ
incoming-envelope-open	comm.incomingEnvelopeOpen	mail	๐Ÿ“จ	๎‰ท
infinity	object.infinity	inf	โ™พ	๎ทพ
info	object.info	info	โ„น	๏š
info-status	status.info	[i]	โ“˜	๏„ฉ
ini	lang.ini	ini	โš™	๎˜•
input	icon.input	in:	โคต	๏‚
input-numbers	action.inputNumbers	123	๐Ÿ”ข	๏“ท
input-symbols	object.inputSymbols	@#$	๐Ÿ”ฃ	๓ฑ”
inspect-image	tool.inspectImage	[i]	๐Ÿ–ผ	๎ซช
instruction	icon.extensionInstruction	IN	๐Ÿ“˜	๏€ญ
interaction	tab.interaction	[I]	โŒจ	๓ฐŒŒ
irc	tool.irc	irc	โœ‰	๏‚†
issue	git.issue	issue	โš 	๏ช
issue-closed	git.issueClosed	iss:closed	โ˜‘	๏
issue-open	git.issueOpen	iss:open	โ˜‰	๏†’
japanese-castle	object.japaneseCastle	castle	๐Ÿฏ	๓ฐ„š
java	lang.java	java	โ˜•	๎œธ
javascript	lang.javascript	js	๐ŸŸจ	๎˜Œ
jellyfish	object.jellyfish	jelly	๐Ÿชผ	๓ฐผ
job	icon.job	bg	โš™	๏€“
job-tool	tool.job	job	โš™	๎ฎข
json	lang.json	json	๐Ÿงพ	๎˜‹
julia	lang.julia	jl	โ’ฟ	๎˜ค
kaaba	object.kaaba	kaaba	๐Ÿ•‹	๎ปŽ
kangaroo	object.kangaroo	roo	๐Ÿฆ˜	๓ฑ•˜
kebab	nav.kebab	...	โ‹ฎ	๏…‚
key	security.key	key	๐Ÿ”‘	๏‚„
keyboard	device.keyboard	kbd	โŒจ	๏„œ
keycap-asterisk	object.keycapAsterisk	[*]	*โƒฃ	๏ฉ
keycap-hash	action.keycapHash	#	#โƒฃ	๏“Ÿ
khanda	object.khanda	khanda	๐Ÿชฏ	๎ป
kick-scooter	object.kickScooter	scoot	๐Ÿ›ด	๓ฑ–ฝ
kissing-cat	status.kissingCat	kiss	๐Ÿ˜ฝ	๎ปญ
kissing-face	object.kissingFace	kiss	๐Ÿ˜™	๎นŸ
kitchen-knife	object.kitchenKnife	knife	๐Ÿ”ช	๓ฐงป
kite	object.kite	kite	๐Ÿช	๓ฑฆ…
koala	object.koala	koala	๐Ÿจ	๓ฑœฟ
kotlin	lang.kotlin	kt	๐Ÿ…บ	๎˜ด
ladder	object.ladder	ladder	๐Ÿชœ	๓ฑ–ข
landslide	status.landslide	slide	๐Ÿ›˜	๓ฑฉˆ
language	object.language	lang	๐ŸŒ	๏†ซ
laptop	device.laptop	laptop	๐Ÿ’ป	๏„‰
large-blue-diamond	object.largeBlueDiamond	DIA	๐Ÿ”ท	๏ŠŸ
large-square-black	object.largeSquareBlack	[#]	โฌ›	๏ƒˆ
last	nav.last	>|	โ‡ฅ	๏
last-quarter-moon	object.lastQuarterMoon	moon	๐ŸŒ—	๓ฐฝฃ
latin-cross	object.latinCross	cross	โœ	๎ปƒ
latin-letters-input	object.latinLettersInput	ABC	๐Ÿ”ค	๓ฑŒฏ
launch	tool.launch	run	๐Ÿš€	๏„ต
leafless-tree	object.leaflessTree	tree	๐Ÿชพ	๏†ป
leafy-green	object.leafyGreen	leaf	๐Ÿฅฌ	๏ฌ
left	nav.left	<	โ—€	๏ 
left-arrow-solid	nav.leftArrowSolid	<-	โฌ…	๏ 
left-fist	object.leftFist	fist<	๐Ÿค›	๎ปฝ
left-luggage-suitcase	object.leftLuggageSuitcase	bag	๐Ÿ›…	๏ƒฒ
leftwards-hand	object.leftwardsHand	<-	๐Ÿซฒ	๏‚ฅ
lemon	object.lemon	lemon	๐Ÿ‹	๏‚”
level-slider	object.levelSlider	----	๐ŸŽš	๏‡ž
light-rail	object.lightRail	LRT	๐Ÿšˆ	๓ฐผž
lightbulb	object.lightbulb	bulb	๐Ÿ’ก	๏ƒซ
link	action.link	ln	๐Ÿ”—	๏ƒ
linked-paperclips	object.linkedPaperclips	clips	๐Ÿ–‡	๏ƒ†
lipstick	object.lipstick	lip	๐Ÿ’„	๓ฑŽต
list	object.list	list	๐Ÿ“‹	๏€บ
location	object.location	loc	๐Ÿ“	๎ด€
lock	action.lock	[L]	๐Ÿ”’	๏€ฃ
locked	status.locked	[L]	๐Ÿ”’	๏€ฃ
locked-pen	security.lockedPen	lock+p	๐Ÿ”	๏€Ÿ
locked-with-key-door	security.lockedWithKeyDoor	lock	๐Ÿ”	๓ฑ‚ฏ
locomotive	object.locomotive	train	๐Ÿš‚	๎ขƒ
log	lang.log	log	๐Ÿ“œ	๓ฐŒฑ
lollipop	object.lollipop	lolly	๐Ÿญ	๎Šฃ
long-drum	object.longDrum	drum	๐Ÿช˜	๎ธฒ
loop	icon.loop	loop	โ†ป	๏€ก
lotion-bottle	object.lotionBottle	lotion	๐Ÿงด	๓ฑ–‚
loudspeaker-volume	comm.loudspeakerVolume	loud	๐Ÿ“ข	๏€จ
love-hotel	object.loveHotel	hotel	๐Ÿฉ	๏ˆถ
love-letter	comm.loveLetter	<3msg	๐Ÿ’Œ	๎ฌ›
low	thinking.low	[low]	โ—”\slow	๓ฐชŸ\slow
low-battery	status.lowBattery	[!]	๐Ÿชซ	๓ฑŠก
lower-half		#	โ–„	โ–„
lsp	tool.lsp	lsp	๐Ÿ’ก	๎ฉก
lua	lang.lua	lua	๐ŸŒ™	๎˜ 
luggage	object.luggage	bag	๐Ÿงณ	๏ƒฒ
lungs	object.lungs	lungs	๐Ÿซ	๎บช
magic-wand	object.magicWand	magic	๐Ÿช„	๏ƒ
magnet	object.magnet	magnet	๐Ÿงฒ	๏ถ
mail	comm.mail	mail	โœ‰	๏ƒ 
mailbox-lowered	comm.mailboxLowered	mail-	๐Ÿ“ญ	๓ฐ›ฎ
mailbox-raised	comm.mailboxRaised	mail+	๐Ÿ“ฌ	๓ฐถ
manual-wheelchair	object.manualWheelchair	chair	๐Ÿฆฝ	๏†“
map	object.map	map	๐Ÿ—บ	๏‰น
maple-leaf	object.mapleLeaf	maple	๐Ÿ	๎ผน
markdown	lang.markdown	md	๐Ÿ“	๎˜‰
markdown-bullet	md.bullet	*	โ€ข	๏„‘
martial-arts-uniform	object.martialArtsUniform	karate	๐Ÿฅ‹	๓ฐถ
max	thinking.max	[max]	โ—‰\smax	๏ญ\smax
maximize	action.maximize	[+]	๐Ÿ—–	๏ฏ
mcp	tool.mcp	<>	๐Ÿ”Œ	๎ฌญ
mcp-extension	icon.extensionMcp	MCP	๐Ÿ”Œ	๏‡ฆ
meat-on-bone	object.meatOnBone	meat	๐Ÿ–	๎บš
medical-mask	object.medicalMask	mask	๐Ÿ˜ท	๎ผ‡
medical-symbol-generic	object.medicalSymbolGeneric	med	โš•	๓ฑ”
medium	thinking.medium	[med]	โ—‘\smed	๓ฐชก\smed
medium-small-square-black	object.mediumSmallSquareBlack	[#]	โ—พ	๓ฐจ•
medium-square	object.mediumSquare	[]	โ—ป	๓ฐจ“
megaphone-cod	comm.megaphoneCod	mega	๐Ÿ“ฃ	๎ฌž
memory	device.memory	ram	๐Ÿง 	๎ฟ…
memory-tab	tab.memory	[Y]	๐Ÿง 	๓ฐง‘
memory-tool	tool.memory	mem	๐Ÿง 	๎ซŽ
menorah	object.menorah	menora	๐Ÿ•Ž	๎ป’
mens-room	object.mensRoom	men	๐Ÿšน	๓ฐฉž
mention	comm.mention	@	@	๏‡บ
menu	nav.menu	menu	โ˜ฐ	๏ƒ‰
merge	git.merge	merge	๐Ÿ”€	๏…ฟ
mic	icon.mic	MIC	๐ŸŽค	๏„ฐ
microscope	object.microscope	micro	๐Ÿ”ฌ	๎บฌ
middle-finger	action.middleFinger	finger	๐Ÿ–•	๎พƒ
military-helmet-safety	object.militaryHelmetSafety	helm	๐Ÿช–	๎พ„
military-medal	object.militaryMedal	medal	๐ŸŽ–	๎นซ
milk-glass-font-awesome	object.milkGlassFontAwesome	milk	๐Ÿฅ›	๏€€
minimal	thinking.minimal	[min]	โ—‹\smin	๓ฐชž\smin
minimize	action.minimize	[-]	๐Ÿ—•	๎ผพ
minus-solid	action.minusSolid	-	โž–	๏จ
mirror	object.mirror	mirror	๐Ÿชž	๓ฑ‡ฝ
mirror-ball	object.mirrorBall	ball	๐Ÿชฉ	๓ฑ‡ฝ
mobile	device.mobile	phone	๐Ÿ“ฑ	๎ด‰
mobile-arrow-down	device.mobileArrowDown	ph-dn	๐Ÿ“ฒ	๓ฐง•
mobile-phone-off	device.mobilePhoneOff	phone-	๐Ÿ“ด	๏„‹
model	icon.model	[M]	โฌข	๎ฐ™
model-tab	tab.model	[M]	๐Ÿค–	๓ฐšฉ
money-bag	object.moneyBag	money	๐Ÿ’ฐ	๏А
moon-cake	object.moonCake	cake	๐Ÿฅฎ	๏‡ฝ
moon-face-first-quarter	object.moonFaceFirstQuarter	moon1q	๐ŸŒ›	๓ฐฝก
more	nav.more	...	โ€ฆ	๏…
mosque	object.mosque	mosque	๐Ÿ•Œ	๎ป“
motor-boat-sailboat	object.motorBoatSailboat	boat	๐Ÿ›ฅ	๓ฐปˆ
motor-scooter	object.motorScooter	scoot	๐Ÿ›ต	๓ฑ–ฝ
motorcycle	object.motorcycle	moto	๐Ÿ	๏ˆœ
motorized-wheelchair	device.motorizedWheelchair	chair	๐Ÿฆผ	๓ฑŽ
motorway	object.motorway	hwy	๐Ÿ›ฃ	๓ฐ—ท
mountain	object.mountain	mount	โ›ฐ	๎ผˆ
mountain-railway	object.mountainRailway	rail	๐Ÿšž	๎ขƒ
mountain-sunrise	object.mountainSunrise	rise	๐ŸŒ„	๎Œ
mouse	device.mouse	mouse	๐Ÿ–ฑ	๎พบ
mouse-animal	object.mouseAnimal	mouse	๐Ÿ	๓ฐฝ
mouth-lips	object.mouthLips	lips	๐Ÿ‘„	๎‰˜
move	tool.move	mv	โžœ	๏ก
multiply-sign	action.multiplySign	x	โœ–	๓ฐŽ‚
mushroom	object.mushroom	shroom	๐Ÿ„	๓ฐŸŸ
musical-keyboard-font-awesome	object.musicalKeyboardFontAwesome	keys	๐ŸŽน	๏„œ
musical-notes	object.musicalNotes	notes	๐ŸŽถ	๓ฐŽš
muted	comm.muted	mute	๐Ÿ”‡	๎ปจ
name-badge	object.nameBadge	ID	๐Ÿ“›	๏‹
nav-expand	nav.expand	+	โ–ธ	๏ƒš
nest-eggs	object.nestEggs	nest	๐Ÿชบ	๎พ€
new	action.new	+	โœจ	๏€–
new-moon	object.newMoon	moon	๐ŸŒ‘	๓ฐฝค
newspaper	object.newspaper	news	๐Ÿ“ฐ	๏‡ช
next	nav.next	>	โ–ถ	๏”
no-bicycle	object.noBicycle	no bik	๐Ÿšณ	๏ˆ†
no-entry	status.noEntry	[no]	โ›”	๏“ด
no-mobile	device.noMobile	no ph	๐Ÿ“ต	๎ดˆ
no-smoking	status.noSmoking	no-smk	๐Ÿšญ	๓ฐ’ต
notebook	object.notebook	note	๐Ÿ““	๓ฐ ฎ
nut-and-bolt-nut	object.nutAndBoltNut	nut	๐Ÿ”ฉ	๓ฐ›ธ
office-building	object.officeBuilding	office	๐Ÿข	๏†ญ
oil-drum	object.oilDrum	oil	๐Ÿ›ข	๎บฎ
ok-button	status.okButton	OK	๐Ÿ†—	๏˜
okay-hand	object.okayHand	OK	๐Ÿ‘Œ	๓ฐฉ
om	object.om	om	๐Ÿ•‰	๎ป”
omp	icon.omp	โง	โง	๓ฐต—
on-arrow	nav.onArrow	on	๐Ÿ”›	๓ฐ
oncoming-automobile	object.oncomingAutomobile	car	๐Ÿš˜	๏†น
oncoming-bus	object.oncomingBus	bus	๐Ÿš	๏ˆ‡
oncoming-fist	action.oncomingFist	fist	๐Ÿ‘Š	๎ปฝ
oncoming-taxi	object.oncomingTaxi	taxi	๐Ÿš–	๏†บ
one	user.one	user	๐Ÿ‘ค	๏€‡
one-piece-swimsuit	object.onePieceSwimsuit	swim	๐Ÿฉฑ	๓ฐ“ฃ
online	status.online	[ON]	๐ŸŸข	๏‡ซ
open	action.open	open	๐Ÿ“‚	๏ผ
open-hands	object.openHands	hands	๐Ÿ‘	๏Šง
open-mouth	status.openMouth	:O	๐Ÿ˜ฎ	๎บต
open-mouth-frown	object.openMouthFrown	:(	๐Ÿ˜ฆ	๏„™
optical-disk	device.opticalDisk	disc	๐Ÿ’ฟ	๓ฐ—ฎ
orange-circle-cod	object.orangeCircleCod	(org)	๐ŸŸ 	๎ชผ
orange-diamond	object.orangeDiamond	<>	๐Ÿ”ธ	๏ŠŸ
orange-square-outline	object.orangeSquareOutline	[or]	๐ŸŸง	๏‚–
orthodox-cross	object.orthodoxCross	cross	โ˜ฆ	๎ปƒ
otter	object.otter	otter	๐Ÿฆฆ	๎ผŠ
output	icon.output	out:	โคด	๏‚‹
owl	object.owl	owl	๐Ÿฆ‰	๓ฐ’
package	icon.package	[P]	๐Ÿ“ฆ	๏’‡
page-down	nav.pageDown	pgdn	โฌ	๏„ƒ
page-up	nav.pageUp	pgup	โซ	๏„‚
pager	device.pager	pager	๐Ÿ“Ÿ	๎พŠ
paintbrush	object.paintbrush	brush	๐Ÿ–Œ	๏‡ผ
palette	object.palette	palette	๐ŸŽจ	๎ฟŒ
palm-down	action.palmDown	down	๐Ÿซณ	๏‚ง
palm-tree	object.palmTree	palm	๐ŸŒด	๓ฑ•
palm-up	action.palmUp	up	๐Ÿซด	๏‚ฆ
panda	object.panda	panda	๐Ÿผ	๓ฐš
paper-roll	object.paperRoll	roll	๐Ÿงป	๓ฑ…—
paperclip	object.paperclip	clip	๐Ÿ“Ž	๏ƒ†
parachute	object.parachute	chute	๐Ÿช‚	๓ฐฒด
parrot	object.parrot	parrot	๐Ÿฆœ	๏Œฉ
party-popper	object.partyPopper	party	๐ŸŽ‰	๓ฑ–
passenger-ship	object.passengerShip	ship	๐Ÿ›ณ	๏ˆš
passport-control	security.passportControl	pass	๐Ÿ›‚	๎นณ
paste	action.paste	pst	๐Ÿ“‹	๏ƒช
pause	icon.pause	||	โธ	๏Œ
paused	status.paused	[||]	โธ	๏Š‹
paw-prints	object.pawPrints	paws	๐Ÿพ	๏†ฐ
pdf	lang.pdf	pdf	๐Ÿ“•	๓ฐˆฆ
pdf-file	file.pdf	[pdf]	๐Ÿ“•	๏‡
peace-font-awesome	object.peaceFontAwesome	peace	โ˜ฎ	๎ป–
peach	object.peach	peach	๐Ÿ‘	๎Šจ
peanut	object.peanut	nut	๐Ÿฅœ	๓ฐฟผ
pear	object.pear	pear	๐Ÿ	๓ฑจŽ
peeking-eye	object.peekingEye	peek	๐Ÿซฃ	๓ฐˆˆ
pen	object.pen	pen	๐Ÿ–Š	๏€Ÿ
pencil	object.pencil	pen	โœ	๏€
pending	status.pending	[*]	โณ	๏‰”
penguin	object.penguin	peng	๐Ÿง	๓ฐป€
phoenix	object.phoenix	phnx	๐Ÿฆโ€๐Ÿ”ฅ	๎ก 
phone	comm.phone	phone	๐Ÿ“ž	๏‚•
php	lang.php	php	๐Ÿ˜	๎˜ˆ
pi	icon.pi	pi	ฯ€	๎ˆฌ
pi-hole	object.piHole	hole	๐Ÿ•ณ	๓ฐทฑ
pickaxe	object.pickaxe	pick	โ›	๓ฐขท
pickup-truck	object.pickupTruck	truck	๐Ÿ›ป	๎บน
pig	object.pig	pig	๐Ÿ–	๓ฐ
pig-face	object.pigFace	pig	๐Ÿท	๓ฐ
pig-nose	object.pigNose	pig	๐Ÿฝ	๓ฑ€†
pile-of-poo	object.pileOfPoo	poo	๐Ÿ’ฉ	๎บฏ
pills	object.pills	pill	๐Ÿ’Š	๎ถ‡
pin	action.pin	pin	๐Ÿ“Œ	๏‚
pinched-fingers	object.pinchedFingers	pinch	๐ŸคŒ	๓ฐชฝ
pinching-hand	action.pinchingHand	pinch	๐Ÿค	๓ฐชฝ
pine-decoration-bamboo	object.pineDecorationBamboo	pine	๐ŸŽ	๎Ÿ
pineapple	object.pineapple	pine	๐Ÿ	๓ฑ†
ping-pong	object.pingPong	ping	๐Ÿ“	๎ตฑ
pipe	sep.pipe	\s|\s	\sโ”‚\s	๎‚ณ
pirate-flag	object.pirateFlag	pirate	๐Ÿดโ€โ˜ ๏ธ	๓ฐจˆ
pisces	object.pisces	fish	โ™“	๓ฐช„
pizza	object.pizza	pizza	๐Ÿ•	๓ฐ‰
place-of-worship	object.placeOfWorship	pray	๐Ÿ›	๎ป—
place-setting	object.placeSetting	meal	๐Ÿฝ	๏ƒต
placeholder-rail		|	โ”†	โ”†
plan	icon.plan	plan	๐Ÿ—บ	๏‹’
play	action.play	>	โ–ถ	๏‹
playground-slide	object.playgroundSlide	slide	๐Ÿ›	๓ฑ–ฅ
point-down-hand	action.pointDownHand	v	๐Ÿ‘‡	๏‚ง
point-left-hand	object.pointLeftHand	<--	๐Ÿ‘ˆ	๏‚ฅ
point-right-hand	action.pointRightHand	->	๐Ÿ‘‰	๏‚ค
point-up	user.pointUp	^	โ˜	๏‚ฆ
police-car-generic	object.policeCarGeneric	police	๐Ÿš“	๏†น
pool-eight-ball	object.poolEightBall	8ball	๐ŸŽฑ	๓ฐ˜†
popcorn	object.popcorn	pop	๐Ÿฟ	๓ฐข
popping-bottle-wine	object.poppingBottleWine	pop!	๐Ÿพ	๎ผ—
potted-plant-pot	object.pottedPlantPot	plant	๐Ÿชด	๓ฐ‹ฅ
pound-banknote	object.poundBanknote	GBP	๐Ÿ’ท	๓ฐฃ
pouring-liquid	object.pouringLiquid	pour	๐Ÿซ—	๎™ฐ
power	action.power	PWR	โป	๏€‘
powerline	sep.powerline	>	โ–•	๎‚ฐ
powerline-left	sep.powerlineLeft	>	โ–ถ	๎‚ฐ
powerline-right	sep.powerlineRight	<	โ—€	๎‚ฒ
powerline-thin	sep.powerlineThin	>	โ”†	๎‚ฑ
powerline-thin-left	sep.powerlineThinLeft	>	>	๎‚ฑ
powerline-thin-right	sep.powerlineThinRight	<	<	๎‚ณ
pr	icon.pr	PR	โคด	๎ฉค
pretzel	object.pretzel	pretz	๐Ÿฅจ	๓ฑ•ข
preview-rail		|	โ”‚	โ”‚
previous	nav.previous	<	โ—€	๏“
prewalk	icon.prewalk	prewalk	๐Ÿƒ	๏Š
print	action.print	prt	๐Ÿ–จ	๏€ฏ
prompt	icon.extensionPrompt	PR	โœŽ	๏ต
providers	tab.providers	[P]	๐ŸŒ	๓ฐ–Ÿ
pull	git.pull	pull	โฌ‡	๏ฃ
purple-circle-font-awesome	object.purpleCircleFontAwesome	(o)	๐ŸŸฃ	๏„‘
purple-square	object.purpleSquare	[P]	๐ŸŸช	๏ƒˆ
push	git.push	push	โฌ†	๏ข
puzzle	object.puzzle	puzzle	๐Ÿงฉ	๏„ฎ
python	lang.python	py	๐Ÿ	๎˜†
question	status.question	[?]	โ“	๏™
question-white	object.questionWhite	?	โ”	๏„จ
queued	status.queued	...	โณ	๏ƒ‹
quote-border	md.quoteBorder	|	โ–	โ”‚
rabbit	object.rabbit	rabbit	๐Ÿ‡	๓ฐค‡
rabbit-face	object.rabbitFace	rabbit	๐Ÿฐ	๓ฐค‡
racing-car	object.racingCar	race	๐ŸŽ	๓ฐžฌ
radio	device.radio	radio	๐Ÿ“ป	๎พผ
radio-selected	radio.selected	(o)	โ—‰	๏†’
radioactive	security.radioactive	rad	โ˜ข	๓ฐผ
rail	advisor.rail	|	โ–Ž	โ–Ž
railway-car	object.railwayCar	rail	๐Ÿšƒ	๓ฐฏ˜
railway-track	object.railwayTrack	track	๐Ÿ›ค	๎ขƒ
rain-cloud	object.rainCloud	rain	๐ŸŒง	๎ผœ
rain-umbrella	object.rainUmbrella	rain	โ˜”	๎Œ˜
rainbow	object.rainbow	rainbw	๐ŸŒˆ	๎ผฆ
rainbow-flag-rainbow	object.rainbowFlagRainbow	pride	๐Ÿณ๏ธโ€๐ŸŒˆ	๎ผฆ
raised-fist	object.raisedFist	fist	โœŠ	๎ปฝ
raised-hand	comm.raisedHand	hand	โœ‹	๏‰–
raised-hand-back	user.raisedHandBack	hand	๐Ÿคš	๏‰–
raising-hands	user.raisingHands	\\o/	๐Ÿ™Œ	๓ฐ™Œ
receipt	object.receipt	rcpt	๐Ÿงพ	๎ธŒ
record	action.record	rec	โบ	๏„‘
recycling	action.recycling	recycle	โ™ป	๏†ธ
red-apple	object.redApple	apple	๐ŸŽ	๏…น
red-circle	object.redCircle	(o)	๐Ÿ”ด	๏„‘
red-envelope-open	comm.redEnvelopeOpen	redenv	๐Ÿงง	๏Šถ
red-exclamation	status.redExclamation	!	โ—	๏„ช
red-square-solid	object.redSquareSolid	[red]	๐ŸŸฅ	๏ƒˆ
red-triangle-up	object.redTriangleUp	up	๐Ÿ”บ	๓ฑจŠ
redo	action.redo	->	โ†ท	๏‹น
refresh	action.refresh	ref	โŸณ	๏‹ฑ
registered	object.registered	(r)	ยฎ	๏‰
release	git.release	rel	๐Ÿš€	๏„ต
reminder-ribbon	object.reminderRibbon	ribbon	๐ŸŽ—	๓ฐขŒ
remove	action.remove	-	โˆ’	๏จ
removed	status.removed	-	โˆ’	๏จ
repeat	action.repeat	rpt	๐Ÿ”	๏€ž
repeat-once	action.repeatOnce	re:1	๐Ÿ”‚	๓ฐ‘˜
reply	comm.reply	re:	โ†ฉ	๏„’
reply-all	comm.replyAll	re:all	โ†ช	๏„ข
repository	git.repository	repo	๐Ÿ“ฆ	๏€ฎ
rescue-helmet	object.rescueHelmet	helm	โ›‘	๎พ„
resolve	tool.resolve	[v]	โœ“	๎ฎฑ
restroom	object.restroom	wc	๐Ÿšป	๎ฝž
review	tool.review	rev	โ—‰	๎ฉฐ
review-git	git.review	rev	๐Ÿ‘€	๏…ฟ
rewind	icon.rewind	<-	โ†ถ	๏ƒข
ribbon	object.ribbon	ribbon	๐ŸŽ€	๎ถฅ
rice-ball	object.riceBall	rice	๐Ÿ™	๓ฐŸช
rice-cracker	object.riceCracker	rice	๐Ÿ˜	๓ฐŸช
right	nav.right	>	โ–ถ	๏ก
right-arrow	nav.rightArrow	->	โžก	๏ก
right-facing-fist	object.rightFacingFist	fist>	๐Ÿคœ	๎ปฝ
rightwards-hand	object.rightwardsHand	->	๐Ÿซฑ	๏‚ค
ring-buoy	object.ringBuoy	(O)	๐Ÿ›Ÿ	๏‡
ring-classic	object.ringClassic	ring	๐Ÿ’	๎ผ‹
ringed-planet	object.ringedPlanet	planet	๐Ÿช	๎ˆฎ
robot	user.robot	bot	๐Ÿค–	๎ธ
rocket	object.rocket	rocket	๐Ÿš€	๏„ต
rolled-newspaper-font-awesome	object.rolledNewspaperFontAwesome	news	๐Ÿ—ž	๏‡ช
roller-skate	object.rollerSkate	skate	๐Ÿ›ผ	๓ฐดซ
round-bottom-left	boxRound.bottomLeft	+	โ•ฐ	โ•ฐ
round-bottom-right	boxRound.bottomRight	+	โ•ฏ	โ•ฏ
round-horizontal	boxRound.horizontal	-	โ”€	โ”€
round-top-left	boxRound.topLeft	+	โ•ญ	โ•ญ
round-top-right	boxRound.topRight	+	โ•ฎ	โ•ฎ
round-vertical	boxRound.vertical	|	โ”‚	โ”‚
rss	comm.rss	rss	๐Ÿ“ก	๏‚ž
ruby	lang.ruby	rb	๐Ÿ’Ž	๎ž‘
rugby-ball	object.rugbyBall	rugby	๐Ÿ‰	๓ฐถ™
rule-extension	icon.extensionRule	RL	โš–	๏ƒฃ
running	status.running	[~]	โŸณ	๏„
running-shirt	object.runningShirt	shirt	๐ŸŽฝ	๎ธœ
running-shoe-sneaker	object.runningShoeSneaker	shoe	๐Ÿ‘Ÿ	๓ฑ—ˆ
rust	lang.rust	rs	๐Ÿฆ€	๎žจ
safety-goggles	object.safetyGoggles	goggle	๐Ÿฅฝ	๓ฐดฐ
sagittarius	object.sagittarius	sag	โ™	๓ฐช…
sailboat	object.sailboat	sail	โ›ต	๓ฐปˆ
satellite	device.satellite	sat	๐Ÿ›ฐ	๎ฝŸ
save	action.save	save	๐Ÿ’พ	๏ƒ‡
saxophone	object.saxophone	sax	๐ŸŽท	๓ฐ˜‰
school	object.school	school	๐Ÿซ	๎ธ’
scissors	object.scissors	scissors	โœ‚	๏ƒ„
scorpio	object.scorpio	Scorp	โ™	๓ฐช†
scratch-folder	icon.scratchFolder	[T]	๐Ÿ—‘	๏€”
screwdriver	object.screwdriver	driver	๐Ÿช›	๎ธ“
seal	object.seal	seal	๐Ÿฆญ	๓ฐ‘บ
search	icon.search	[/]	๐Ÿ”	๏€‚
seat	object.seat	seat	๐Ÿ’บ	๓ฐณƒ
secret	security.secret	sec	๐Ÿ•ต	๏ˆ›
seedling	object.seedling	seed	๐ŸŒฑ	๎ถง
selected	nav.selected	->	โžค	๏…ธ
send	comm.send	send	๐Ÿ“ค	๏‡˜
server	device.server	srv	๐Ÿ–ฅ	๏ˆณ
service-dog	object.serviceDog	svcdog	๐Ÿ•โ€๐Ÿฆบ	๓ฐชญ
session	icon.session	id	๐Ÿ†”	๓ฐ‘
sewing-needle	object.sewingNeedle	needle	๐Ÿชก	๓ฐŽ‘
shadowed	status.shadowed	[/]	โ—‹	๏„Œ
share	action.share	shr	๐Ÿ“ค	๏‡ 
shark	object.shark	shark	๐Ÿฆˆ	๓ฑขบ
sharp-bottom-left	boxSharp.bottomLeft	+	โ””	โ””
sharp-bottom-right	boxSharp.bottomRight	+	โ”˜	โ”˜
sharp-horizontal	boxSharp.horizontal	-	โ”€	โ”€
sharp-top-left	boxSharp.topLeft	+	โ”Œ	โ”Œ
sharp-top-right	boxSharp.topRight	+	โ”	โ”
sharp-vertical	boxSharp.vertical	|	โ”‚	โ”‚
sheaf-of-rice	object.sheafOfRice	rice	๐ŸŒพ	๓ฐŸช
shell	lang.shell	sh	๐Ÿ’ป	๎ž•
shell-tab	tab.shell	[S]	๐Ÿ’ป	๓ฐ†
shield	security.shield	shld	๐Ÿ›ก	๏„ฒ
ship	object.ship	ship	๐Ÿšข	๏ˆš
ship-wheel	object.shipWheel	wheel	๐Ÿ›ž	๓ฐ ณ
shooting-star	object.shootingStar	star	๐ŸŒ 	๓ฑ
shopping-bag	object.shoppingBag	bag	๐Ÿ›	๏А
shortcake	object.shortcake	cake	๐Ÿฐ	๓ฐƒฉ
shovel	object.shovel	shovel	๐Ÿช	๓ฐœ
shower	object.shower	shower	๐Ÿšฟ	๏‹Œ
shuffle	action.shuffle	shf	๐Ÿ”€	๏ด
silver-medal	object.silverMedal	2nd	๐Ÿฅˆ	๎นซ
single-edge-razor	object.singleEdgeRazor	razor	๐Ÿช’	๓ฑฆ˜
skateboard	object.skateboard	skate	๐Ÿ›น	๓ฑ“‚
skill	icon.extensionSkill	SK	โœฆ	๏ƒซ
skipped	status.skipped	[S]	โญ	๏‘
skis	object.skis	skis	๐ŸŽฟ	๓ฑŒ„
skull	object.skull	skull	๐Ÿ’€	๎ธ•
skull-crossbones	object.skullCrossbones	skull	โ˜ 	๎ผŽ
slash	sep.slash	\s/\s	\s/\s	๎‚ป
slash-command	icon.extensionSlashCommand	/	โŒ˜	๏„ 
sled	object.sled	sled	๐Ÿ›ท	๓ฐ›
sleep-mode	status.sleepMode	zzz	๐Ÿ˜ด	โพ
sleepy-face	status.sleepyFace	zzz	๐Ÿ˜ช	๓ฐ’ฒ
sliders	object.sliders	sliders	๐ŸŽ›	๏‡ž
slot-machine	object.slotMachine	slots	๐ŸŽฐ	๓ฑ„”
small-airplane	object.smallAirplane	plane	๐Ÿ›ฉ	๏ฒ
small-blue-diamond	object.smallBlueDiamond	dia	๐Ÿ”น	๏ŠŸ
smiling-cat	status.smilingCat	:D	๐Ÿ˜ธ	๏„˜
smiling-heart-face	status.smilingHeartFace	<3	๐Ÿฅฐ	๎น
smiling-tear	object.smilingTear	:')	๐Ÿฅฒ	๎น‘
snail	object.snail	snail	๐ŸŒ	๓ฑ™ท
snow-cloud	object.snowCloud	snow	๐ŸŒจ	๎ˆ
snow-mountain	object.snowMountain	mt	๐Ÿ”	๎ผˆ
snowflake	object.snowflake	snow	โ„	๏‹œ
snowman	object.snowman	snow	โ˜ƒ	๎ฝช
soccer-ball	object.soccerBall	soccer	โšฝ	๓ฐ’ธ
socks	object.socks	socks	๐Ÿงฆ	๎ปŸ
soft-ice-cream	object.softIceCream	ice	๐Ÿฆ	๓ฐ ช
soon-arrow	nav.soonArrow	soon>	๐Ÿ”œ	๏ก
sort	action.sort	sort	โ‡…	๏ƒž
space	sep.space	\s	\s	\s
spade-suit	object.spadeSuit	spade	โ™ 	๓ฐนฅ
spaghetti-pasta	object.spaghettiPasta	pasta	๐Ÿ	๓ฑ… 
sparkle	object.sparkle	spark	โ‡	๎ฐ
sparkler	object.sparkler	spark	๐ŸŽ‡	๎ฐ
sparkles	object.sparkles	sparkles	โœจ	๎ผ•
sparkling-heart	object.sparklingHeart	<3*	๐Ÿ’–	๎ฐ
speaker-low	device.speakerLow	vol-	๐Ÿ”ˆ	๏€ง
speedboat-sailboat	object.speedboatSailboat	boat	๐Ÿšค	๓ฐปˆ
spider	object.spider	spider	๐Ÿ•ท	๎ผ
spider-web	object.spiderWeb	web	๐Ÿ•ธ	๓ฐฏŠ
spoon	object.spoon	spoon	๐Ÿฅ„	๏†ฑ
sport-utility-car-sports	object.sportUtilityCarSports	SUV	๐Ÿš™	๓ฐžฌ
sports-medal	object.sportsMedal	medal	๐Ÿ…	๎นซ
sql	lang.sql	sql	๐Ÿ—„	๎œ†
squinting-laugh-wink	object.squintingLaughWink	xD	๐Ÿ˜†	๎นฅ
ssh	tool.ssh	ssh	โ‡„	๎ฌบ
stadium	object.stadium	stad	๐ŸŸ	๓ฐฟน
star	object.star	star	โ˜…	๏€…
star-crescent-font-awesome	object.starCrescentFontAwesome	moon	โ˜ช	๎ปก
star-of-david	object.starOfDavid	star	โœก	๎ปข
starry-night	object.starryNight	night	๐ŸŒƒ	๎ฐ
starry-weather	object.starryWeather	star	โญ	๎ฐ
stash	git.stash	stash	๐Ÿ’ผ	๏†‡
stethoscope	object.stethoscope	steth	๐Ÿฉบ	๏ƒฑ
stop	action.stop	-[#]	โน	๏
stopped	status.stopped	[#]	โน	๏Š
stopwatch	object.stopwatch	timer	โฑ	๏‹ฒ
storm-cloud-rain	object.stormCloudRain	storm	โ›ˆ	๎ผœ
straight-ruler	object.straightRuler	ruler	๐Ÿ“	๎ธŽ
straw-cup	object.strawCup	cup	๐Ÿฅค	๓ฐ†ช
studio-microphone	device.studioMicrophone	mic	๐ŸŽ™	๏„ฐ
success	status.success	[ok]	โœ”	๏€Œ
sun-cloud	object.sunCloud	partly	โ›…	๎Œ
sun-rain-cloud	object.sunRainCloud	rain	๐ŸŒฆ	๎ผž
sunglasses	object.sunglasses	shades	๐Ÿ•ถ	๓ฐ“ 
sunglasses-face	user.sunglassesFace	cool	๐Ÿ˜Ž	๓ฐ“ 
sunny	object.sunny	sun	โ˜€	๓ฐ–™
sunrise	object.sunrise	rise	๐ŸŒ…	๎Œ
sunset	object.sunset	sunset	๐ŸŒ‡	๎
sushi	object.sushi	sushi	๐Ÿฃ	๎ˆš
suspension-railway	object.suspensionRailway	rail	๐ŸšŸ	๎ขƒ
swift	lang.swift	swift	๐Ÿ•Š	๎•
symlink	file.symlink	[link]	๐Ÿ”—	๏ƒ
synagogue	object.synagogue	synag	๐Ÿ•	๎ปฃ
sync	action.sync	sync	๐Ÿ”„	๏‹ฑ
sync-status	status.sync	[~]	๐Ÿ”„	๏‹ฑ
syringe	object.syringe	syr	๐Ÿ’‰	๎ถ
t-shirt	object.tShirt	shirt	๐Ÿ‘•	๎ธœ
table	object.table	tbl	โ–ฆ	๏ƒŽ
taco	object.taco	taco	๐ŸŒฎ	๓ฐข
tag	git.tag	tag	๐Ÿท	๏€ซ
tags	git.tags	tags	๐Ÿท	๏€ฌ
takeout-box	object.takeoutBox	box	๐Ÿฅก	๎ตต
task	tool.task	>>>	โ‡ถ	๏’ 
tasks	tab.tasks	[K]	๐Ÿ“ฆ	๓ฐฑ
taurus	object.taurus	Tau	โ™‰	๓ฐช‡
taxi	object.taxi	taxi	๐Ÿš•	๏†บ
teacup	object.teacup	tea	๐Ÿต	๓ฐถž
teapot-tea	object.teapotTea	tea	๐Ÿซ–	๓ฐถž
tear-off-calendar-remove	object.tearOffCalendarRemove	cal-	๐Ÿ“†	๓ฐƒด
tears-of-joy	status.tearsOfJoy	xD	๐Ÿ˜‚	๎น‘
teddy-bear	object.teddyBear	teddy	๐Ÿงธ	๓ฑฃป
tee-down	boxSharp.teeDown	+	โ”ฌ	โ”ฌ
tee-left	boxSharp.teeLeft	+	โ”ค	โ”ค
tee-right	boxSharp.teeRight	+	โ”œ	โ”œ
tee-up	boxSharp.teeUp	+	โ”ด	โ”ด
telephone	comm.telephone	phone	โ˜Ž	๏‚•
television	device.television	tv	๐Ÿ“บ	๏‰ฌ
tennis	object.tennis	tennis	๐ŸŽพ	๓ฐถ 
tent	object.tent	tent	โ›บ	๓ฐ”ˆ
terminal	device.terminal	term	๐Ÿ’ป	๏„ 
text	lang.text	txt	๐Ÿ—’	๎˜’
text-file	file.text	[txt]	๐Ÿ“„	๏…œ
thermometer	device.thermometer	temp	๐ŸŒก	๏‹‡
thought-balloon	comm.thoughtBalloon	think	๐Ÿ’ญ	๓ฐจฆ
thread	object.thread	thread	๐Ÿงต	๓ฑ‡ซ
throughput	icon.throughput	tok/s:	โšก	๏ƒค
thumbs-down	status.thumbsDown	-1	๐Ÿ‘Ž	๏…ฅ
thumbs-up	status.thumbsUp	+1	๐Ÿ‘	๏…ค
ticket	object.ticket	ticket	๐ŸŽซ	๏……
time	icon.time	t:	โฑ	๏€—
timer-clock	object.timerClock	timer	โฒ	๓ฑŽซ
todo	tool.todo	[x]	โ˜‘	๎ชณ
toilet-solid	object.toiletSolid	wc	๐Ÿšฝ	๎ฝฏ
tokens	icon.tokens	tok:	๐Ÿช™	๎‰ซ
toml	lang.toml	toml	๐Ÿงพ	๎˜•
tool-extension	icon.extensionTool	TL	๐Ÿ› 	๏‚ญ
toolbox	object.toolbox	tools	๐Ÿงฐ	๎ธ›
tools	tab.tools	[T]	๐Ÿ”ง	๓ฐ ญ
tooth	object.tooth	tooth	๐Ÿฆท	๎บ
toothbrush	object.toothbrush	brush	๐Ÿชฅ	๓ฑ„ฉ
top-arrow-right	nav.topArrowRight	top>	๐Ÿ”	๓ฐœ
top-hat	object.topHat	hat	๐ŸŽฉ	๎‰Ž
tornado	object.tornado	twirl	๐ŸŒช	๎ผญ
toy-brick	object.toyBrick	brick	๐Ÿงฑ	๓ฑŠˆ
tractor	object.tractor	tract	๐Ÿšœ	๎ผ’
traffic-light	object.trafficLight	light	๐Ÿšฅ	๎บท
train	object.train	train	๐Ÿš†	๏ˆธ
tram	object.tram	tram	๐ŸšŠ	๓ฐ”ญ
transgender-flag	object.transgenderFlag	trans	๐Ÿณ๏ธโ€โšง๏ธ	๏ˆค
transgender-symbol	user.transgenderSymbol	trans	โšง	๏ˆค
trash	file.trash	[rm]	๐Ÿ—‘	๏‡ธ
treasure-chest	object.treasureChest	chest	๐ŸชŽ	๓ฐœฆ
tree-branch	tree.branch	|--	โ”œโ”€	โ”œโ”€
tree-hook	tree.hook	`-	โ””	โ””
tree-horizontal	tree.horizontal	-	โ”€	โ”€
tree-last	tree.last	'--	โ””โ”€	โ””โ”€
tree-vertical	tree.vertical	|	โ”‚	โ”‚
triangular-ruler	object.triangularRuler	ri	๐Ÿ“	๎ˆ›
trolleybus	object.trolleybus	bus	๐ŸšŽ	๏ˆ‡
trophy	object.trophy	trophy	๐Ÿ†	๏‚‘
tropical-fish	object.tropicalFish	fish	๐Ÿ 	๎น
trumpet	object.trumpet	horn	๐ŸŽบ	๓ฑ‚–
tsv	lang.tsv	tsv	๐Ÿ“‘	๓ฐˆ›
tulip-flower	object.tulipFlower	tulip	๐ŸŒท	๓ฐงฑ
tumbler-glass-font-awesome	object.tumblerGlassFontAwesome	glass	๐Ÿฅƒ	๏€€
turkey	object.turkey	turkey	๐Ÿฆƒ	๓ฑœ›
turtle	object.turtle	turt	๐Ÿข	๓ฐณ—
twelve-oclock	object.twelveOclock	12:00	๐Ÿ•›	๎ށ
twelve-thirty	object.twelveThirty	12:30	๐Ÿ•ง	๎ށ
typescript	lang.typescript	ts	๐ŸŸฆ	๎˜จ
umbrella	object.umbrella	umbr	โ˜‚	๏ƒฉ
unchecked	checkbox.unchecked	[\s]	โ˜	๏‚–
undo	action.undo	<-	โ†ถ	๏‹ช
unicorn	object.unicorn	uni	๐Ÿฆ„	๓ฑ—‚
unlink	action.unlink	unln	โ›“	๏„ง
unlock	action.unlock	[U]	๐Ÿ”“	๏‹ผ
unlocked	status.unlocked	[U]	๐Ÿ”“	๏‹ผ
unpin	action.unpin	unpin	๐Ÿ“	๏‚
unselected	radio.unselected	(\s)	โ—‹	๏„Œ
up	nav.up	^	โ–ฒ	๏ข
up-button	action.upButton	UP	๐Ÿ†™	๓ฑŠจ
up-down-arrow	nav.upDownArrow	<->	โ†•	๓ฐนน
up-left-arrow	nav.upLeftArrow	ul	โ†–	๓ฑžฝ
upload	action.upload	up	โฌ†	๏‚“
upper-half		#	โ–€	โ–€
upwards-button	nav.upwardsButton	up	๐Ÿ”ผ	๎ช 
usb	device.usb	usb	๐Ÿ”Œ	๏Ї
user-add	user.add	+usr	๐Ÿ‘ค	๏ˆด
user-remove	user.remove	-usr	๐Ÿ‘ค	๎ท
vertical-traffic-light	object.verticalTrafficLight	light	๐Ÿšฆ	๎บท
video	comm.video	cam	๐Ÿ“น	๏€ฝ
video-file	file.video	[vid]	๐ŸŽฅ	๏‡ˆ
videocassette	device.videocassette	VHS	๐Ÿ“ผ	๓ฐจ›
violin	object.violin	violin	๐ŸŽป	๓ฐ˜
virgo	object.virgo	Virgo	โ™	๓ฐชˆ
volcano	object.volcano	volc	๐ŸŒ‹	๎ผฎ
volleyball	object.volleyball	vball	๐Ÿ	๎ตฒ
volume-high	object.volumeHigh	vol+	๐Ÿ”Š	๏€จ
volume-low	object.volumeLow	vol-	๐Ÿ”‰	๏€ง
volume-off	object.volumeOff	vol0	๐Ÿ”‡	๏€ฆ
wallet	object.wallet	wallet	๐Ÿ‘›	๎ธž
waning-crescent-moon	object.waningCrescentMoon	moon	๐ŸŒ˜	๓ฐฝฅ
waning-gibbous-moon	object.waningGibbousMoon	moon	๐ŸŒ–	๓ฐฝฆ
warning	icon.warning	[!]	โš 	๏ฑ
warning-status	status.warning	[!]	โš 	๏„ช
watch	device.watch	watch	โŒš	๓ฐ–‰
water-pistol	object.waterPistol	squirt	๐Ÿ”ซ	๓ฐœƒ
water-wave	object.waterWave	wave	๐ŸŒŠ	๓ฐผฎ
watermelon	object.watermelon	melon	๐Ÿ‰	๓ฑ‡
waving-hand	action.wavingHand	wave	๐Ÿ‘‹	๓ฑ ก
wavy-dash-cod	object.wavyDashCod	~	ใ€ฐ	๎ซŒ
waxing-crescent-moon	object.waxingCrescentMoon	moon	๐ŸŒ’	๓ฐฝง
waxing-gibbous	object.waxingGibbous	moon	๐ŸŒ”	๓ฐฝจ
weary-cat	status.wearyCat	:~(	๐Ÿ™€	๎ปญ
web-search	tool.webSearch	web	โŒ•	๎ฌ
wheelchair	object.wheelchair	chair	โ™ฟ	๏†“
white-cane	object.whiteCane	cane	๐Ÿฆฏ	๓ฑฆ
white-circle	object.whiteCircle	(o)	โšช	๏„‘
white-exclamation	status.whiteExclamation	!	โ•	๏„ช
white-flag	object.whiteFlag	flag	๐Ÿณ	๏„
white-flower	object.whiteFlower	flower	๐Ÿ’ฎ	๓ฐ‰Š
white-small-square	object.whiteSmallSquare	[ ]	โ–ซ	๓ฐจ•
white-square	object.whiteSquare	[ ]	โฌœ	๏ƒˆ
wifi	device.wifi	wifi	๐Ÿ“ถ	๏‡ซ
wind-face	object.windFace	wind	๐ŸŒฌ	๎ผ–
window-object	object.windowObject	window	๐ŸชŸ	๎ญฟ
wine-glass	object.wineGlass	wine	๐Ÿท	๎ถฎ
winking-face	object.winkingFace	wink	๐Ÿ˜‰	๓ฐฑธ
wireless-wifi	device.wirelessWifi	wifi	๐Ÿ›œ	๏‡ซ
wolf-pack	object.wolfPack	wolf	๐Ÿบ	๎ทž
womans-clothes	object.womansClothes	wear	๐Ÿ‘š	๓ฐพ
womans-hat	object.womansHat	hat	๐Ÿ‘’	๓ฐฅฏ
womens-room	user.womensRoom	women	๐Ÿšบ	๏†‚
worktree	icon.worktree	[wt]	๐ŸŒณ	๏ƒจ
wrench	object.wrench	wrench	๐Ÿ”ง	๏‚ญ
write	tool.write	+f	โœŽ	๎ฉฟ
writing-hand	action.writingHand	write	โœ	๏‰–
x-ray	object.xRay	xray	๐Ÿฉป	๎ถ”
xhigh	thinking.xhigh	[xhi]	โ—•\sxhigh	๓ฐชฅ\sxhi
xml	lang.xml	xml	โŸจโŸฉ	๓ฐ—€
yaml	lang.yaml	yaml	๐Ÿ“‹	๎˜•
yarn	object.yarn	yarn	๐Ÿงถ	๎ฝต
yellow-circle	object.yellowCircle	(o)	๐ŸŸก	๏„‘
yen-banknote	object.yenBanknote	yen	๐Ÿ’ด	๏…—
yin-yang	object.yinYang	yin-y	โ˜ฏ	๎ปฉ
zodiac-leo	object.zodiacLeo	Leo	โ™Œ	๓ฐช‚
zodiac-libra	object.zodiacLibra	Libra	โ™Ž	๓ฐชƒ
zoom-in	action.zoomIn	+	๐Ÿ”	๏€Ž
zoom-out	action.zoomOut	-	๐Ÿ”Ž	๏€