-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
IconsFontAwesome6.go
1420 lines (1418 loc) · 59.3 KB
/
IconsFontAwesome6.go
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
// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py
// for Go
// from codepoints https://github.com/FortAwesome/Font-Awesome/raw/6.x/metadata/icons.yml
// for use with font https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-regular-400.ttf, https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-solid-900.ttf
package IconFontCppHeaders
var IconsFontAwesome6 = Font{
Filenames: [][2]string{
{"FAR", "fa-regular-400.ttf"},
{"FAS", "fa-solid-900.ttf"},
},
Min: 0xe005,
Max16: 0xf8ff,
Max: 0xf8ff,
Icons: map[string]string{
"0": "0", // U+0030
"1": "1", // U+0031
"2": "2", // U+0032
"3": "3", // U+0033
"4": "4", // U+0034
"5": "5", // U+0035
"6": "6", // U+0036
"7": "7", // U+0037
"8": "8", // U+0038
"9": "9", // U+0039
"A": "A", // U+0041
"AddressBook": "\xef\x8a\xb9", // U+f2b9
"AddressCard": "\xef\x8a\xbb", // U+f2bb
"AlignCenter": "\xef\x80\xb7", // U+f037
"AlignJustify": "\xef\x80\xb9", // U+f039
"AlignLeft": "\xef\x80\xb6", // U+f036
"AlignRight": "\xef\x80\xb8", // U+f038
"Anchor": "\xef\x84\xbd", // U+f13d
"AnchorCircleCheck": "\xee\x92\xaa", // U+e4aa
"AnchorCircleExclamation": "\xee\x92\xab", // U+e4ab
"AnchorCircleXmark": "\xee\x92\xac", // U+e4ac
"AnchorLock": "\xee\x92\xad", // U+e4ad
"AngleDown": "\xef\x84\x87", // U+f107
"AngleLeft": "\xef\x84\x84", // U+f104
"AngleRight": "\xef\x84\x85", // U+f105
"AngleUp": "\xef\x84\x86", // U+f106
"AnglesDown": "\xef\x84\x83", // U+f103
"AnglesLeft": "\xef\x84\x80", // U+f100
"AnglesRight": "\xef\x84\x81", // U+f101
"AnglesUp": "\xef\x84\x82", // U+f102
"Ankh": "\xef\x99\x84", // U+f644
"AppleWhole": "\xef\x97\x91", // U+f5d1
"Archway": "\xef\x95\x97", // U+f557
"ArrowDown": "\xef\x81\xa3", // U+f063
"ArrowDown19": "\xef\x85\xa2", // U+f162
"ArrowDown91": "\xef\xa2\x86", // U+f886
"ArrowDownAZ": "\xef\x85\x9d", // U+f15d
"ArrowDownLong": "\xef\x85\xb5", // U+f175
"ArrowDownShortWide": "\xef\xa2\x84", // U+f884
"ArrowDownUpAcrossLine": "\xee\x92\xaf", // U+e4af
"ArrowDownUpLock": "\xee\x92\xb0", // U+e4b0
"ArrowDownWideShort": "\xef\x85\xa0", // U+f160
"ArrowDownZA": "\xef\xa2\x81", // U+f881
"ArrowLeft": "\xef\x81\xa0", // U+f060
"ArrowLeftLong": "\xef\x85\xb7", // U+f177
"ArrowPointer": "\xef\x89\x85", // U+f245
"ArrowRight": "\xef\x81\xa1", // U+f061
"ArrowRightArrowLeft": "\xef\x83\xac", // U+f0ec
"ArrowRightFromBracket": "\xef\x82\x8b", // U+f08b
"ArrowRightLong": "\xef\x85\xb8", // U+f178
"ArrowRightToBracket": "\xef\x82\x90", // U+f090
"ArrowRightToCity": "\xee\x92\xb3", // U+e4b3
"ArrowRotateLeft": "\xef\x83\xa2", // U+f0e2
"ArrowRotateRight": "\xef\x80\x9e", // U+f01e
"ArrowTrendDown": "\xee\x82\x97", // U+e097
"ArrowTrendUp": "\xee\x82\x98", // U+e098
"ArrowTurnDown": "\xef\x85\x89", // U+f149
"ArrowTurnUp": "\xef\x85\x88", // U+f148
"ArrowUp": "\xef\x81\xa2", // U+f062
"ArrowUp19": "\xef\x85\xa3", // U+f163
"ArrowUp91": "\xef\xa2\x87", // U+f887
"ArrowUpAZ": "\xef\x85\x9e", // U+f15e
"ArrowUpFromBracket": "\xee\x82\x9a", // U+e09a
"ArrowUpFromGroundWater": "\xee\x92\xb5", // U+e4b5
"ArrowUpFromWaterPump": "\xee\x92\xb6", // U+e4b6
"ArrowUpLong": "\xef\x85\xb6", // U+f176
"ArrowUpRightDots": "\xee\x92\xb7", // U+e4b7
"ArrowUpRightFromSquare": "\xef\x82\x8e", // U+f08e
"ArrowUpShortWide": "\xef\xa2\x85", // U+f885
"ArrowUpWideShort": "\xef\x85\xa1", // U+f161
"ArrowUpZA": "\xef\xa2\x82", // U+f882
"ArrowsDownToLine": "\xee\x92\xb8", // U+e4b8
"ArrowsDownToPeople": "\xee\x92\xb9", // U+e4b9
"ArrowsLeftRight": "\xef\x81\xbe", // U+f07e
"ArrowsLeftRightToLine": "\xee\x92\xba", // U+e4ba
"ArrowsRotate": "\xef\x80\xa1", // U+f021
"ArrowsSpin": "\xee\x92\xbb", // U+e4bb
"ArrowsSplitUpAndLeft": "\xee\x92\xbc", // U+e4bc
"ArrowsToCircle": "\xee\x92\xbd", // U+e4bd
"ArrowsToDot": "\xee\x92\xbe", // U+e4be
"ArrowsToEye": "\xee\x92\xbf", // U+e4bf
"ArrowsTurnRight": "\xee\x93\x80", // U+e4c0
"ArrowsTurnToDots": "\xee\x93\x81", // U+e4c1
"ArrowsUpDown": "\xef\x81\xbd", // U+f07d
"ArrowsUpDownLeftRight": "\xef\x81\x87", // U+f047
"ArrowsUpToLine": "\xee\x93\x82", // U+e4c2
"Asterisk": "*", // U+002a
"At": "@", // U+0040
"Atom": "\xef\x97\x92", // U+f5d2
"AudioDescription": "\xef\x8a\x9e", // U+f29e
"AustralSign": "\xee\x82\xa9", // U+e0a9
"Award": "\xef\x95\x99", // U+f559
"B": "B", // U+0042
"Baby": "\xef\x9d\xbc", // U+f77c
"BabyCarriage": "\xef\x9d\xbd", // U+f77d
"Backward": "\xef\x81\x8a", // U+f04a
"BackwardFast": "\xef\x81\x89", // U+f049
"BackwardStep": "\xef\x81\x88", // U+f048
"Bacon": "\xef\x9f\xa5", // U+f7e5
"Bacteria": "\xee\x81\x99", // U+e059
"Bacterium": "\xee\x81\x9a", // U+e05a
"BagShopping": "\xef\x8a\x90", // U+f290
"Bahai": "\xef\x99\xa6", // U+f666
"BahtSign": "\xee\x82\xac", // U+e0ac
"Ban": "\xef\x81\x9e", // U+f05e
"BanSmoking": "\xef\x95\x8d", // U+f54d
"Bandage": "\xef\x91\xa2", // U+f462
"BangladeshiTakaSign": "\xee\x8b\xa6", // U+e2e6
"Barcode": "\xef\x80\xaa", // U+f02a
"Bars": "\xef\x83\x89", // U+f0c9
"BarsProgress": "\xef\xa0\xa8", // U+f828
"BarsStaggered": "\xef\x95\x90", // U+f550
"Baseball": "\xef\x90\xb3", // U+f433
"BaseballBatBall": "\xef\x90\xb2", // U+f432
"BasketShopping": "\xef\x8a\x91", // U+f291
"Basketball": "\xef\x90\xb4", // U+f434
"Bath": "\xef\x8b\x8d", // U+f2cd
"BatteryEmpty": "\xef\x89\x84", // U+f244
"BatteryFull": "\xef\x89\x80", // U+f240
"BatteryHalf": "\xef\x89\x82", // U+f242
"BatteryQuarter": "\xef\x89\x83", // U+f243
"BatteryThreeQuarters": "\xef\x89\x81", // U+f241
"Bed": "\xef\x88\xb6", // U+f236
"BedPulse": "\xef\x92\x87", // U+f487
"BeerMugEmpty": "\xef\x83\xbc", // U+f0fc
"Bell": "\xef\x83\xb3", // U+f0f3
"BellConcierge": "\xef\x95\xa2", // U+f562
"BellSlash": "\xef\x87\xb6", // U+f1f6
"BezierCurve": "\xef\x95\x9b", // U+f55b
"Bicycle": "\xef\x88\x86", // U+f206
"Binoculars": "\xef\x87\xa5", // U+f1e5
"Biohazard": "\xef\x9e\x80", // U+f780
"BitcoinSign": "\xee\x82\xb4", // U+e0b4
"Blender": "\xef\x94\x97", // U+f517
"BlenderPhone": "\xef\x9a\xb6", // U+f6b6
"Blog": "\xef\x9e\x81", // U+f781
"Bold": "\xef\x80\xb2", // U+f032
"Bolt": "\xef\x83\xa7", // U+f0e7
"BoltLightning": "\xee\x82\xb7", // U+e0b7
"Bomb": "\xef\x87\xa2", // U+f1e2
"Bone": "\xef\x97\x97", // U+f5d7
"Bong": "\xef\x95\x9c", // U+f55c
"Book": "\xef\x80\xad", // U+f02d
"BookAtlas": "\xef\x95\x98", // U+f558
"BookBible": "\xef\x99\x87", // U+f647
"BookBookmark": "\xee\x82\xbb", // U+e0bb
"BookJournalWhills": "\xef\x99\xaa", // U+f66a
"BookMedical": "\xef\x9f\xa6", // U+f7e6
"BookOpen": "\xef\x94\x98", // U+f518
"BookOpenReader": "\xef\x97\x9a", // U+f5da
"BookQuran": "\xef\x9a\x87", // U+f687
"BookSkull": "\xef\x9a\xb7", // U+f6b7
"BookTanakh": "\xef\xa0\xa7", // U+f827
"Bookmark": "\xef\x80\xae", // U+f02e
"BorderAll": "\xef\xa1\x8c", // U+f84c
"BorderNone": "\xef\xa1\x90", // U+f850
"BorderTopLeft": "\xef\xa1\x93", // U+f853
"BoreHole": "\xee\x93\x83", // U+e4c3
"BottleDroplet": "\xee\x93\x84", // U+e4c4
"BottleWater": "\xee\x93\x85", // U+e4c5
"BowlFood": "\xee\x93\x86", // U+e4c6
"BowlRice": "\xee\x8b\xab", // U+e2eb
"BowlingBall": "\xef\x90\xb6", // U+f436
"Box": "\xef\x91\xa6", // U+f466
"BoxArchive": "\xef\x86\x87", // U+f187
"BoxOpen": "\xef\x92\x9e", // U+f49e
"BoxTissue": "\xee\x81\x9b", // U+e05b
"BoxesPacking": "\xee\x93\x87", // U+e4c7
"BoxesStacked": "\xef\x91\xa8", // U+f468
"Braille": "\xef\x8a\xa1", // U+f2a1
"Brain": "\xef\x97\x9c", // U+f5dc
"BrazilianRealSign": "\xee\x91\xac", // U+e46c
"BreadSlice": "\xef\x9f\xac", // U+f7ec
"Bridge": "\xee\x93\x88", // U+e4c8
"BridgeCircleCheck": "\xee\x93\x89", // U+e4c9
"BridgeCircleExclamation": "\xee\x93\x8a", // U+e4ca
"BridgeCircleXmark": "\xee\x93\x8b", // U+e4cb
"BridgeLock": "\xee\x93\x8c", // U+e4cc
"BridgeWater": "\xee\x93\x8e", // U+e4ce
"Briefcase": "\xef\x82\xb1", // U+f0b1
"BriefcaseMedical": "\xef\x91\xa9", // U+f469
"Broom": "\xef\x94\x9a", // U+f51a
"BroomBall": "\xef\x91\x98", // U+f458
"Brush": "\xef\x95\x9d", // U+f55d
"Bucket": "\xee\x93\x8f", // U+e4cf
"Bug": "\xef\x86\x88", // U+f188
"BugSlash": "\xee\x92\x90", // U+e490
"Bugs": "\xee\x93\x90", // U+e4d0
"Building": "\xef\x86\xad", // U+f1ad
"BuildingCircleArrowRight": "\xee\x93\x91", // U+e4d1
"BuildingCircleCheck": "\xee\x93\x92", // U+e4d2
"BuildingCircleExclamation": "\xee\x93\x93", // U+e4d3
"BuildingCircleXmark": "\xee\x93\x94", // U+e4d4
"BuildingColumns": "\xef\x86\x9c", // U+f19c
"BuildingFlag": "\xee\x93\x95", // U+e4d5
"BuildingLock": "\xee\x93\x96", // U+e4d6
"BuildingNgo": "\xee\x93\x97", // U+e4d7
"BuildingShield": "\xee\x93\x98", // U+e4d8
"BuildingUn": "\xee\x93\x99", // U+e4d9
"BuildingUser": "\xee\x93\x9a", // U+e4da
"BuildingWheat": "\xee\x93\x9b", // U+e4db
"Bullhorn": "\xef\x82\xa1", // U+f0a1
"Bullseye": "\xef\x85\x80", // U+f140
"Burger": "\xef\xa0\x85", // U+f805
"Burst": "\xee\x93\x9c", // U+e4dc
"Bus": "\xef\x88\x87", // U+f207
"BusSimple": "\xef\x95\x9e", // U+f55e
"BusinessTime": "\xef\x99\x8a", // U+f64a
"C": "C", // U+0043
"CableCar": "\xef\x9f\x9a", // U+f7da
"CakeCandles": "\xef\x87\xbd", // U+f1fd
"Calculator": "\xef\x87\xac", // U+f1ec
"Calendar": "\xef\x84\xb3", // U+f133
"CalendarCheck": "\xef\x89\xb4", // U+f274
"CalendarDay": "\xef\x9e\x83", // U+f783
"CalendarDays": "\xef\x81\xb3", // U+f073
"CalendarMinus": "\xef\x89\xb2", // U+f272
"CalendarPlus": "\xef\x89\xb1", // U+f271
"CalendarWeek": "\xef\x9e\x84", // U+f784
"CalendarXmark": "\xef\x89\xb3", // U+f273
"Camera": "\xef\x80\xb0", // U+f030
"CameraRetro": "\xef\x82\x83", // U+f083
"CameraRotate": "\xee\x83\x98", // U+e0d8
"Campground": "\xef\x9a\xbb", // U+f6bb
"CandyCane": "\xef\x9e\x86", // U+f786
"Cannabis": "\xef\x95\x9f", // U+f55f
"Capsules": "\xef\x91\xab", // U+f46b
"Car": "\xef\x86\xb9", // U+f1b9
"CarBattery": "\xef\x97\x9f", // U+f5df
"CarBurst": "\xef\x97\xa1", // U+f5e1
"CarOn": "\xee\x93\x9d", // U+e4dd
"CarRear": "\xef\x97\x9e", // U+f5de
"CarSide": "\xef\x97\xa4", // U+f5e4
"CarTunnel": "\xee\x93\x9e", // U+e4de
"Caravan": "\xef\xa3\xbf", // U+f8ff
"CaretDown": "\xef\x83\x97", // U+f0d7
"CaretLeft": "\xef\x83\x99", // U+f0d9
"CaretRight": "\xef\x83\x9a", // U+f0da
"CaretUp": "\xef\x83\x98", // U+f0d8
"Carrot": "\xef\x9e\x87", // U+f787
"CartArrowDown": "\xef\x88\x98", // U+f218
"CartFlatbed": "\xef\x91\xb4", // U+f474
"CartFlatbedSuitcase": "\xef\x96\x9d", // U+f59d
"CartPlus": "\xef\x88\x97", // U+f217
"CartShopping": "\xef\x81\xba", // U+f07a
"CashRegister": "\xef\x9e\x88", // U+f788
"Cat": "\xef\x9a\xbe", // U+f6be
"CediSign": "\xee\x83\x9f", // U+e0df
"CentSign": "\xee\x8f\xb5", // U+e3f5
"Certificate": "\xef\x82\xa3", // U+f0a3
"Chair": "\xef\x9b\x80", // U+f6c0
"Chalkboard": "\xef\x94\x9b", // U+f51b
"ChalkboardUser": "\xef\x94\x9c", // U+f51c
"ChampagneGlasses": "\xef\x9e\x9f", // U+f79f
"ChargingStation": "\xef\x97\xa7", // U+f5e7
"ChartArea": "\xef\x87\xbe", // U+f1fe
"ChartBar": "\xef\x82\x80", // U+f080
"ChartColumn": "\xee\x83\xa3", // U+e0e3
"ChartDiagram": "\xee\x9a\x95", // U+e695
"ChartGantt": "\xee\x83\xa4", // U+e0e4
"ChartLine": "\xef\x88\x81", // U+f201
"ChartPie": "\xef\x88\x80", // U+f200
"ChartSimple": "\xee\x91\xb3", // U+e473
"Check": "\xef\x80\x8c", // U+f00c
"CheckDouble": "\xef\x95\xa0", // U+f560
"CheckToSlot": "\xef\x9d\xb2", // U+f772
"Cheese": "\xef\x9f\xaf", // U+f7ef
"Chess": "\xef\x90\xb9", // U+f439
"ChessBishop": "\xef\x90\xba", // U+f43a
"ChessBoard": "\xef\x90\xbc", // U+f43c
"ChessKing": "\xef\x90\xbf", // U+f43f
"ChessKnight": "\xef\x91\x81", // U+f441
"ChessPawn": "\xef\x91\x83", // U+f443
"ChessQueen": "\xef\x91\x85", // U+f445
"ChessRook": "\xef\x91\x87", // U+f447
"ChevronDown": "\xef\x81\xb8", // U+f078
"ChevronLeft": "\xef\x81\x93", // U+f053
"ChevronRight": "\xef\x81\x94", // U+f054
"ChevronUp": "\xef\x81\xb7", // U+f077
"Child": "\xef\x86\xae", // U+f1ae
"ChildCombatant": "\xee\x93\xa0", // U+e4e0
"ChildDress": "\xee\x96\x9c", // U+e59c
"ChildReaching": "\xee\x96\x9d", // U+e59d
"Children": "\xee\x93\xa1", // U+e4e1
"Church": "\xef\x94\x9d", // U+f51d
"Circle": "\xef\x84\x91", // U+f111
"CircleArrowDown": "\xef\x82\xab", // U+f0ab
"CircleArrowLeft": "\xef\x82\xa8", // U+f0a8
"CircleArrowRight": "\xef\x82\xa9", // U+f0a9
"CircleArrowUp": "\xef\x82\xaa", // U+f0aa
"CircleCheck": "\xef\x81\x98", // U+f058
"CircleChevronDown": "\xef\x84\xba", // U+f13a
"CircleChevronLeft": "\xef\x84\xb7", // U+f137
"CircleChevronRight": "\xef\x84\xb8", // U+f138
"CircleChevronUp": "\xef\x84\xb9", // U+f139
"CircleDollarToSlot": "\xef\x92\xb9", // U+f4b9
"CircleDot": "\xef\x86\x92", // U+f192
"CircleDown": "\xef\x8d\x98", // U+f358
"CircleExclamation": "\xef\x81\xaa", // U+f06a
"CircleH": "\xef\x91\xbe", // U+f47e
"CircleHalfStroke": "\xef\x81\x82", // U+f042
"CircleInfo": "\xef\x81\x9a", // U+f05a
"CircleLeft": "\xef\x8d\x99", // U+f359
"CircleMinus": "\xef\x81\x96", // U+f056
"CircleNodes": "\xee\x93\xa2", // U+e4e2
"CircleNotch": "\xef\x87\x8e", // U+f1ce
"CirclePause": "\xef\x8a\x8b", // U+f28b
"CirclePlay": "\xef\x85\x84", // U+f144
"CirclePlus": "\xef\x81\x95", // U+f055
"CircleQuestion": "\xef\x81\x99", // U+f059
"CircleRadiation": "\xef\x9e\xba", // U+f7ba
"CircleRight": "\xef\x8d\x9a", // U+f35a
"CircleStop": "\xef\x8a\x8d", // U+f28d
"CircleUp": "\xef\x8d\x9b", // U+f35b
"CircleUser": "\xef\x8a\xbd", // U+f2bd
"CircleXmark": "\xef\x81\x97", // U+f057
"City": "\xef\x99\x8f", // U+f64f
"Clapperboard": "\xee\x84\xb1", // U+e131
"Clipboard": "\xef\x8c\xa8", // U+f328
"ClipboardCheck": "\xef\x91\xac", // U+f46c
"ClipboardList": "\xef\x91\xad", // U+f46d
"ClipboardQuestion": "\xee\x93\xa3", // U+e4e3
"ClipboardUser": "\xef\x9f\xb3", // U+f7f3
"Clock": "\xef\x80\x97", // U+f017
"ClockRotateLeft": "\xef\x87\x9a", // U+f1da
"Clone": "\xef\x89\x8d", // U+f24d
"ClosedCaptioning": "\xef\x88\x8a", // U+f20a
"Cloud": "\xef\x83\x82", // U+f0c2
"CloudArrowDown": "\xef\x83\xad", // U+f0ed
"CloudArrowUp": "\xef\x83\xae", // U+f0ee
"CloudBolt": "\xef\x9d\xac", // U+f76c
"CloudMeatball": "\xef\x9c\xbb", // U+f73b
"CloudMoon": "\xef\x9b\x83", // U+f6c3
"CloudMoonRain": "\xef\x9c\xbc", // U+f73c
"CloudRain": "\xef\x9c\xbd", // U+f73d
"CloudShowersHeavy": "\xef\x9d\x80", // U+f740
"CloudShowersWater": "\xee\x93\xa4", // U+e4e4
"CloudSun": "\xef\x9b\x84", // U+f6c4
"CloudSunRain": "\xef\x9d\x83", // U+f743
"Clover": "\xee\x84\xb9", // U+e139
"Code": "\xef\x84\xa1", // U+f121
"CodeBranch": "\xef\x84\xa6", // U+f126
"CodeCommit": "\xef\x8e\x86", // U+f386
"CodeCompare": "\xee\x84\xba", // U+e13a
"CodeFork": "\xee\x84\xbb", // U+e13b
"CodeMerge": "\xef\x8e\x87", // U+f387
"CodePullRequest": "\xee\x84\xbc", // U+e13c
"Coins": "\xef\x94\x9e", // U+f51e
"ColonSign": "\xee\x85\x80", // U+e140
"Comment": "\xef\x81\xb5", // U+f075
"CommentDollar": "\xef\x99\x91", // U+f651
"CommentDots": "\xef\x92\xad", // U+f4ad
"CommentMedical": "\xef\x9f\xb5", // U+f7f5
"CommentNodes": "\xee\x9a\x96", // U+e696
"CommentSlash": "\xef\x92\xb3", // U+f4b3
"CommentSms": "\xef\x9f\x8d", // U+f7cd
"Comments": "\xef\x82\x86", // U+f086
"CommentsDollar": "\xef\x99\x93", // U+f653
"CompactDisc": "\xef\x94\x9f", // U+f51f
"Compass": "\xef\x85\x8e", // U+f14e
"CompassDrafting": "\xef\x95\xa8", // U+f568
"Compress": "\xef\x81\xa6", // U+f066
"Computer": "\xee\x93\xa5", // U+e4e5
"ComputerMouse": "\xef\xa3\x8c", // U+f8cc
"Cookie": "\xef\x95\xa3", // U+f563
"CookieBite": "\xef\x95\xa4", // U+f564
"Copy": "\xef\x83\x85", // U+f0c5
"Copyright": "\xef\x87\xb9", // U+f1f9
"Couch": "\xef\x92\xb8", // U+f4b8
"Cow": "\xef\x9b\x88", // U+f6c8
"CreditCard": "\xef\x82\x9d", // U+f09d
"Crop": "\xef\x84\xa5", // U+f125
"CropSimple": "\xef\x95\xa5", // U+f565
"Cross": "\xef\x99\x94", // U+f654
"Crosshairs": "\xef\x81\x9b", // U+f05b
"Crow": "\xef\x94\xa0", // U+f520
"Crown": "\xef\x94\xa1", // U+f521
"Crutch": "\xef\x9f\xb7", // U+f7f7
"CruzeiroSign": "\xee\x85\x92", // U+e152
"Cube": "\xef\x86\xb2", // U+f1b2
"Cubes": "\xef\x86\xb3", // U+f1b3
"CubesStacked": "\xee\x93\xa6", // U+e4e6
"D": "D", // U+0044
"Database": "\xef\x87\x80", // U+f1c0
"DeleteLeft": "\xef\x95\x9a", // U+f55a
"Democrat": "\xef\x9d\x87", // U+f747
"Desktop": "\xef\x8e\x90", // U+f390
"Dharmachakra": "\xef\x99\x95", // U+f655
"DiagramNext": "\xee\x91\xb6", // U+e476
"DiagramPredecessor": "\xee\x91\xb7", // U+e477
"DiagramProject": "\xef\x95\x82", // U+f542
"DiagramSuccessor": "\xee\x91\xba", // U+e47a
"Diamond": "\xef\x88\x99", // U+f219
"DiamondTurnRight": "\xef\x97\xab", // U+f5eb
"Dice": "\xef\x94\xa2", // U+f522
"DiceD20": "\xef\x9b\x8f", // U+f6cf
"DiceD6": "\xef\x9b\x91", // U+f6d1
"DiceFive": "\xef\x94\xa3", // U+f523
"DiceFour": "\xef\x94\xa4", // U+f524
"DiceOne": "\xef\x94\xa5", // U+f525
"DiceSix": "\xef\x94\xa6", // U+f526
"DiceThree": "\xef\x94\xa7", // U+f527
"DiceTwo": "\xef\x94\xa8", // U+f528
"Disease": "\xef\x9f\xba", // U+f7fa
"Display": "\xee\x85\xa3", // U+e163
"Divide": "\xef\x94\xa9", // U+f529
"Dna": "\xef\x91\xb1", // U+f471
"Dog": "\xef\x9b\x93", // U+f6d3
"DollarSign": "$", // U+0024
"Dolly": "\xef\x91\xb2", // U+f472
"DongSign": "\xee\x85\xa9", // U+e169
"DoorClosed": "\xef\x94\xaa", // U+f52a
"DoorOpen": "\xef\x94\xab", // U+f52b
"Dove": "\xef\x92\xba", // U+f4ba
"DownLeftAndUpRightToCenter": "\xef\x90\xa2", // U+f422
"DownLong": "\xef\x8c\x89", // U+f309
"Download": "\xef\x80\x99", // U+f019
"Dragon": "\xef\x9b\x95", // U+f6d5
"DrawPolygon": "\xef\x97\xae", // U+f5ee
"Droplet": "\xef\x81\x83", // U+f043
"DropletSlash": "\xef\x97\x87", // U+f5c7
"Drum": "\xef\x95\xa9", // U+f569
"DrumSteelpan": "\xef\x95\xaa", // U+f56a
"DrumstickBite": "\xef\x9b\x97", // U+f6d7
"Dumbbell": "\xef\x91\x8b", // U+f44b
"Dumpster": "\xef\x9e\x93", // U+f793
"DumpsterFire": "\xef\x9e\x94", // U+f794
"Dungeon": "\xef\x9b\x99", // U+f6d9
"E": "E", // U+0045
"EarDeaf": "\xef\x8a\xa4", // U+f2a4
"EarListen": "\xef\x8a\xa2", // U+f2a2
"EarthAfrica": "\xef\x95\xbc", // U+f57c
"EarthAmericas": "\xef\x95\xbd", // U+f57d
"EarthAsia": "\xef\x95\xbe", // U+f57e
"EarthEurope": "\xef\x9e\xa2", // U+f7a2
"EarthOceania": "\xee\x91\xbb", // U+e47b
"Egg": "\xef\x9f\xbb", // U+f7fb
"Eject": "\xef\x81\x92", // U+f052
"Elevator": "\xee\x85\xad", // U+e16d
"Ellipsis": "\xef\x85\x81", // U+f141
"EllipsisVertical": "\xef\x85\x82", // U+f142
"Envelope": "\xef\x83\xa0", // U+f0e0
"EnvelopeCircleCheck": "\xee\x93\xa8", // U+e4e8
"EnvelopeOpen": "\xef\x8a\xb6", // U+f2b6
"EnvelopeOpenText": "\xef\x99\x98", // U+f658
"EnvelopesBulk": "\xef\x99\xb4", // U+f674
"Equals": "=", // U+003d
"Eraser": "\xef\x84\xad", // U+f12d
"Ethernet": "\xef\x9e\x96", // U+f796
"EuroSign": "\xef\x85\x93", // U+f153
"Exclamation": "!", // U+0021
"Expand": "\xef\x81\xa5", // U+f065
"Explosion": "\xee\x93\xa9", // U+e4e9
"Eye": "\xef\x81\xae", // U+f06e
"EyeDropper": "\xef\x87\xbb", // U+f1fb
"EyeLowVision": "\xef\x8a\xa8", // U+f2a8
"EyeSlash": "\xef\x81\xb0", // U+f070
"F": "F", // U+0046
"FaceAngry": "\xef\x95\x96", // U+f556
"FaceDizzy": "\xef\x95\xa7", // U+f567
"FaceFlushed": "\xef\x95\xb9", // U+f579
"FaceFrown": "\xef\x84\x99", // U+f119
"FaceFrownOpen": "\xef\x95\xba", // U+f57a
"FaceGrimace": "\xef\x95\xbf", // U+f57f
"FaceGrin": "\xef\x96\x80", // U+f580
"FaceGrinBeam": "\xef\x96\x82", // U+f582
"FaceGrinBeamSweat": "\xef\x96\x83", // U+f583
"FaceGrinHearts": "\xef\x96\x84", // U+f584
"FaceGrinSquint": "\xef\x96\x85", // U+f585
"FaceGrinSquintTears": "\xef\x96\x86", // U+f586
"FaceGrinStars": "\xef\x96\x87", // U+f587
"FaceGrinTears": "\xef\x96\x88", // U+f588
"FaceGrinTongue": "\xef\x96\x89", // U+f589
"FaceGrinTongueSquint": "\xef\x96\x8a", // U+f58a
"FaceGrinTongueWink": "\xef\x96\x8b", // U+f58b
"FaceGrinWide": "\xef\x96\x81", // U+f581
"FaceGrinWink": "\xef\x96\x8c", // U+f58c
"FaceKiss": "\xef\x96\x96", // U+f596
"FaceKissBeam": "\xef\x96\x97", // U+f597
"FaceKissWinkHeart": "\xef\x96\x98", // U+f598
"FaceLaugh": "\xef\x96\x99", // U+f599
"FaceLaughBeam": "\xef\x96\x9a", // U+f59a
"FaceLaughSquint": "\xef\x96\x9b", // U+f59b
"FaceLaughWink": "\xef\x96\x9c", // U+f59c
"FaceMeh": "\xef\x84\x9a", // U+f11a
"FaceMehBlank": "\xef\x96\xa4", // U+f5a4
"FaceRollingEyes": "\xef\x96\xa5", // U+f5a5
"FaceSadCry": "\xef\x96\xb3", // U+f5b3
"FaceSadTear": "\xef\x96\xb4", // U+f5b4
"FaceSmile": "\xef\x84\x98", // U+f118
"FaceSmileBeam": "\xef\x96\xb8", // U+f5b8
"FaceSmileWink": "\xef\x93\x9a", // U+f4da
"FaceSurprise": "\xef\x97\x82", // U+f5c2
"FaceTired": "\xef\x97\x88", // U+f5c8
"Fan": "\xef\xa1\xa3", // U+f863
"Faucet": "\xee\x80\x85", // U+e005
"FaucetDrip": "\xee\x80\x86", // U+e006
"Fax": "\xef\x86\xac", // U+f1ac
"Feather": "\xef\x94\xad", // U+f52d
"FeatherPointed": "\xef\x95\xab", // U+f56b
"Ferry": "\xee\x93\xaa", // U+e4ea
"File": "\xef\x85\x9b", // U+f15b
"FileArrowDown": "\xef\x95\xad", // U+f56d
"FileArrowUp": "\xef\x95\xb4", // U+f574
"FileAudio": "\xef\x87\x87", // U+f1c7
"FileCircleCheck": "\xee\x96\xa0", // U+e5a0
"FileCircleExclamation": "\xee\x93\xab", // U+e4eb
"FileCircleMinus": "\xee\x93\xad", // U+e4ed
"FileCirclePlus": "\xee\x92\x94", // U+e494
"FileCircleQuestion": "\xee\x93\xaf", // U+e4ef
"FileCircleXmark": "\xee\x96\xa1", // U+e5a1
"FileCode": "\xef\x87\x89", // U+f1c9
"FileContract": "\xef\x95\xac", // U+f56c
"FileCsv": "\xef\x9b\x9d", // U+f6dd
"FileExcel": "\xef\x87\x83", // U+f1c3
"FileExport": "\xef\x95\xae", // U+f56e
"FileFragment": "\xee\x9a\x97", // U+e697
"FileHalfDashed": "\xee\x9a\x98", // U+e698
"FileImage": "\xef\x87\x85", // U+f1c5
"FileImport": "\xef\x95\xaf", // U+f56f
"FileInvoice": "\xef\x95\xb0", // U+f570
"FileInvoiceDollar": "\xef\x95\xb1", // U+f571
"FileLines": "\xef\x85\x9c", // U+f15c
"FileMedical": "\xef\x91\xb7", // U+f477
"FilePdf": "\xef\x87\x81", // U+f1c1
"FilePen": "\xef\x8c\x9c", // U+f31c
"FilePowerpoint": "\xef\x87\x84", // U+f1c4
"FilePrescription": "\xef\x95\xb2", // U+f572
"FileShield": "\xee\x93\xb0", // U+e4f0
"FileSignature": "\xef\x95\xb3", // U+f573
"FileVideo": "\xef\x87\x88", // U+f1c8
"FileWaveform": "\xef\x91\xb8", // U+f478
"FileWord": "\xef\x87\x82", // U+f1c2
"FileZipper": "\xef\x87\x86", // U+f1c6
"Fill": "\xef\x95\xb5", // U+f575
"FillDrip": "\xef\x95\xb6", // U+f576
"Film": "\xef\x80\x88", // U+f008
"Filter": "\xef\x82\xb0", // U+f0b0
"FilterCircleDollar": "\xef\x99\xa2", // U+f662
"FilterCircleXmark": "\xee\x85\xbb", // U+e17b
"Fingerprint": "\xef\x95\xb7", // U+f577
"Fire": "\xef\x81\xad", // U+f06d
"FireBurner": "\xee\x93\xb1", // U+e4f1
"FireExtinguisher": "\xef\x84\xb4", // U+f134
"FireFlameCurved": "\xef\x9f\xa4", // U+f7e4
"FireFlameSimple": "\xef\x91\xaa", // U+f46a
"Fish": "\xef\x95\xb8", // U+f578
"FishFins": "\xee\x93\xb2", // U+e4f2
"Flag": "\xef\x80\xa4", // U+f024
"FlagCheckered": "\xef\x84\x9e", // U+f11e
"FlagUsa": "\xef\x9d\x8d", // U+f74d
"Flask": "\xef\x83\x83", // U+f0c3
"FlaskVial": "\xee\x93\xb3", // U+e4f3
"FloppyDisk": "\xef\x83\x87", // U+f0c7
"FlorinSign": "\xee\x86\x84", // U+e184
"Folder": "\xef\x81\xbb", // U+f07b
"FolderClosed": "\xee\x86\x85", // U+e185
"FolderMinus": "\xef\x99\x9d", // U+f65d
"FolderOpen": "\xef\x81\xbc", // U+f07c
"FolderPlus": "\xef\x99\x9e", // U+f65e
"FolderTree": "\xef\xa0\x82", // U+f802
"Font": "\xef\x80\xb1", // U+f031
"FontAwesome": "\xef\x8a\xb4", // U+f2b4
"Football": "\xef\x91\x8e", // U+f44e
"Forward": "\xef\x81\x8e", // U+f04e
"ForwardFast": "\xef\x81\x90", // U+f050
"ForwardStep": "\xef\x81\x91", // U+f051
"FrancSign": "\xee\x86\x8f", // U+e18f
"Frog": "\xef\x94\xae", // U+f52e
"Futbol": "\xef\x87\xa3", // U+f1e3
"G": "G", // U+0047
"Gamepad": "\xef\x84\x9b", // U+f11b
"GasPump": "\xef\x94\xaf", // U+f52f
"Gauge": "\xef\x98\xa4", // U+f624
"GaugeHigh": "\xef\x98\xa5", // U+f625
"GaugeSimple": "\xef\x98\xa9", // U+f629
"GaugeSimpleHigh": "\xef\x98\xaa", // U+f62a
"Gavel": "\xef\x83\xa3", // U+f0e3
"Gear": "\xef\x80\x93", // U+f013
"Gears": "\xef\x82\x85", // U+f085
"Gem": "\xef\x8e\xa5", // U+f3a5
"Genderless": "\xef\x88\xad", // U+f22d
"Ghost": "\xef\x9b\xa2", // U+f6e2
"Gift": "\xef\x81\xab", // U+f06b
"Gifts": "\xef\x9e\x9c", // U+f79c
"GlassWater": "\xee\x93\xb4", // U+e4f4
"GlassWaterDroplet": "\xee\x93\xb5", // U+e4f5
"Glasses": "\xef\x94\xb0", // U+f530
"Globe": "\xef\x82\xac", // U+f0ac
"GolfBallTee": "\xef\x91\x90", // U+f450
"Gopuram": "\xef\x99\xa4", // U+f664
"GraduationCap": "\xef\x86\x9d", // U+f19d
"GreaterThan": ">", // U+003e
"GreaterThanEqual": "\xef\x94\xb2", // U+f532
"Grip": "\xef\x96\x8d", // U+f58d
"GripLines": "\xef\x9e\xa4", // U+f7a4
"GripLinesVertical": "\xef\x9e\xa5", // U+f7a5
"GripVertical": "\xef\x96\x8e", // U+f58e
"GroupArrowsRotate": "\xee\x93\xb6", // U+e4f6
"GuaraniSign": "\xee\x86\x9a", // U+e19a
"Guitar": "\xef\x9e\xa6", // U+f7a6
"Gun": "\xee\x86\x9b", // U+e19b
"H": "H", // U+0048
"Hammer": "\xef\x9b\xa3", // U+f6e3
"Hamsa": "\xef\x99\xa5", // U+f665
"Hand": "\xef\x89\x96", // U+f256
"HandBackFist": "\xef\x89\x95", // U+f255
"HandDots": "\xef\x91\xa1", // U+f461
"HandFist": "\xef\x9b\x9e", // U+f6de
"HandHolding": "\xef\x92\xbd", // U+f4bd
"HandHoldingDollar": "\xef\x93\x80", // U+f4c0
"HandHoldingDroplet": "\xef\x93\x81", // U+f4c1
"HandHoldingHand": "\xee\x93\xb7", // U+e4f7
"HandHoldingHeart": "\xef\x92\xbe", // U+f4be
"HandHoldingMedical": "\xee\x81\x9c", // U+e05c
"HandLizard": "\xef\x89\x98", // U+f258
"HandMiddleFinger": "\xef\xa0\x86", // U+f806
"HandPeace": "\xef\x89\x9b", // U+f25b
"HandPointDown": "\xef\x82\xa7", // U+f0a7
"HandPointLeft": "\xef\x82\xa5", // U+f0a5
"HandPointRight": "\xef\x82\xa4", // U+f0a4
"HandPointUp": "\xef\x82\xa6", // U+f0a6
"HandPointer": "\xef\x89\x9a", // U+f25a
"HandScissors": "\xef\x89\x97", // U+f257
"HandSparkles": "\xee\x81\x9d", // U+e05d
"HandSpock": "\xef\x89\x99", // U+f259
"Handcuffs": "\xee\x93\xb8", // U+e4f8
"Hands": "\xef\x8a\xa7", // U+f2a7
"HandsAslInterpreting": "\xef\x8a\xa3", // U+f2a3
"HandsBound": "\xee\x93\xb9", // U+e4f9
"HandsBubbles": "\xee\x81\x9e", // U+e05e
"HandsClapping": "\xee\x86\xa8", // U+e1a8
"HandsHolding": "\xef\x93\x82", // U+f4c2
"HandsHoldingChild": "\xee\x93\xba", // U+e4fa
"HandsHoldingCircle": "\xee\x93\xbb", // U+e4fb
"HandsPraying": "\xef\x9a\x84", // U+f684
"Handshake": "\xef\x8a\xb5", // U+f2b5
"HandshakeAngle": "\xef\x93\x84", // U+f4c4
"HandshakeSimple": "\xef\x93\x86", // U+f4c6
"HandshakeSimpleSlash": "\xee\x81\x9f", // U+e05f
"HandshakeSlash": "\xee\x81\xa0", // U+e060
"Hanukiah": "\xef\x9b\xa6", // U+f6e6
"HardDrive": "\xef\x82\xa0", // U+f0a0
"Hashtag": "#", // U+0023
"HatCowboy": "\xef\xa3\x80", // U+f8c0
"HatCowboySide": "\xef\xa3\x81", // U+f8c1
"HatWizard": "\xef\x9b\xa8", // U+f6e8
"HeadSideCough": "\xee\x81\xa1", // U+e061
"HeadSideCoughSlash": "\xee\x81\xa2", // U+e062
"HeadSideMask": "\xee\x81\xa3", // U+e063
"HeadSideVirus": "\xee\x81\xa4", // U+e064
"Heading": "\xef\x87\x9c", // U+f1dc
"Headphones": "\xef\x80\xa5", // U+f025
"HeadphonesSimple": "\xef\x96\x8f", // U+f58f
"Headset": "\xef\x96\x90", // U+f590
"Heart": "\xef\x80\x84", // U+f004
"HeartCircleBolt": "\xee\x93\xbc", // U+e4fc
"HeartCircleCheck": "\xee\x93\xbd", // U+e4fd
"HeartCircleExclamation": "\xee\x93\xbe", // U+e4fe
"HeartCircleMinus": "\xee\x93\xbf", // U+e4ff
"HeartCirclePlus": "\xee\x94\x80", // U+e500
"HeartCircleXmark": "\xee\x94\x81", // U+e501
"HeartCrack": "\xef\x9e\xa9", // U+f7a9
"HeartPulse": "\xef\x88\x9e", // U+f21e
"Helicopter": "\xef\x94\xb3", // U+f533
"HelicopterSymbol": "\xee\x94\x82", // U+e502
"HelmetSafety": "\xef\xa0\x87", // U+f807
"HelmetUn": "\xee\x94\x83", // U+e503
"HexagonNodes": "\xee\x9a\x99", // U+e699
"HexagonNodesBolt": "\xee\x9a\x9a", // U+e69a
"Highlighter": "\xef\x96\x91", // U+f591
"HillAvalanche": "\xee\x94\x87", // U+e507
"HillRockslide": "\xee\x94\x88", // U+e508
"Hippo": "\xef\x9b\xad", // U+f6ed
"HockeyPuck": "\xef\x91\x93", // U+f453
"HollyBerry": "\xef\x9e\xaa", // U+f7aa
"Horse": "\xef\x9b\xb0", // U+f6f0
"HorseHead": "\xef\x9e\xab", // U+f7ab
"Hospital": "\xef\x83\xb8", // U+f0f8
"HospitalUser": "\xef\xa0\x8d", // U+f80d
"HotTubPerson": "\xef\x96\x93", // U+f593
"Hotdog": "\xef\xa0\x8f", // U+f80f
"Hotel": "\xef\x96\x94", // U+f594
"Hourglass": "\xef\x89\x94", // U+f254
"HourglassEnd": "\xef\x89\x93", // U+f253
"HourglassHalf": "\xef\x89\x92", // U+f252
"HourglassStart": "\xef\x89\x91", // U+f251
"House": "\xef\x80\x95", // U+f015
"HouseChimney": "\xee\x8e\xaf", // U+e3af
"HouseChimneyCrack": "\xef\x9b\xb1", // U+f6f1
"HouseChimneyMedical": "\xef\x9f\xb2", // U+f7f2
"HouseChimneyUser": "\xee\x81\xa5", // U+e065
"HouseChimneyWindow": "\xee\x80\x8d", // U+e00d
"HouseCircleCheck": "\xee\x94\x89", // U+e509
"HouseCircleExclamation": "\xee\x94\x8a", // U+e50a
"HouseCircleXmark": "\xee\x94\x8b", // U+e50b
"HouseCrack": "\xee\x8e\xb1", // U+e3b1
"HouseFire": "\xee\x94\x8c", // U+e50c
"HouseFlag": "\xee\x94\x8d", // U+e50d
"HouseFloodWater": "\xee\x94\x8e", // U+e50e
"HouseFloodWaterCircleArrowRight": "\xee\x94\x8f", // U+e50f
"HouseLaptop": "\xee\x81\xa6", // U+e066
"HouseLock": "\xee\x94\x90", // U+e510
"HouseMedical": "\xee\x8e\xb2", // U+e3b2
"HouseMedicalCircleCheck": "\xee\x94\x91", // U+e511
"HouseMedicalCircleExclamation": "\xee\x94\x92", // U+e512
"HouseMedicalCircleXmark": "\xee\x94\x93", // U+e513
"HouseMedicalFlag": "\xee\x94\x94", // U+e514
"HouseSignal": "\xee\x80\x92", // U+e012
"HouseTsunami": "\xee\x94\x95", // U+e515
"HouseUser": "\xee\x86\xb0", // U+e1b0
"HryvniaSign": "\xef\x9b\xb2", // U+f6f2
"Hurricane": "\xef\x9d\x91", // U+f751
"I": "I", // U+0049
"ICursor": "\xef\x89\x86", // U+f246
"IceCream": "\xef\xa0\x90", // U+f810
"Icicles": "\xef\x9e\xad", // U+f7ad
"Icons": "\xef\xa1\xad", // U+f86d
"IdBadge": "\xef\x8b\x81", // U+f2c1
"IdCard": "\xef\x8b\x82", // U+f2c2
"IdCardClip": "\xef\x91\xbf", // U+f47f
"Igloo": "\xef\x9e\xae", // U+f7ae
"Image": "\xef\x80\xbe", // U+f03e
"ImagePortrait": "\xef\x8f\xa0", // U+f3e0
"Images": "\xef\x8c\x82", // U+f302
"Inbox": "\xef\x80\x9c", // U+f01c
"Indent": "\xef\x80\xbc", // U+f03c
"IndianRupeeSign": "\xee\x86\xbc", // U+e1bc
"Industry": "\xef\x89\xb5", // U+f275
"Infinity": "\xef\x94\xb4", // U+f534
"Info": "\xef\x84\xa9", // U+f129
"Italic": "\xef\x80\xb3", // U+f033
"J": "J", // U+004a
"Jar": "\xee\x94\x96", // U+e516
"JarWheat": "\xee\x94\x97", // U+e517
"Jedi": "\xef\x99\xa9", // U+f669
"JetFighter": "\xef\x83\xbb", // U+f0fb
"JetFighterUp": "\xee\x94\x98", // U+e518
"Joint": "\xef\x96\x95", // U+f595
"JugDetergent": "\xee\x94\x99", // U+e519
"K": "K", // U+004b
"Kaaba": "\xef\x99\xab", // U+f66b
"Key": "\xef\x82\x84", // U+f084
"Keyboard": "\xef\x84\x9c", // U+f11c
"Khanda": "\xef\x99\xad", // U+f66d
"KipSign": "\xee\x87\x84", // U+e1c4
"KitMedical": "\xef\x91\xb9", // U+f479
"KitchenSet": "\xee\x94\x9a", // U+e51a
"KiwiBird": "\xef\x94\xb5", // U+f535
"L": "L", // U+004c
"LandMineOn": "\xee\x94\x9b", // U+e51b
"Landmark": "\xef\x99\xaf", // U+f66f
"LandmarkDome": "\xef\x9d\x92", // U+f752
"LandmarkFlag": "\xee\x94\x9c", // U+e51c
"Language": "\xef\x86\xab", // U+f1ab
"Laptop": "\xef\x84\x89", // U+f109
"LaptopCode": "\xef\x97\xbc", // U+f5fc
"LaptopFile": "\xee\x94\x9d", // U+e51d
"LaptopMedical": "\xef\xa0\x92", // U+f812
"LariSign": "\xee\x87\x88", // U+e1c8
"LayerGroup": "\xef\x97\xbd", // U+f5fd
"Leaf": "\xef\x81\xac", // U+f06c
"LeftLong": "\xef\x8c\x8a", // U+f30a
"LeftRight": "\xef\x8c\xb7", // U+f337
"Lemon": "\xef\x82\x94", // U+f094
"LessThan": "<", // U+003c
"LessThanEqual": "\xef\x94\xb7", // U+f537
"LifeRing": "\xef\x87\x8d", // U+f1cd
"Lightbulb": "\xef\x83\xab", // U+f0eb
"LinesLeaning": "\xee\x94\x9e", // U+e51e
"Link": "\xef\x83\x81", // U+f0c1
"LinkSlash": "\xef\x84\xa7", // U+f127
"LiraSign": "\xef\x86\x95", // U+f195
"List": "\xef\x80\xba", // U+f03a
"ListCheck": "\xef\x82\xae", // U+f0ae
"ListOl": "\xef\x83\x8b", // U+f0cb
"ListUl": "\xef\x83\x8a", // U+f0ca
"LitecoinSign": "\xee\x87\x93", // U+e1d3
"LocationArrow": "\xef\x84\xa4", // U+f124
"LocationCrosshairs": "\xef\x98\x81", // U+f601
"LocationDot": "\xef\x8f\x85", // U+f3c5
"LocationPin": "\xef\x81\x81", // U+f041
"LocationPinLock": "\xee\x94\x9f", // U+e51f
"Lock": "\xef\x80\xa3", // U+f023
"LockOpen": "\xef\x8f\x81", // U+f3c1
"Locust": "\xee\x94\xa0", // U+e520
"Lungs": "\xef\x98\x84", // U+f604
"LungsVirus": "\xee\x81\xa7", // U+e067
"M": "M", // U+004d
"Magnet": "\xef\x81\xb6", // U+f076
"MagnifyingGlass": "\xef\x80\x82", // U+f002
"MagnifyingGlassArrowRight": "\xee\x94\xa1", // U+e521
"MagnifyingGlassChart": "\xee\x94\xa2", // U+e522
"MagnifyingGlassDollar": "\xef\x9a\x88", // U+f688
"MagnifyingGlassLocation": "\xef\x9a\x89", // U+f689
"MagnifyingGlassMinus": "\xef\x80\x90", // U+f010
"MagnifyingGlassPlus": "\xef\x80\x8e", // U+f00e
"ManatSign": "\xee\x87\x95", // U+e1d5
"Map": "\xef\x89\xb9", // U+f279
"MapLocation": "\xef\x96\x9f", // U+f59f
"MapLocationDot": "\xef\x96\xa0", // U+f5a0
"MapPin": "\xef\x89\xb6", // U+f276
"Marker": "\xef\x96\xa1", // U+f5a1
"Mars": "\xef\x88\xa2", // U+f222
"MarsAndVenus": "\xef\x88\xa4", // U+f224
"MarsAndVenusBurst": "\xee\x94\xa3", // U+e523
"MarsDouble": "\xef\x88\xa7", // U+f227
"MarsStroke": "\xef\x88\xa9", // U+f229
"MarsStrokeRight": "\xef\x88\xab", // U+f22b
"MarsStrokeUp": "\xef\x88\xaa", // U+f22a
"MartiniGlass": "\xef\x95\xbb", // U+f57b
"MartiniGlassCitrus": "\xef\x95\xa1", // U+f561
"MartiniGlassEmpty": "\xef\x80\x80", // U+f000
"Mask": "\xef\x9b\xba", // U+f6fa
"MaskFace": "\xee\x87\x97", // U+e1d7
"MaskVentilator": "\xee\x94\xa4", // U+e524
"MasksTheater": "\xef\x98\xb0", // U+f630
"MattressPillow": "\xee\x94\xa5", // U+e525
"Maximize": "\xef\x8c\x9e", // U+f31e
"Medal": "\xef\x96\xa2", // U+f5a2
"Memory": "\xef\x94\xb8", // U+f538
"Menorah": "\xef\x99\xb6", // U+f676
"Mercury": "\xef\x88\xa3", // U+f223
"Message": "\xef\x89\xba", // U+f27a
"Meteor": "\xef\x9d\x93", // U+f753
"Microchip": "\xef\x8b\x9b", // U+f2db
"Microphone": "\xef\x84\xb0", // U+f130
"MicrophoneLines": "\xef\x8f\x89", // U+f3c9
"MicrophoneLinesSlash": "\xef\x94\xb9", // U+f539
"MicrophoneSlash": "\xef\x84\xb1", // U+f131
"Microscope": "\xef\x98\x90", // U+f610
"MillSign": "\xee\x87\xad", // U+e1ed
"Minimize": "\xef\x9e\x8c", // U+f78c
"Minus": "\xef\x81\xa8", // U+f068
"Mitten": "\xef\x9e\xb5", // U+f7b5
"Mobile": "\xef\x8f\x8e", // U+f3ce
"MobileButton": "\xef\x84\x8b", // U+f10b
"MobileRetro": "\xee\x94\xa7", // U+e527
"MobileScreen": "\xef\x8f\x8f", // U+f3cf
"MobileScreenButton": "\xef\x8f\x8d", // U+f3cd
"MoneyBill": "\xef\x83\x96", // U+f0d6
"MoneyBill1": "\xef\x8f\x91", // U+f3d1
"MoneyBill1Wave": "\xef\x94\xbb", // U+f53b
"MoneyBillTransfer": "\xee\x94\xa8", // U+e528
"MoneyBillTrendUp": "\xee\x94\xa9", // U+e529
"MoneyBillWave": "\xef\x94\xba", // U+f53a
"MoneyBillWheat": "\xee\x94\xaa", // U+e52a
"MoneyBills": "\xee\x87\xb3", // U+e1f3
"MoneyCheck": "\xef\x94\xbc", // U+f53c
"MoneyCheckDollar": "\xef\x94\xbd", // U+f53d
"Monument": "\xef\x96\xa6", // U+f5a6
"Moon": "\xef\x86\x86", // U+f186
"MortarPestle": "\xef\x96\xa7", // U+f5a7
"Mosque": "\xef\x99\xb8", // U+f678
"Mosquito": "\xee\x94\xab", // U+e52b
"MosquitoNet": "\xee\x94\xac", // U+e52c
"Motorcycle": "\xef\x88\x9c", // U+f21c
"Mound": "\xee\x94\xad", // U+e52d
"Mountain": "\xef\x9b\xbc", // U+f6fc
"MountainCity": "\xee\x94\xae", // U+e52e
"MountainSun": "\xee\x94\xaf", // U+e52f
"MugHot": "\xef\x9e\xb6", // U+f7b6
"MugSaucer": "\xef\x83\xb4", // U+f0f4
"Music": "\xef\x80\x81", // U+f001
"N": "N", // U+004e
"NairaSign": "\xee\x87\xb6", // U+e1f6
"NetworkWired": "\xef\x9b\xbf", // U+f6ff
"Neuter": "\xef\x88\xac", // U+f22c
"Newspaper": "\xef\x87\xaa", // U+f1ea
"NotEqual": "\xef\x94\xbe", // U+f53e
"Notdef": "\xee\x87\xbe", // U+e1fe
"NoteSticky": "\xef\x89\x89", // U+f249
"NotesMedical": "\xef\x92\x81", // U+f481
"O": "O", // U+004f
"ObjectGroup": "\xef\x89\x87", // U+f247
"ObjectUngroup": "\xef\x89\x88", // U+f248
"OilCan": "\xef\x98\x93", // U+f613
"OilWell": "\xee\x94\xb2", // U+e532
"Om": "\xef\x99\xb9", // U+f679
"Otter": "\xef\x9c\x80", // U+f700
"Outdent": "\xef\x80\xbb", // U+f03b
"P": "P", // U+0050
"Pager": "\xef\xa0\x95", // U+f815
"PaintRoller": "\xef\x96\xaa", // U+f5aa
"Paintbrush": "\xef\x87\xbc", // U+f1fc
"Palette": "\xef\x94\xbf", // U+f53f
"Pallet": "\xef\x92\x82", // U+f482
"Panorama": "\xee\x88\x89", // U+e209
"PaperPlane": "\xef\x87\x98", // U+f1d8
"Paperclip": "\xef\x83\x86", // U+f0c6
"ParachuteBox": "\xef\x93\x8d", // U+f4cd
"Paragraph": "\xef\x87\x9d", // U+f1dd
"Passport": "\xef\x96\xab", // U+f5ab
"Paste": "\xef\x83\xaa", // U+f0ea
"Pause": "\xef\x81\x8c", // U+f04c
"Paw": "\xef\x86\xb0", // U+f1b0
"Peace": "\xef\x99\xbc", // U+f67c
"Pen": "\xef\x8c\x84", // U+f304
"PenClip": "\xef\x8c\x85", // U+f305
"PenFancy": "\xef\x96\xac", // U+f5ac
"PenNib": "\xef\x96\xad", // U+f5ad
"PenRuler": "\xef\x96\xae", // U+f5ae
"PenToSquare": "\xef\x81\x84", // U+f044
"Pencil": "\xef\x8c\x83", // U+f303
"PeopleArrows": "\xee\x81\xa8", // U+e068
"PeopleCarryBox": "\xef\x93\x8e", // U+f4ce
"PeopleGroup": "\xee\x94\xb3", // U+e533
"PeopleLine": "\xee\x94\xb4", // U+e534
"PeoplePulling": "\xee\x94\xb5", // U+e535
"PeopleRobbery": "\xee\x94\xb6", // U+e536
"PeopleRoof": "\xee\x94\xb7", // U+e537
"PepperHot": "\xef\xa0\x96", // U+f816
"Percent": "%", // U+0025
"Person": "\xef\x86\x83", // U+f183
"PersonArrowDownToLine": "\xee\x94\xb8", // U+e538
"PersonArrowUpFromLine": "\xee\x94\xb9", // U+e539
"PersonBiking": "\xef\xa1\x8a", // U+f84a
"PersonBooth": "\xef\x9d\x96", // U+f756
"PersonBreastfeeding": "\xee\x94\xba", // U+e53a
"PersonBurst": "\xee\x94\xbb", // U+e53b
"PersonCane": "\xee\x94\xbc", // U+e53c
"PersonChalkboard": "\xee\x94\xbd", // U+e53d
"PersonCircleCheck": "\xee\x94\xbe", // U+e53e
"PersonCircleExclamation": "\xee\x94\xbf", // U+e53f
"PersonCircleMinus": "\xee\x95\x80", // U+e540
"PersonCirclePlus": "\xee\x95\x81", // U+e541
"PersonCircleQuestion": "\xee\x95\x82", // U+e542
"PersonCircleXmark": "\xee\x95\x83", // U+e543
"PersonDigging": "\xef\xa1\x9e", // U+f85e
"PersonDotsFromLine": "\xef\x91\xb0", // U+f470
"PersonDress": "\xef\x86\x82", // U+f182
"PersonDressBurst": "\xee\x95\x84", // U+e544
"PersonDrowning": "\xee\x95\x85", // U+e545
"PersonFalling": "\xee\x95\x86", // U+e546
"PersonFallingBurst": "\xee\x95\x87", // U+e547
"PersonHalfDress": "\xee\x95\x88", // U+e548
"PersonHarassing": "\xee\x95\x89", // U+e549
"PersonHiking": "\xef\x9b\xac", // U+f6ec
"PersonMilitaryPointing": "\xee\x95\x8a", // U+e54a
"PersonMilitaryRifle": "\xee\x95\x8b", // U+e54b
"PersonMilitaryToPerson": "\xee\x95\x8c", // U+e54c
"PersonPraying": "\xef\x9a\x83", // U+f683
"PersonPregnant": "\xee\x8c\x9e", // U+e31e
"PersonRays": "\xee\x95\x8d", // U+e54d
"PersonRifle": "\xee\x95\x8e", // U+e54e
"PersonRunning": "\xef\x9c\x8c", // U+f70c
"PersonShelter": "\xee\x95\x8f", // U+e54f
"PersonSkating": "\xef\x9f\x85", // U+f7c5
"PersonSkiing": "\xef\x9f\x89", // U+f7c9
"PersonSkiingNordic": "\xef\x9f\x8a", // U+f7ca
"PersonSnowboarding": "\xef\x9f\x8e", // U+f7ce
"PersonSwimming": "\xef\x97\x84", // U+f5c4
"PersonThroughWindow": "\xee\x96\xa9", // U+e5a9
"PersonWalking": "\xef\x95\x94", // U+f554
"PersonWalkingArrowLoopLeft": "\xee\x95\x91", // U+e551
"PersonWalkingArrowRight": "\xee\x95\x92", // U+e552
"PersonWalkingDashedLineArrowRight": "\xee\x95\x93", // U+e553
"PersonWalkingLuggage": "\xee\x95\x94", // U+e554
"PersonWalkingWithCane": "\xef\x8a\x9d", // U+f29d
"PesetaSign": "\xee\x88\xa1", // U+e221
"PesoSign": "\xee\x88\xa2", // U+e222
"Phone": "\xef\x82\x95", // U+f095
"PhoneFlip": "\xef\xa1\xb9", // U+f879
"PhoneSlash": "\xef\x8f\x9d", // U+f3dd
"PhoneVolume": "\xef\x8a\xa0", // U+f2a0
"PhotoFilm": "\xef\xa1\xbc", // U+f87c
"PiggyBank": "\xef\x93\x93", // U+f4d3
"Pills": "\xef\x92\x84", // U+f484
"PizzaSlice": "\xef\xa0\x98", // U+f818
"PlaceOfWorship": "\xef\x99\xbf", // U+f67f
"Plane": "\xef\x81\xb2", // U+f072
"PlaneArrival": "\xef\x96\xaf", // U+f5af
"PlaneCircleCheck": "\xee\x95\x95", // U+e555
"PlaneCircleExclamation": "\xee\x95\x96", // U+e556
"PlaneCircleXmark": "\xee\x95\x97", // U+e557
"PlaneDeparture": "\xef\x96\xb0", // U+f5b0
"PlaneLock": "\xee\x95\x98", // U+e558
"PlaneSlash": "\xee\x81\xa9", // U+e069
"PlaneUp": "\xee\x88\xad", // U+e22d
"PlantWilt": "\xee\x96\xaa", // U+e5aa
"PlateWheat": "\xee\x95\x9a", // U+e55a
"Play": "\xef\x81\x8b", // U+f04b
"Plug": "\xef\x87\xa6", // U+f1e6
"PlugCircleBolt": "\xee\x95\x9b", // U+e55b