-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
IconsFontAwesome5Pro.go
1872 lines (1870 loc) · 77.4 KB
/
IconsFontAwesome5Pro.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 icons.yml
// for use with font fa-light-300.ttf, fa-regular-400.ttf, fa-solid-900.ttf
package IconFontCppHeaders
var IconsFontAwesome5Pro = Font{
Filenames: [][2]string{
{"FAL", "fa-light-300.ttf"},
{"FAR", "fa-regular-400.ttf"},
{"FAS", "fa-solid-900.ttf"},
},
Min: 0xe000,
Max16: 0xf8ff,
Max: 0xf8ff,
Icons: map[string]string{
"Abacus": "\xef\x99\x80", // U+f640
"Acorn": "\xef\x9a\xae", // U+f6ae
"Ad": "\xef\x99\x81", // U+f641
"AddressBook": "\xef\x8a\xb9", // U+f2b9
"AddressCard": "\xef\x8a\xbb", // U+f2bb
"Adjust": "\xef\x81\x82", // U+f042
"AirConditioner": "\xef\xa3\xb4", // U+f8f4
"AirFreshener": "\xef\x97\x90", // U+f5d0
"AlarmClock": "\xef\x8d\x8e", // U+f34e
"AlarmExclamation": "\xef\xa1\x83", // U+f843
"AlarmPlus": "\xef\xa1\x84", // U+f844
"AlarmSnooze": "\xef\xa1\x85", // U+f845
"Album": "\xef\xa2\x9f", // U+f89f
"AlbumCollection": "\xef\xa2\xa0", // U+f8a0
"Alicorn": "\xef\x9a\xb0", // U+f6b0
"Alien": "\xef\xa3\xb5", // U+f8f5
"AlienMonster": "\xef\xa3\xb6", // U+f8f6
"AlignCenter": "\xef\x80\xb7", // U+f037
"AlignJustify": "\xef\x80\xb9", // U+f039
"AlignLeft": "\xef\x80\xb6", // U+f036
"AlignRight": "\xef\x80\xb8", // U+f038
"AlignSlash": "\xef\xa1\x86", // U+f846
"Allergies": "\xef\x91\xa1", // U+f461
"Ambulance": "\xef\x83\xb9", // U+f0f9
"AmericanSignLanguageInterpreting": "\xef\x8a\xa3", // U+f2a3
"AmpGuitar": "\xef\xa2\xa1", // U+f8a1
"Analytics": "\xef\x99\x83", // U+f643
"Anchor": "\xef\x84\xbd", // U+f13d
"Angel": "\xef\x9d\xb9", // U+f779
"AngleDoubleDown": "\xef\x84\x83", // U+f103
"AngleDoubleLeft": "\xef\x84\x80", // U+f100
"AngleDoubleRight": "\xef\x84\x81", // U+f101
"AngleDoubleUp": "\xef\x84\x82", // U+f102
"AngleDown": "\xef\x84\x87", // U+f107
"AngleLeft": "\xef\x84\x84", // U+f104
"AngleRight": "\xef\x84\x85", // U+f105
"AngleUp": "\xef\x84\x86", // U+f106
"Angry": "\xef\x95\x96", // U+f556
"Ankh": "\xef\x99\x84", // U+f644
"AppleAlt": "\xef\x97\x91", // U+f5d1
"AppleCrate": "\xef\x9a\xb1", // U+f6b1
"Archive": "\xef\x86\x87", // U+f187
"Archway": "\xef\x95\x97", // U+f557
"ArrowAltCircleDown": "\xef\x8d\x98", // U+f358
"ArrowAltCircleLeft": "\xef\x8d\x99", // U+f359
"ArrowAltCircleRight": "\xef\x8d\x9a", // U+f35a
"ArrowAltCircleUp": "\xef\x8d\x9b", // U+f35b
"ArrowAltDown": "\xef\x8d\x94", // U+f354
"ArrowAltFromBottom": "\xef\x8d\x86", // U+f346
"ArrowAltFromLeft": "\xef\x8d\x87", // U+f347
"ArrowAltFromRight": "\xef\x8d\x88", // U+f348
"ArrowAltFromTop": "\xef\x8d\x89", // U+f349
"ArrowAltLeft": "\xef\x8d\x95", // U+f355
"ArrowAltRight": "\xef\x8d\x96", // U+f356
"ArrowAltSquareDown": "\xef\x8d\x90", // U+f350
"ArrowAltSquareLeft": "\xef\x8d\x91", // U+f351
"ArrowAltSquareRight": "\xef\x8d\x92", // U+f352
"ArrowAltSquareUp": "\xef\x8d\x93", // U+f353
"ArrowAltToBottom": "\xef\x8d\x8a", // U+f34a
"ArrowAltToLeft": "\xef\x8d\x8b", // U+f34b
"ArrowAltToRight": "\xef\x8d\x8c", // U+f34c
"ArrowAltToTop": "\xef\x8d\x8d", // U+f34d
"ArrowAltUp": "\xef\x8d\x97", // U+f357
"ArrowCircleDown": "\xef\x82\xab", // U+f0ab
"ArrowCircleLeft": "\xef\x82\xa8", // U+f0a8
"ArrowCircleRight": "\xef\x82\xa9", // U+f0a9
"ArrowCircleUp": "\xef\x82\xaa", // U+f0aa
"ArrowDown": "\xef\x81\xa3", // U+f063
"ArrowFromBottom": "\xef\x8d\x82", // U+f342
"ArrowFromLeft": "\xef\x8d\x83", // U+f343
"ArrowFromRight": "\xef\x8d\x84", // U+f344
"ArrowFromTop": "\xef\x8d\x85", // U+f345
"ArrowLeft": "\xef\x81\xa0", // U+f060
"ArrowRight": "\xef\x81\xa1", // U+f061
"ArrowSquareDown": "\xef\x8c\xb9", // U+f339
"ArrowSquareLeft": "\xef\x8c\xba", // U+f33a
"ArrowSquareRight": "\xef\x8c\xbb", // U+f33b
"ArrowSquareUp": "\xef\x8c\xbc", // U+f33c
"ArrowToBottom": "\xef\x8c\xbd", // U+f33d
"ArrowToLeft": "\xef\x8c\xbe", // U+f33e
"ArrowToRight": "\xef\x8d\x80", // U+f340
"ArrowToTop": "\xef\x8d\x81", // U+f341
"ArrowUp": "\xef\x81\xa2", // U+f062
"Arrows": "\xef\x81\x87", // U+f047
"ArrowsAlt": "\xef\x82\xb2", // U+f0b2
"ArrowsAltH": "\xef\x8c\xb7", // U+f337
"ArrowsAltV": "\xef\x8c\xb8", // U+f338
"ArrowsH": "\xef\x81\xbe", // U+f07e
"ArrowsV": "\xef\x81\xbd", // U+f07d
"AssistiveListeningSystems": "\xef\x8a\xa2", // U+f2a2
"Asterisk": "\xef\x81\xa9", // U+f069
"At": "\xef\x87\xba", // U+f1fa
"Atlas": "\xef\x95\x98", // U+f558
"Atom": "\xef\x97\x92", // U+f5d2
"AtomAlt": "\xef\x97\x93", // U+f5d3
"AudioDescription": "\xef\x8a\x9e", // U+f29e
"Award": "\xef\x95\x99", // U+f559
"Axe": "\xef\x9a\xb2", // U+f6b2
"AxeBattle": "\xef\x9a\xb3", // U+f6b3
"Baby": "\xef\x9d\xbc", // U+f77c
"BabyCarriage": "\xef\x9d\xbd", // U+f77d
"Backpack": "\xef\x97\x94", // U+f5d4
"Backspace": "\xef\x95\x9a", // U+f55a
"Backward": "\xef\x81\x8a", // U+f04a
"Bacon": "\xef\x9f\xa5", // U+f7e5
"Bacteria": "\xee\x81\x99", // U+e059
"Bacterium": "\xee\x81\x9a", // U+e05a
"Badge": "\xef\x8c\xb5", // U+f335
"BadgeCheck": "\xef\x8c\xb6", // U+f336
"BadgeDollar": "\xef\x99\x85", // U+f645
"BadgePercent": "\xef\x99\x86", // U+f646
"BadgeSheriff": "\xef\xa2\xa2", // U+f8a2
"BadgerHoney": "\xef\x9a\xb4", // U+f6b4
"BagsShopping": "\xef\xa1\x87", // U+f847
"Bahai": "\xef\x99\xa6", // U+f666
"BalanceScale": "\xef\x89\x8e", // U+f24e
"BalanceScaleLeft": "\xef\x94\x95", // U+f515
"BalanceScaleRight": "\xef\x94\x96", // U+f516
"BallPile": "\xef\x9d\xbe", // U+f77e
"Ballot": "\xef\x9c\xb2", // U+f732
"BallotCheck": "\xef\x9c\xb3", // U+f733
"Ban": "\xef\x81\x9e", // U+f05e
"BandAid": "\xef\x91\xa2", // U+f462
"Banjo": "\xef\xa2\xa3", // U+f8a3
"Barcode": "\xef\x80\xaa", // U+f02a
"BarcodeAlt": "\xef\x91\xa3", // U+f463
"BarcodeRead": "\xef\x91\xa4", // U+f464
"BarcodeScan": "\xef\x91\xa5", // U+f465
"Bars": "\xef\x83\x89", // U+f0c9
"Baseball": "\xef\x90\xb2", // U+f432
"BaseballBall": "\xef\x90\xb3", // U+f433
"BasketballBall": "\xef\x90\xb4", // U+f434
"BasketballHoop": "\xef\x90\xb5", // U+f435
"Bat": "\xef\x9a\xb5", // U+f6b5
"Bath": "\xef\x8b\x8d", // U+f2cd
"BatteryBolt": "\xef\x8d\xb6", // U+f376
"BatteryEmpty": "\xef\x89\x84", // U+f244
"BatteryFull": "\xef\x89\x80", // U+f240
"BatteryHalf": "\xef\x89\x82", // U+f242
"BatteryQuarter": "\xef\x89\x83", // U+f243
"BatterySlash": "\xef\x8d\xb7", // U+f377
"BatteryThreeQuarters": "\xef\x89\x81", // U+f241
"Bed": "\xef\x88\xb6", // U+f236
"BedAlt": "\xef\xa3\xb7", // U+f8f7
"BedBunk": "\xef\xa3\xb8", // U+f8f8
"BedEmpty": "\xef\xa3\xb9", // U+f8f9
"Beer": "\xef\x83\xbc", // U+f0fc
"Bell": "\xef\x83\xb3", // U+f0f3
"BellExclamation": "\xef\xa1\x88", // U+f848
"BellOn": "\xef\xa3\xba", // U+f8fa
"BellPlus": "\xef\xa1\x89", // U+f849
"BellSchool": "\xef\x97\x95", // U+f5d5
"BellSchoolSlash": "\xef\x97\x96", // U+f5d6
"BellSlash": "\xef\x87\xb6", // U+f1f6
"Bells": "\xef\x9d\xbf", // U+f77f
"Betamax": "\xef\xa2\xa4", // U+f8a4
"BezierCurve": "\xef\x95\x9b", // U+f55b
"Bible": "\xef\x99\x87", // U+f647
"Bicycle": "\xef\x88\x86", // U+f206
"Biking": "\xef\xa1\x8a", // U+f84a
"BikingMountain": "\xef\xa1\x8b", // U+f84b
"Binoculars": "\xef\x87\xa5", // U+f1e5
"Biohazard": "\xef\x9e\x80", // U+f780
"BirthdayCake": "\xef\x87\xbd", // U+f1fd
"Blanket": "\xef\x92\x98", // U+f498
"Blender": "\xef\x94\x97", // U+f517
"BlenderPhone": "\xef\x9a\xb6", // U+f6b6
"Blind": "\xef\x8a\x9d", // U+f29d
"Blinds": "\xef\xa3\xbb", // U+f8fb
"BlindsOpen": "\xef\xa3\xbc", // U+f8fc
"BlindsRaised": "\xef\xa3\xbd", // U+f8fd
"Blog": "\xef\x9e\x81", // U+f781
"Bold": "\xef\x80\xb2", // U+f032
"Bolt": "\xef\x83\xa7", // U+f0e7
"Bomb": "\xef\x87\xa2", // U+f1e2
"Bone": "\xef\x97\x97", // U+f5d7
"BoneBreak": "\xef\x97\x98", // U+f5d8
"Bong": "\xef\x95\x9c", // U+f55c
"Book": "\xef\x80\xad", // U+f02d
"BookAlt": "\xef\x97\x99", // U+f5d9
"BookDead": "\xef\x9a\xb7", // U+f6b7
"BookHeart": "\xef\x92\x99", // U+f499
"BookMedical": "\xef\x9f\xa6", // U+f7e6
"BookOpen": "\xef\x94\x98", // U+f518
"BookReader": "\xef\x97\x9a", // U+f5da
"BookSpells": "\xef\x9a\xb8", // U+f6b8
"BookUser": "\xef\x9f\xa7", // U+f7e7
"Bookmark": "\xef\x80\xae", // U+f02e
"Books": "\xef\x97\x9b", // U+f5db
"BooksMedical": "\xef\x9f\xa8", // U+f7e8
"Boombox": "\xef\xa2\xa5", // U+f8a5
"Boot": "\xef\x9e\x82", // U+f782
"BoothCurtain": "\xef\x9c\xb4", // U+f734
"BorderAll": "\xef\xa1\x8c", // U+f84c
"BorderBottom": "\xef\xa1\x8d", // U+f84d
"BorderCenterH": "\xef\xa2\x9c", // U+f89c
"BorderCenterV": "\xef\xa2\x9d", // U+f89d
"BorderInner": "\xef\xa1\x8e", // U+f84e
"BorderLeft": "\xef\xa1\x8f", // U+f84f
"BorderNone": "\xef\xa1\x90", // U+f850
"BorderOuter": "\xef\xa1\x91", // U+f851
"BorderRight": "\xef\xa1\x92", // U+f852
"BorderStyle": "\xef\xa1\x93", // U+f853
"BorderStyleAlt": "\xef\xa1\x94", // U+f854
"BorderTop": "\xef\xa1\x95", // U+f855
"BowArrow": "\xef\x9a\xb9", // U+f6b9
"BowlingBall": "\xef\x90\xb6", // U+f436
"BowlingPins": "\xef\x90\xb7", // U+f437
"Box": "\xef\x91\xa6", // U+f466
"BoxAlt": "\xef\x92\x9a", // U+f49a
"BoxBallot": "\xef\x9c\xb5", // U+f735
"BoxCheck": "\xef\x91\xa7", // U+f467
"BoxFragile": "\xef\x92\x9b", // U+f49b
"BoxFull": "\xef\x92\x9c", // U+f49c
"BoxHeart": "\xef\x92\x9d", // U+f49d
"BoxOpen": "\xef\x92\x9e", // U+f49e
"BoxTissue": "\xee\x81\x9b", // U+e05b
"BoxUp": "\xef\x92\x9f", // U+f49f
"BoxUsd": "\xef\x92\xa0", // U+f4a0
"Boxes": "\xef\x91\xa8", // U+f468
"BoxesAlt": "\xef\x92\xa1", // U+f4a1
"BoxingGlove": "\xef\x90\xb8", // U+f438
"Brackets": "\xef\x9f\xa9", // U+f7e9
"BracketsCurly": "\xef\x9f\xaa", // U+f7ea
"Braille": "\xef\x8a\xa1", // U+f2a1
"Brain": "\xef\x97\x9c", // U+f5dc
"BreadLoaf": "\xef\x9f\xab", // U+f7eb
"BreadSlice": "\xef\x9f\xac", // U+f7ec
"Briefcase": "\xef\x82\xb1", // U+f0b1
"BriefcaseMedical": "\xef\x91\xa9", // U+f469
"BringForward": "\xef\xa1\x96", // U+f856
"BringFront": "\xef\xa1\x97", // U+f857
"BroadcastTower": "\xef\x94\x99", // U+f519
"Broom": "\xef\x94\x9a", // U+f51a
"Browser": "\xef\x8d\xbe", // U+f37e
"Brush": "\xef\x95\x9d", // U+f55d
"Bug": "\xef\x86\x88", // U+f188
"Building": "\xef\x86\xad", // U+f1ad
"Bullhorn": "\xef\x82\xa1", // U+f0a1
"Bullseye": "\xef\x85\x80", // U+f140
"BullseyeArrow": "\xef\x99\x88", // U+f648
"BullseyePointer": "\xef\x99\x89", // U+f649
"BurgerSoda": "\xef\xa1\x98", // U+f858
"Burn": "\xef\x91\xaa", // U+f46a
"Burrito": "\xef\x9f\xad", // U+f7ed
"Bus": "\xef\x88\x87", // U+f207
"BusAlt": "\xef\x95\x9e", // U+f55e
"BusSchool": "\xef\x97\x9d", // U+f5dd
"BusinessTime": "\xef\x99\x8a", // U+f64a
"CabinetFiling": "\xef\x99\x8b", // U+f64b
"Cactus": "\xef\xa2\xa7", // U+f8a7
"Calculator": "\xef\x87\xac", // U+f1ec
"CalculatorAlt": "\xef\x99\x8c", // U+f64c
"Calendar": "\xef\x84\xb3", // U+f133
"CalendarAlt": "\xef\x81\xb3", // U+f073
"CalendarCheck": "\xef\x89\xb4", // U+f274
"CalendarDay": "\xef\x9e\x83", // U+f783
"CalendarEdit": "\xef\x8c\xb3", // U+f333
"CalendarExclamation": "\xef\x8c\xb4", // U+f334
"CalendarMinus": "\xef\x89\xb2", // U+f272
"CalendarPlus": "\xef\x89\xb1", // U+f271
"CalendarStar": "\xef\x9c\xb6", // U+f736
"CalendarTimes": "\xef\x89\xb3", // U+f273
"CalendarWeek": "\xef\x9e\x84", // U+f784
"Camcorder": "\xef\xa2\xa8", // U+f8a8
"Camera": "\xef\x80\xb0", // U+f030
"CameraAlt": "\xef\x8c\xb2", // U+f332
"CameraHome": "\xef\xa3\xbe", // U+f8fe
"CameraMovie": "\xef\xa2\xa9", // U+f8a9
"CameraPolaroid": "\xef\xa2\xaa", // U+f8aa
"CameraRetro": "\xef\x82\x83", // U+f083
"Campfire": "\xef\x9a\xba", // U+f6ba
"Campground": "\xef\x9a\xbb", // U+f6bb
"CandleHolder": "\xef\x9a\xbc", // U+f6bc
"CandyCane": "\xef\x9e\x86", // U+f786
"CandyCorn": "\xef\x9a\xbd", // U+f6bd
"Cannabis": "\xef\x95\x9f", // U+f55f
"Capsules": "\xef\x91\xab", // U+f46b
"Car": "\xef\x86\xb9", // U+f1b9
"CarAlt": "\xef\x97\x9e", // U+f5de
"CarBattery": "\xef\x97\x9f", // U+f5df
"CarBuilding": "\xef\xa1\x99", // U+f859
"CarBump": "\xef\x97\xa0", // U+f5e0
"CarBus": "\xef\xa1\x9a", // U+f85a
"CarCrash": "\xef\x97\xa1", // U+f5e1
"CarGarage": "\xef\x97\xa2", // U+f5e2
"CarMechanic": "\xef\x97\xa3", // U+f5e3
"CarSide": "\xef\x97\xa4", // U+f5e4
"CarTilt": "\xef\x97\xa5", // U+f5e5
"CarWash": "\xef\x97\xa6", // U+f5e6
"Caravan": "\xef\xa3\xbf", // U+f8ff
"CaravanAlt": "\xee\x80\x80", // U+e000
"CaretCircleDown": "\xef\x8c\xad", // U+f32d
"CaretCircleLeft": "\xef\x8c\xae", // U+f32e
"CaretCircleRight": "\xef\x8c\xb0", // U+f330
"CaretCircleUp": "\xef\x8c\xb1", // U+f331
"CaretDown": "\xef\x83\x97", // U+f0d7
"CaretLeft": "\xef\x83\x99", // U+f0d9
"CaretRight": "\xef\x83\x9a", // U+f0da
"CaretSquareDown": "\xef\x85\x90", // U+f150
"CaretSquareLeft": "\xef\x86\x91", // U+f191
"CaretSquareRight": "\xef\x85\x92", // U+f152
"CaretSquareUp": "\xef\x85\x91", // U+f151
"CaretUp": "\xef\x83\x98", // U+f0d8
"Carrot": "\xef\x9e\x87", // U+f787
"Cars": "\xef\xa1\x9b", // U+f85b
"CartArrowDown": "\xef\x88\x98", // U+f218
"CartPlus": "\xef\x88\x97", // U+f217
"CashRegister": "\xef\x9e\x88", // U+f788
"CassetteTape": "\xef\xa2\xab", // U+f8ab
"Cat": "\xef\x9a\xbe", // U+f6be
"CatSpace": "\xee\x80\x81", // U+e001
"Cauldron": "\xef\x9a\xbf", // U+f6bf
"Cctv": "\xef\xa2\xac", // U+f8ac
"Certificate": "\xef\x82\xa3", // U+f0a3
"Chair": "\xef\x9b\x80", // U+f6c0
"ChairOffice": "\xef\x9b\x81", // U+f6c1
"Chalkboard": "\xef\x94\x9b", // U+f51b
"ChalkboardTeacher": "\xef\x94\x9c", // U+f51c
"ChargingStation": "\xef\x97\xa7", // U+f5e7
"ChartArea": "\xef\x87\xbe", // U+f1fe
"ChartBar": "\xef\x82\x80", // U+f080
"ChartLine": "\xef\x88\x81", // U+f201
"ChartLineDown": "\xef\x99\x8d", // U+f64d
"ChartNetwork": "\xef\x9e\x8a", // U+f78a
"ChartPie": "\xef\x88\x80", // U+f200
"ChartPieAlt": "\xef\x99\x8e", // U+f64e
"ChartScatter": "\xef\x9f\xae", // U+f7ee
"Check": "\xef\x80\x8c", // U+f00c
"CheckCircle": "\xef\x81\x98", // U+f058
"CheckDouble": "\xef\x95\xa0", // U+f560
"CheckSquare": "\xef\x85\x8a", // U+f14a
"Cheese": "\xef\x9f\xaf", // U+f7ef
"CheeseSwiss": "\xef\x9f\xb0", // U+f7f0
"Cheeseburger": "\xef\x9f\xb1", // U+f7f1
"Chess": "\xef\x90\xb9", // U+f439
"ChessBishop": "\xef\x90\xba", // U+f43a
"ChessBishopAlt": "\xef\x90\xbb", // U+f43b
"ChessBoard": "\xef\x90\xbc", // U+f43c
"ChessClock": "\xef\x90\xbd", // U+f43d
"ChessClockAlt": "\xef\x90\xbe", // U+f43e
"ChessKing": "\xef\x90\xbf", // U+f43f
"ChessKingAlt": "\xef\x91\x80", // U+f440
"ChessKnight": "\xef\x91\x81", // U+f441
"ChessKnightAlt": "\xef\x91\x82", // U+f442
"ChessPawn": "\xef\x91\x83", // U+f443
"ChessPawnAlt": "\xef\x91\x84", // U+f444
"ChessQueen": "\xef\x91\x85", // U+f445
"ChessQueenAlt": "\xef\x91\x86", // U+f446
"ChessRook": "\xef\x91\x87", // U+f447
"ChessRookAlt": "\xef\x91\x88", // U+f448
"ChevronCircleDown": "\xef\x84\xba", // U+f13a
"ChevronCircleLeft": "\xef\x84\xb7", // U+f137
"ChevronCircleRight": "\xef\x84\xb8", // U+f138
"ChevronCircleUp": "\xef\x84\xb9", // U+f139
"ChevronDoubleDown": "\xef\x8c\xa2", // U+f322
"ChevronDoubleLeft": "\xef\x8c\xa3", // U+f323
"ChevronDoubleRight": "\xef\x8c\xa4", // U+f324
"ChevronDoubleUp": "\xef\x8c\xa5", // U+f325
"ChevronDown": "\xef\x81\xb8", // U+f078
"ChevronLeft": "\xef\x81\x93", // U+f053
"ChevronRight": "\xef\x81\x94", // U+f054
"ChevronSquareDown": "\xef\x8c\xa9", // U+f329
"ChevronSquareLeft": "\xef\x8c\xaa", // U+f32a
"ChevronSquareRight": "\xef\x8c\xab", // U+f32b
"ChevronSquareUp": "\xef\x8c\xac", // U+f32c
"ChevronUp": "\xef\x81\xb7", // U+f077
"Child": "\xef\x86\xae", // U+f1ae
"Chimney": "\xef\x9e\x8b", // U+f78b
"Church": "\xef\x94\x9d", // U+f51d
"Circle": "\xef\x84\x91", // U+f111
"CircleNotch": "\xef\x87\x8e", // U+f1ce
"City": "\xef\x99\x8f", // U+f64f
"Clarinet": "\xef\xa2\xad", // U+f8ad
"ClawMarks": "\xef\x9b\x82", // U+f6c2
"ClinicMedical": "\xef\x9f\xb2", // U+f7f2
"Clipboard": "\xef\x8c\xa8", // U+f328
"ClipboardCheck": "\xef\x91\xac", // U+f46c
"ClipboardList": "\xef\x91\xad", // U+f46d
"ClipboardListCheck": "\xef\x9c\xb7", // U+f737
"ClipboardPrescription": "\xef\x97\xa8", // U+f5e8
"ClipboardUser": "\xef\x9f\xb3", // U+f7f3
"Clock": "\xef\x80\x97", // U+f017
"Clone": "\xef\x89\x8d", // U+f24d
"ClosedCaptioning": "\xef\x88\x8a", // U+f20a
"Cloud": "\xef\x83\x82", // U+f0c2
"CloudDownload": "\xef\x83\xad", // U+f0ed
"CloudDownloadAlt": "\xef\x8e\x81", // U+f381
"CloudDrizzle": "\xef\x9c\xb8", // U+f738
"CloudHail": "\xef\x9c\xb9", // U+f739
"CloudHailMixed": "\xef\x9c\xba", // U+f73a
"CloudMeatball": "\xef\x9c\xbb", // U+f73b
"CloudMoon": "\xef\x9b\x83", // U+f6c3
"CloudMoonRain": "\xef\x9c\xbc", // U+f73c
"CloudMusic": "\xef\xa2\xae", // U+f8ae
"CloudRain": "\xef\x9c\xbd", // U+f73d
"CloudRainbow": "\xef\x9c\xbe", // U+f73e
"CloudShowers": "\xef\x9c\xbf", // U+f73f
"CloudShowersHeavy": "\xef\x9d\x80", // U+f740
"CloudSleet": "\xef\x9d\x81", // U+f741
"CloudSnow": "\xef\x9d\x82", // U+f742
"CloudSun": "\xef\x9b\x84", // U+f6c4
"CloudSunRain": "\xef\x9d\x83", // U+f743
"CloudUpload": "\xef\x83\xae", // U+f0ee
"CloudUploadAlt": "\xef\x8e\x82", // U+f382
"Clouds": "\xef\x9d\x84", // U+f744
"CloudsMoon": "\xef\x9d\x85", // U+f745
"CloudsSun": "\xef\x9d\x86", // U+f746
"Club": "\xef\x8c\xa7", // U+f327
"Cocktail": "\xef\x95\xa1", // U+f561
"Code": "\xef\x84\xa1", // U+f121
"CodeBranch": "\xef\x84\xa6", // U+f126
"CodeCommit": "\xef\x8e\x86", // U+f386
"CodeMerge": "\xef\x8e\x87", // U+f387
"Coffee": "\xef\x83\xb4", // U+f0f4
"CoffeePot": "\xee\x80\x82", // U+e002
"CoffeeTogo": "\xef\x9b\x85", // U+f6c5
"Coffin": "\xef\x9b\x86", // U+f6c6
"CoffinCross": "\xee\x81\x91", // U+e051
"Cog": "\xef\x80\x93", // U+f013
"Cogs": "\xef\x82\x85", // U+f085
"Coin": "\xef\xa1\x9c", // U+f85c
"Coins": "\xef\x94\x9e", // U+f51e
"Columns": "\xef\x83\x9b", // U+f0db
"Comet": "\xee\x80\x83", // U+e003
"Comment": "\xef\x81\xb5", // U+f075
"CommentAlt": "\xef\x89\xba", // U+f27a
"CommentAltCheck": "\xef\x92\xa2", // U+f4a2
"CommentAltDollar": "\xef\x99\x90", // U+f650
"CommentAltDots": "\xef\x92\xa3", // U+f4a3
"CommentAltEdit": "\xef\x92\xa4", // U+f4a4
"CommentAltExclamation": "\xef\x92\xa5", // U+f4a5
"CommentAltLines": "\xef\x92\xa6", // U+f4a6
"CommentAltMedical": "\xef\x9f\xb4", // U+f7f4
"CommentAltMinus": "\xef\x92\xa7", // U+f4a7
"CommentAltMusic": "\xef\xa2\xaf", // U+f8af
"CommentAltPlus": "\xef\x92\xa8", // U+f4a8
"CommentAltSlash": "\xef\x92\xa9", // U+f4a9
"CommentAltSmile": "\xef\x92\xaa", // U+f4aa
"CommentAltTimes": "\xef\x92\xab", // U+f4ab
"CommentCheck": "\xef\x92\xac", // U+f4ac
"CommentDollar": "\xef\x99\x91", // U+f651
"CommentDots": "\xef\x92\xad", // U+f4ad
"CommentEdit": "\xef\x92\xae", // U+f4ae
"CommentExclamation": "\xef\x92\xaf", // U+f4af
"CommentLines": "\xef\x92\xb0", // U+f4b0
"CommentMedical": "\xef\x9f\xb5", // U+f7f5
"CommentMinus": "\xef\x92\xb1", // U+f4b1
"CommentMusic": "\xef\xa2\xb0", // U+f8b0
"CommentPlus": "\xef\x92\xb2", // U+f4b2
"CommentSlash": "\xef\x92\xb3", // U+f4b3
"CommentSmile": "\xef\x92\xb4", // U+f4b4
"CommentTimes": "\xef\x92\xb5", // U+f4b5
"Comments": "\xef\x82\x86", // U+f086
"CommentsAlt": "\xef\x92\xb6", // U+f4b6
"CommentsAltDollar": "\xef\x99\x92", // U+f652
"CommentsDollar": "\xef\x99\x93", // U+f653
"CompactDisc": "\xef\x94\x9f", // U+f51f
"Compass": "\xef\x85\x8e", // U+f14e
"CompassSlash": "\xef\x97\xa9", // U+f5e9
"Compress": "\xef\x81\xa6", // U+f066
"CompressAlt": "\xef\x90\xa2", // U+f422
"CompressArrowsAlt": "\xef\x9e\x8c", // U+f78c
"CompressWide": "\xef\x8c\xa6", // U+f326
"ComputerClassic": "\xef\xa2\xb1", // U+f8b1
"ComputerSpeaker": "\xef\xa2\xb2", // U+f8b2
"ConciergeBell": "\xef\x95\xa2", // U+f562
"Construction": "\xef\xa1\x9d", // U+f85d
"ContainerStorage": "\xef\x92\xb7", // U+f4b7
"ConveyorBelt": "\xef\x91\xae", // U+f46e
"ConveyorBeltAlt": "\xef\x91\xaf", // U+f46f
"Cookie": "\xef\x95\xa3", // U+f563
"CookieBite": "\xef\x95\xa4", // U+f564
"Copy": "\xef\x83\x85", // U+f0c5
"Copyright": "\xef\x87\xb9", // U+f1f9
"Corn": "\xef\x9b\x87", // U+f6c7
"Couch": "\xef\x92\xb8", // U+f4b8
"Cow": "\xef\x9b\x88", // U+f6c8
"Cowbell": "\xef\xa2\xb3", // U+f8b3
"CowbellMore": "\xef\xa2\xb4", // U+f8b4
"CreditCard": "\xef\x82\x9d", // U+f09d
"CreditCardBlank": "\xef\x8e\x89", // U+f389
"CreditCardFront": "\xef\x8e\x8a", // U+f38a
"Cricket": "\xef\x91\x89", // U+f449
"Croissant": "\xef\x9f\xb6", // U+f7f6
"Crop": "\xef\x84\xa5", // U+f125
"CropAlt": "\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
"Crutches": "\xef\x9f\xb8", // U+f7f8
"Cube": "\xef\x86\xb2", // U+f1b2
"Cubes": "\xef\x86\xb3", // U+f1b3
"Curling": "\xef\x91\x8a", // U+f44a
"Cut": "\xef\x83\x84", // U+f0c4
"Dagger": "\xef\x9b\x8b", // U+f6cb
"Database": "\xef\x87\x80", // U+f1c0
"Deaf": "\xef\x8a\xa4", // U+f2a4
"Debug": "\xef\x9f\xb9", // U+f7f9
"Deer": "\xef\x9e\x8e", // U+f78e
"DeerRudolph": "\xef\x9e\x8f", // U+f78f
"Democrat": "\xef\x9d\x87", // U+f747
"Desktop": "\xef\x84\x88", // U+f108
"DesktopAlt": "\xef\x8e\x90", // U+f390
"Dewpoint": "\xef\x9d\x88", // U+f748
"Dharmachakra": "\xef\x99\x95", // U+f655
"Diagnoses": "\xef\x91\xb0", // U+f470
"Diamond": "\xef\x88\x99", // U+f219
"Dice": "\xef\x94\xa2", // U+f522
"DiceD10": "\xef\x9b\x8d", // U+f6cd
"DiceD12": "\xef\x9b\x8e", // U+f6ce
"DiceD20": "\xef\x9b\x8f", // U+f6cf
"DiceD4": "\xef\x9b\x90", // U+f6d0
"DiceD6": "\xef\x9b\x91", // U+f6d1
"DiceD8": "\xef\x9b\x92", // U+f6d2
"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
"Digging": "\xef\xa1\x9e", // U+f85e
"DigitalTachograph": "\xef\x95\xa6", // U+f566
"Diploma": "\xef\x97\xaa", // U+f5ea
"Directions": "\xef\x97\xab", // U+f5eb
"DiscDrive": "\xef\xa2\xb5", // U+f8b5
"Disease": "\xef\x9f\xba", // U+f7fa
"Divide": "\xef\x94\xa9", // U+f529
"Dizzy": "\xef\x95\xa7", // U+f567
"Dna": "\xef\x91\xb1", // U+f471
"DoNotEnter": "\xef\x97\xac", // U+f5ec
"Dog": "\xef\x9b\x93", // U+f6d3
"DogLeashed": "\xef\x9b\x94", // U+f6d4
"DollarSign": "\xef\x85\x95", // U+f155
"Dolly": "\xef\x91\xb2", // U+f472
"DollyEmpty": "\xef\x91\xb3", // U+f473
"DollyFlatbed": "\xef\x91\xb4", // U+f474
"DollyFlatbedAlt": "\xef\x91\xb5", // U+f475
"DollyFlatbedEmpty": "\xef\x91\xb6", // U+f476
"Donate": "\xef\x92\xb9", // U+f4b9
"DoorClosed": "\xef\x94\xaa", // U+f52a
"DoorOpen": "\xef\x94\xab", // U+f52b
"DotCircle": "\xef\x86\x92", // U+f192
"Dove": "\xef\x92\xba", // U+f4ba
"Download": "\xef\x80\x99", // U+f019
"DraftingCompass": "\xef\x95\xa8", // U+f568
"Dragon": "\xef\x9b\x95", // U+f6d5
"DrawCircle": "\xef\x97\xad", // U+f5ed
"DrawPolygon": "\xef\x97\xae", // U+f5ee
"DrawSquare": "\xef\x97\xaf", // U+f5ef
"Dreidel": "\xef\x9e\x92", // U+f792
"Drone": "\xef\xa1\x9f", // U+f85f
"DroneAlt": "\xef\xa1\xa0", // U+f860
"Drum": "\xef\x95\xa9", // U+f569
"DrumSteelpan": "\xef\x95\xaa", // U+f56a
"Drumstick": "\xef\x9b\x96", // U+f6d6
"DrumstickBite": "\xef\x9b\x97", // U+f6d7
"Dryer": "\xef\xa1\xa1", // U+f861
"DryerAlt": "\xef\xa1\xa2", // U+f862
"Duck": "\xef\x9b\x98", // U+f6d8
"Dumbbell": "\xef\x91\x8b", // U+f44b
"Dumpster": "\xef\x9e\x93", // U+f793
"DumpsterFire": "\xef\x9e\x94", // U+f794
"Dungeon": "\xef\x9b\x99", // U+f6d9
"Ear": "\xef\x97\xb0", // U+f5f0
"EarMuffs": "\xef\x9e\x95", // U+f795
"Eclipse": "\xef\x9d\x89", // U+f749
"EclipseAlt": "\xef\x9d\x8a", // U+f74a
"Edit": "\xef\x81\x84", // U+f044
"Egg": "\xef\x9f\xbb", // U+f7fb
"EggFried": "\xef\x9f\xbc", // U+f7fc
"Eject": "\xef\x81\x92", // U+f052
"Elephant": "\xef\x9b\x9a", // U+f6da
"EllipsisH": "\xef\x85\x81", // U+f141
"EllipsisHAlt": "\xef\x8e\x9b", // U+f39b
"EllipsisV": "\xef\x85\x82", // U+f142
"EllipsisVAlt": "\xef\x8e\x9c", // U+f39c
"EmptySet": "\xef\x99\x96", // U+f656
"EngineWarning": "\xef\x97\xb2", // U+f5f2
"Envelope": "\xef\x83\xa0", // U+f0e0
"EnvelopeOpen": "\xef\x8a\xb6", // U+f2b6
"EnvelopeOpenDollar": "\xef\x99\x97", // U+f657
"EnvelopeOpenText": "\xef\x99\x98", // U+f658
"EnvelopeSquare": "\xef\x86\x99", // U+f199
"Equals": "\xef\x94\xac", // U+f52c
"Eraser": "\xef\x84\xad", // U+f12d
"Ethernet": "\xef\x9e\x96", // U+f796
"EuroSign": "\xef\x85\x93", // U+f153
"Exchange": "\xef\x83\xac", // U+f0ec
"ExchangeAlt": "\xef\x8d\xa2", // U+f362
"Exclamation": "\xef\x84\xaa", // U+f12a
"ExclamationCircle": "\xef\x81\xaa", // U+f06a
"ExclamationSquare": "\xef\x8c\xa1", // U+f321
"ExclamationTriangle": "\xef\x81\xb1", // U+f071
"Expand": "\xef\x81\xa5", // U+f065
"ExpandAlt": "\xef\x90\xa4", // U+f424
"ExpandArrows": "\xef\x8c\x9d", // U+f31d
"ExpandArrowsAlt": "\xef\x8c\x9e", // U+f31e
"ExpandWide": "\xef\x8c\xa0", // U+f320
"ExternalLink": "\xef\x82\x8e", // U+f08e
"ExternalLinkAlt": "\xef\x8d\x9d", // U+f35d
"ExternalLinkSquare": "\xef\x85\x8c", // U+f14c
"ExternalLinkSquareAlt": "\xef\x8d\xa0", // U+f360
"Eye": "\xef\x81\xae", // U+f06e
"EyeDropper": "\xef\x87\xbb", // U+f1fb
"EyeEvil": "\xef\x9b\x9b", // U+f6db
"EyeSlash": "\xef\x81\xb0", // U+f070
"Fan": "\xef\xa1\xa3", // U+f863
"FanTable": "\xee\x80\x84", // U+e004
"Farm": "\xef\xa1\xa4", // U+f864
"FastBackward": "\xef\x81\x89", // U+f049
"FastForward": "\xef\x81\x90", // U+f050
"Faucet": "\xee\x80\x85", // U+e005
"FaucetDrip": "\xee\x80\x86", // U+e006
"Fax": "\xef\x86\xac", // U+f1ac
"Feather": "\xef\x94\xad", // U+f52d
"FeatherAlt": "\xef\x95\xab", // U+f56b
"Female": "\xef\x86\x82", // U+f182
"FieldHockey": "\xef\x91\x8c", // U+f44c
"FighterJet": "\xef\x83\xbb", // U+f0fb
"File": "\xef\x85\x9b", // U+f15b
"FileAlt": "\xef\x85\x9c", // U+f15c
"FileArchive": "\xef\x87\x86", // U+f1c6
"FileAudio": "\xef\x87\x87", // U+f1c7
"FileCertificate": "\xef\x97\xb3", // U+f5f3
"FileChartLine": "\xef\x99\x99", // U+f659
"FileChartPie": "\xef\x99\x9a", // U+f65a
"FileCheck": "\xef\x8c\x96", // U+f316
"FileCode": "\xef\x87\x89", // U+f1c9
"FileContract": "\xef\x95\xac", // U+f56c
"FileCsv": "\xef\x9b\x9d", // U+f6dd
"FileDownload": "\xef\x95\xad", // U+f56d
"FileEdit": "\xef\x8c\x9c", // U+f31c
"FileExcel": "\xef\x87\x83", // U+f1c3
"FileExclamation": "\xef\x8c\x9a", // U+f31a
"FileExport": "\xef\x95\xae", // U+f56e
"FileImage": "\xef\x87\x85", // U+f1c5
"FileImport": "\xef\x95\xaf", // U+f56f
"FileInvoice": "\xef\x95\xb0", // U+f570
"FileInvoiceDollar": "\xef\x95\xb1", // U+f571
"FileMedical": "\xef\x91\xb7", // U+f477
"FileMedicalAlt": "\xef\x91\xb8", // U+f478
"FileMinus": "\xef\x8c\x98", // U+f318
"FileMusic": "\xef\xa2\xb6", // U+f8b6
"FilePdf": "\xef\x87\x81", // U+f1c1
"FilePlus": "\xef\x8c\x99", // U+f319
"FilePowerpoint": "\xef\x87\x84", // U+f1c4
"FilePrescription": "\xef\x95\xb2", // U+f572
"FileSearch": "\xef\xa1\xa5", // U+f865
"FileSignature": "\xef\x95\xb3", // U+f573
"FileSpreadsheet": "\xef\x99\x9b", // U+f65b
"FileTimes": "\xef\x8c\x97", // U+f317
"FileUpload": "\xef\x95\xb4", // U+f574
"FileUser": "\xef\x99\x9c", // U+f65c
"FileVideo": "\xef\x87\x88", // U+f1c8
"FileWord": "\xef\x87\x82", // U+f1c2
"FilesMedical": "\xef\x9f\xbd", // U+f7fd
"Fill": "\xef\x95\xb5", // U+f575
"FillDrip": "\xef\x95\xb6", // U+f576
"Film": "\xef\x80\x88", // U+f008
"FilmAlt": "\xef\x8e\xa0", // U+f3a0
"FilmCanister": "\xef\xa2\xb7", // U+f8b7
"Filter": "\xef\x82\xb0", // U+f0b0
"Fingerprint": "\xef\x95\xb7", // U+f577
"Fire": "\xef\x81\xad", // U+f06d
"FireAlt": "\xef\x9f\xa4", // U+f7e4
"FireExtinguisher": "\xef\x84\xb4", // U+f134
"FireSmoke": "\xef\x9d\x8b", // U+f74b
"Fireplace": "\xef\x9e\x9a", // U+f79a
"FirstAid": "\xef\x91\xb9", // U+f479
"Fish": "\xef\x95\xb8", // U+f578
"FishCooked": "\xef\x9f\xbe", // U+f7fe
"FistRaised": "\xef\x9b\x9e", // U+f6de
"Flag": "\xef\x80\xa4", // U+f024
"FlagAlt": "\xef\x9d\x8c", // U+f74c
"FlagCheckered": "\xef\x84\x9e", // U+f11e
"FlagUsa": "\xef\x9d\x8d", // U+f74d
"Flame": "\xef\x9b\x9f", // U+f6df
"Flashlight": "\xef\xa2\xb8", // U+f8b8
"Flask": "\xef\x83\x83", // U+f0c3
"FlaskPoison": "\xef\x9b\xa0", // U+f6e0
"FlaskPotion": "\xef\x9b\xa1", // U+f6e1
"Flower": "\xef\x9f\xbf", // U+f7ff
"FlowerDaffodil": "\xef\xa0\x80", // U+f800
"FlowerTulip": "\xef\xa0\x81", // U+f801
"Flushed": "\xef\x95\xb9", // U+f579
"Flute": "\xef\xa2\xb9", // U+f8b9
"FluxCapacitor": "\xef\xa2\xba", // U+f8ba
"Fog": "\xef\x9d\x8e", // U+f74e
"Folder": "\xef\x81\xbb", // U+f07b
"FolderDownload": "\xee\x81\x93", // U+e053
"FolderMinus": "\xef\x99\x9d", // U+f65d
"FolderOpen": "\xef\x81\xbc", // U+f07c
"FolderPlus": "\xef\x99\x9e", // U+f65e
"FolderTimes": "\xef\x99\x9f", // U+f65f
"FolderTree": "\xef\xa0\x82", // U+f802
"FolderUpload": "\xee\x81\x94", // U+e054
"Folders": "\xef\x99\xa0", // U+f660
"Font": "\xef\x80\xb1", // U+f031
"FontAwesomeLogoFull": "\xef\x93\xa6", // U+f4e6
"FontCase": "\xef\xa1\xa6", // U+f866
"FootballBall": "\xef\x91\x8e", // U+f44e
"FootballHelmet": "\xef\x91\x8f", // U+f44f
"Forklift": "\xef\x91\xba", // U+f47a
"Forward": "\xef\x81\x8e", // U+f04e
"Fragile": "\xef\x92\xbb", // U+f4bb
"FrenchFries": "\xef\xa0\x83", // U+f803
"Frog": "\xef\x94\xae", // U+f52e
"FrostyHead": "\xef\x9e\x9b", // U+f79b
"Frown": "\xef\x84\x99", // U+f119
"FrownOpen": "\xef\x95\xba", // U+f57a
"Function": "\xef\x99\xa1", // U+f661
"FunnelDollar": "\xef\x99\xa2", // U+f662
"Futbol": "\xef\x87\xa3", // U+f1e3
"Galaxy": "\xee\x80\x88", // U+e008
"GameBoard": "\xef\xa1\xa7", // U+f867
"GameBoardAlt": "\xef\xa1\xa8", // U+f868
"GameConsoleHandheld": "\xef\xa2\xbb", // U+f8bb
"Gamepad": "\xef\x84\x9b", // U+f11b
"GamepadAlt": "\xef\xa2\xbc", // U+f8bc
"Garage": "\xee\x80\x89", // U+e009
"GarageCar": "\xee\x80\x8a", // U+e00a
"GarageOpen": "\xee\x80\x8b", // U+e00b
"GasPump": "\xef\x94\xaf", // U+f52f
"GasPumpSlash": "\xef\x97\xb4", // U+f5f4
"Gavel": "\xef\x83\xa3", // U+f0e3
"Gem": "\xef\x8e\xa5", // U+f3a5
"Genderless": "\xef\x88\xad", // U+f22d
"Ghost": "\xef\x9b\xa2", // U+f6e2
"Gift": "\xef\x81\xab", // U+f06b
"GiftCard": "\xef\x99\xa3", // U+f663
"Gifts": "\xef\x9e\x9c", // U+f79c
"GingerbreadMan": "\xef\x9e\x9d", // U+f79d
"Glass": "\xef\xa0\x84", // U+f804
"GlassChampagne": "\xef\x9e\x9e", // U+f79e
"GlassCheers": "\xef\x9e\x9f", // U+f79f
"GlassCitrus": "\xef\xa1\xa9", // U+f869
"GlassMartini": "\xef\x80\x80", // U+f000
"GlassMartiniAlt": "\xef\x95\xbb", // U+f57b
"GlassWhiskey": "\xef\x9e\xa0", // U+f7a0
"GlassWhiskeyRocks": "\xef\x9e\xa1", // U+f7a1
"Glasses": "\xef\x94\xb0", // U+f530
"GlassesAlt": "\xef\x97\xb5", // U+f5f5
"Globe": "\xef\x82\xac", // U+f0ac
"GlobeAfrica": "\xef\x95\xbc", // U+f57c
"GlobeAmericas": "\xef\x95\xbd", // U+f57d
"GlobeAsia": "\xef\x95\xbe", // U+f57e
"GlobeEurope": "\xef\x9e\xa2", // U+f7a2
"GlobeSnow": "\xef\x9e\xa3", // U+f7a3
"GlobeStand": "\xef\x97\xb6", // U+f5f6
"GolfBall": "\xef\x91\x90", // U+f450
"GolfClub": "\xef\x91\x91", // U+f451
"Gopuram": "\xef\x99\xa4", // U+f664
"GraduationCap": "\xef\x86\x9d", // U+f19d
"Gramophone": "\xef\xa2\xbd", // U+f8bd
"GreaterThan": "\xef\x94\xb1", // U+f531
"GreaterThanEqual": "\xef\x94\xb2", // U+f532
"Grimace": "\xef\x95\xbf", // U+f57f
"Grin": "\xef\x96\x80", // U+f580
"GrinAlt": "\xef\x96\x81", // U+f581
"GrinBeam": "\xef\x96\x82", // U+f582
"GrinBeamSweat": "\xef\x96\x83", // U+f583
"GrinHearts": "\xef\x96\x84", // U+f584
"GrinSquint": "\xef\x96\x85", // U+f585
"GrinSquintTears": "\xef\x96\x86", // U+f586
"GrinStars": "\xef\x96\x87", // U+f587
"GrinTears": "\xef\x96\x88", // U+f588
"GrinTongue": "\xef\x96\x89", // U+f589
"GrinTongueSquint": "\xef\x96\x8a", // U+f58a
"GrinTongueWink": "\xef\x96\x8b", // U+f58b
"GrinWink": "\xef\x96\x8c", // U+f58c
"GripHorizontal": "\xef\x96\x8d", // U+f58d
"GripLines": "\xef\x9e\xa4", // U+f7a4
"GripLinesVertical": "\xef\x9e\xa5", // U+f7a5
"GripVertical": "\xef\x96\x8e", // U+f58e
"Guitar": "\xef\x9e\xa6", // U+f7a6
"GuitarElectric": "\xef\xa2\xbe", // U+f8be
"Guitars": "\xef\xa2\xbf", // U+f8bf
"HSquare": "\xef\x83\xbd", // U+f0fd
"H1": "\xef\x8c\x93", // U+f313
"H2": "\xef\x8c\x94", // U+f314
"H3": "\xef\x8c\x95", // U+f315
"H4": "\xef\xa1\xaa", // U+f86a
"Hamburger": "\xef\xa0\x85", // U+f805
"Hammer": "\xef\x9b\xa3", // U+f6e3
"HammerWar": "\xef\x9b\xa4", // U+f6e4
"Hamsa": "\xef\x99\xa5", // U+f665
"HandHeart": "\xef\x92\xbc", // U+f4bc
"HandHolding": "\xef\x92\xbd", // U+f4bd
"HandHoldingBox": "\xef\x91\xbb", // U+f47b
"HandHoldingHeart": "\xef\x92\xbe", // U+f4be
"HandHoldingMagic": "\xef\x9b\xa5", // U+f6e5
"HandHoldingMedical": "\xee\x81\x9c", // U+e05c
"HandHoldingSeedling": "\xef\x92\xbf", // U+f4bf
"HandHoldingUsd": "\xef\x93\x80", // U+f4c0
"HandHoldingWater": "\xef\x93\x81", // U+f4c1
"HandLizard": "\xef\x89\x98", // U+f258
"HandMiddleFinger": "\xef\xa0\x86", // U+f806
"HandPaper": "\xef\x89\x96", // U+f256
"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
"HandReceiving": "\xef\x91\xbc", // U+f47c
"HandRock": "\xef\x89\x95", // U+f255
"HandScissors": "\xef\x89\x97", // U+f257
"HandSparkles": "\xee\x81\x9d", // U+e05d
"HandSpock": "\xef\x89\x99", // U+f259
"Hands": "\xef\x93\x82", // U+f4c2
"HandsHeart": "\xef\x93\x83", // U+f4c3
"HandsHelping": "\xef\x93\x84", // U+f4c4
"HandsUsd": "\xef\x93\x85", // U+f4c5
"HandsWash": "\xee\x81\x9e", // U+e05e
"Handshake": "\xef\x8a\xb5", // U+f2b5
"HandshakeAlt": "\xef\x93\x86", // U+f4c6
"HandshakeAltSlash": "\xee\x81\x9f", // U+e05f
"HandshakeSlash": "\xee\x81\xa0", // U+e060
"Hanukiah": "\xef\x9b\xa6", // U+f6e6
"HardHat": "\xef\xa0\x87", // U+f807
"Hashtag": "\xef\x8a\x92", // U+f292
"HatChef": "\xef\xa1\xab", // U+f86b
"HatCowboy": "\xef\xa3\x80", // U+f8c0
"HatCowboySide": "\xef\xa3\x81", // U+f8c1
"HatSanta": "\xef\x9e\xa7", // U+f7a7
"HatWinter": "\xef\x9e\xa8", // U+f7a8
"HatWitch": "\xef\x9b\xa7", // U+f6e7
"HatWizard": "\xef\x9b\xa8", // U+f6e8
"Hdd": "\xef\x82\xa0", // U+f0a0
"HeadSide": "\xef\x9b\xa9", // U+f6e9
"HeadSideBrain": "\xef\xa0\x88", // U+f808
"HeadSideCough": "\xee\x81\xa1", // U+e061
"HeadSideCoughSlash": "\xee\x81\xa2", // U+e062
"HeadSideHeadphones": "\xef\xa3\x82", // U+f8c2
"HeadSideMask": "\xee\x81\xa3", // U+e063
"HeadSideMedical": "\xef\xa0\x89", // U+f809
"HeadSideVirus": "\xee\x81\xa4", // U+e064
"HeadVr": "\xef\x9b\xaa", // U+f6ea
"Heading": "\xef\x87\x9c", // U+f1dc
"Headphones": "\xef\x80\xa5", // U+f025
"HeadphonesAlt": "\xef\x96\x8f", // U+f58f
"Headset": "\xef\x96\x90", // U+f590
"Heart": "\xef\x80\x84", // U+f004
"HeartBroken": "\xef\x9e\xa9", // U+f7a9
"HeartCircle": "\xef\x93\x87", // U+f4c7
"HeartRate": "\xef\x97\xb8", // U+f5f8
"HeartSquare": "\xef\x93\x88", // U+f4c8
"Heartbeat": "\xef\x88\x9e", // U+f21e
"Heat": "\xee\x80\x8c", // U+e00c
"Helicopter": "\xef\x94\xb3", // U+f533
"HelmetBattle": "\xef\x9b\xab", // U+f6eb
"Hexagon": "\xef\x8c\x92", // U+f312
"Highlighter": "\xef\x96\x91", // U+f591
"Hiking": "\xef\x9b\xac", // U+f6ec
"Hippo": "\xef\x9b\xad", // U+f6ed
"History": "\xef\x87\x9a", // U+f1da
"HockeyMask": "\xef\x9b\xae", // U+f6ee
"HockeyPuck": "\xef\x91\x93", // U+f453
"HockeySticks": "\xef\x91\x94", // U+f454
"HollyBerry": "\xef\x9e\xaa", // U+f7aa
"Home": "\xef\x80\x95", // U+f015
"HomeAlt": "\xef\xa0\x8a", // U+f80a
"HomeHeart": "\xef\x93\x89", // U+f4c9
"HomeLg": "\xef\xa0\x8b", // U+f80b
"HomeLgAlt": "\xef\xa0\x8c", // U+f80c
"HoodCloak": "\xef\x9b\xaf", // U+f6ef
"HorizontalRule": "\xef\xa1\xac", // U+f86c
"Horse": "\xef\x9b\xb0", // U+f6f0
"HorseHead": "\xef\x9e\xab", // U+f7ab
"HorseSaddle": "\xef\xa3\x83", // U+f8c3
"Hospital": "\xef\x83\xb8", // U+f0f8
"HospitalAlt": "\xef\x91\xbd", // U+f47d
"HospitalSymbol": "\xef\x91\xbe", // U+f47e
"HospitalUser": "\xef\xa0\x8d", // U+f80d
"Hospitals": "\xef\xa0\x8e", // U+f80e
"HotTub": "\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": "\xee\x80\x8d", // U+e00d
"HouseDamage": "\xef\x9b\xb1", // U+f6f1
"HouseDay": "\xee\x80\x8e", // U+e00e
"HouseFlood": "\xef\x9d\x8f", // U+f74f
"HouseLeave": "\xee\x80\x8f", // U+e00f
"HouseNight": "\xee\x80\x90", // U+e010
"HouseReturn": "\xee\x80\x91", // U+e011
"HouseSignal": "\xee\x80\x92", // U+e012
"HouseUser": "\xee\x81\xa5", // U+e065
"Hryvnia": "\xef\x9b\xb2", // U+f6f2
"Humidity": "\xef\x9d\x90", // U+f750
"Hurricane": "\xef\x9d\x91", // U+f751
"ICursor": "\xef\x89\x86", // U+f246
"IceCream": "\xef\xa0\x90", // U+f810
"IceSkate": "\xef\x9e\xac", // U+f7ac
"Icicles": "\xef\x9e\xad", // U+f7ad
"Icons": "\xef\xa1\xad", // U+f86d
"IconsAlt": "\xef\xa1\xae", // U+f86e
"IdBadge": "\xef\x8b\x81", // U+f2c1
"IdCard": "\xef\x8b\x82", // U+f2c2
"IdCardAlt": "\xef\x91\xbf", // U+f47f
"Igloo": "\xef\x9e\xae", // U+f7ae
"Image": "\xef\x80\xbe", // U+f03e
"ImagePolaroid": "\xef\xa3\x84", // U+f8c4
"Images": "\xef\x8c\x82", // U+f302
"Inbox": "\xef\x80\x9c", // U+f01c
"InboxIn": "\xef\x8c\x90", // U+f310
"InboxOut": "\xef\x8c\x91", // U+f311
"Indent": "\xef\x80\xbc", // U+f03c
"Industry": "\xef\x89\xb5", // U+f275
"IndustryAlt": "\xef\x8e\xb3", // U+f3b3
"Infinity": "\xef\x94\xb4", // U+f534
"Info": "\xef\x84\xa9", // U+f129
"InfoCircle": "\xef\x81\x9a", // U+f05a
"InfoSquare": "\xef\x8c\x8f", // U+f30f
"Inhaler": "\xef\x97\xb9", // U+f5f9
"Integral": "\xef\x99\xa7", // U+f667
"Intersection": "\xef\x99\xa8", // U+f668
"Inventory": "\xef\x92\x80", // U+f480
"IslandTropical": "\xef\xa0\x91", // U+f811
"Italic": "\xef\x80\xb3", // U+f033
"JackOLantern": "\xef\x8c\x8e", // U+f30e
"Jedi": "\xef\x99\xa9", // U+f669
"Joint": "\xef\x96\x95", // U+f595
"JournalWhills": "\xef\x99\xaa", // U+f66a
"Joystick": "\xef\xa3\x85", // U+f8c5
"Jug": "\xef\xa3\x86", // U+f8c6
"Kaaba": "\xef\x99\xab", // U+f66b
"Kazoo": "\xef\xa3\x87", // U+f8c7
"Kerning": "\xef\xa1\xaf", // U+f86f
"Key": "\xef\x82\x84", // U+f084
"KeySkeleton": "\xef\x9b\xb3", // U+f6f3
"Keyboard": "\xef\x84\x9c", // U+f11c
"Keynote": "\xef\x99\xac", // U+f66c
"Khanda": "\xef\x99\xad", // U+f66d
"Kidneys": "\xef\x97\xbb", // U+f5fb
"Kiss": "\xef\x96\x96", // U+f596
"KissBeam": "\xef\x96\x97", // U+f597
"KissWinkHeart": "\xef\x96\x98", // U+f598
"Kite": "\xef\x9b\xb4", // U+f6f4
"KiwiBird": "\xef\x94\xb5", // U+f535
"KnifeKitchen": "\xef\x9b\xb5", // U+f6f5
"Lambda": "\xef\x99\xae", // U+f66e
"Lamp": "\xef\x93\x8a", // U+f4ca
"LampDesk": "\xee\x80\x94", // U+e014
"LampFloor": "\xee\x80\x95", // U+e015
"Landmark": "\xef\x99\xaf", // U+f66f
"LandmarkAlt": "\xef\x9d\x92", // U+f752
"Language": "\xef\x86\xab", // U+f1ab
"Laptop": "\xef\x84\x89", // U+f109
"LaptopCode": "\xef\x97\xbc", // U+f5fc
"LaptopHouse": "\xee\x81\xa6", // U+e066
"LaptopMedical": "\xef\xa0\x92", // U+f812
"Lasso": "\xef\xa3\x88", // U+f8c8
"Laugh": "\xef\x96\x99", // U+f599
"LaughBeam": "\xef\x96\x9a", // U+f59a
"LaughSquint": "\xef\x96\x9b", // U+f59b
"LaughWink": "\xef\x96\x9c", // U+f59c
"LayerGroup": "\xef\x97\xbd", // U+f5fd
"LayerMinus": "\xef\x97\xbe", // U+f5fe
"LayerPlus": "\xef\x97\xbf", // U+f5ff
"Leaf": "\xef\x81\xac", // U+f06c
"LeafHeart": "\xef\x93\x8b", // U+f4cb
"LeafMaple": "\xef\x9b\xb6", // U+f6f6
"LeafOak": "\xef\x9b\xb7", // U+f6f7
"Lemon": "\xef\x82\x94", // U+f094
"LessThan": "\xef\x94\xb6", // U+f536
"LessThanEqual": "\xef\x94\xb7", // U+f537
"LevelDown": "\xef\x85\x89", // U+f149
"LevelDownAlt": "\xef\x8e\xbe", // U+f3be
"LevelUp": "\xef\x85\x88", // U+f148
"LevelUpAlt": "\xef\x8e\xbf", // U+f3bf
"LifeRing": "\xef\x87\x8d", // U+f1cd
"LightCeiling": "\xee\x80\x96", // U+e016
"LightSwitch": "\xee\x80\x97", // U+e017
"LightSwitchOff": "\xee\x80\x98", // U+e018
"LightSwitchOn": "\xee\x80\x99", // U+e019
"Lightbulb": "\xef\x83\xab", // U+f0eb