We've worked hard to make upgrading to Version 6 as smooth and easy as possible, no matter where you're coming from.
Remember Version 6 is an alpha release that's still under contruction and we may need to make breaking changes before final release. Use with caution!
You're a regular around these parts so even though we've worked hard to the upgrade to Version 6 seamless, you might want to know about these latest and greatest improvements:
fal
and fa-light
both work for light styled icons.Since you're used to using the best Font Awesome available we've worked hard to make the transition from version 5 to 6 as smooth as possible.
We like using the Quick Start instructions or you can pick a particular flavor of Font Awesome installation:
We're still working on making Version 6 available via our Kits and CDN. Stay tuned!
<head>
<link rel="stylesheet" href="path_to_version_6_css_files/css/all.css">
</head>
<body>
<!-- Your icons should show up just as before. -->
</body>
If you want to play around with new styles (including the new thin style), check out all of Version 6's style options.
As long as you've removed any reference to version 5 files you should be good to go, but if you want to be certain there will be no conflicts you can remove the version 5 files from your project. The location of the version 5 files will depend on how you've installed Font Awesome.
Example installed with npm
project_root
|__node_modules
|__@fortawesome
|__version_5_files
If you've installed manually or with another method, you'll need to locate the version 5 file install location and remove them.
Upgrading on the desktop is the same as adding a new font, so you can follow the usual set-up steps.
Remember that Duotone icons are SVGs, so you'll need to swap those out individually.
Check out our troubleshooting guide for the desktop to get answers to some of the most common issues. Still stuck? Shoot us an email and we'll give you a hand!
For any text area that is set to use the Font Awesome 5 font faces, you can now select one of the Font Awesome 6 font faces for the latest icons. If you check the font weight menu, you'll see it now has the new Thin style in addition to Solid, Regular, and Light.
Some programs allow you to multi-select text areas to swap them all out between different font faces easily if you want to upgrade a particular file or design to go from Font Awesome 5 to Font Awesome 6.
For Figma, if you select a text item using a Font Awesome 5 font face (Free, Pro, or Brands), you can use the "Select All with the Same Font" action under the Edit menu.
For Sketch, you'll need a plugin like Fontily.
For Illustrator, you can use the "Find Font" action under the Type menu.
We completely re-designed version 5 from scratch. With version 6 we've built upon that foundation and added features and improvements all around. We've tried to make it as easy as possible to upgrade from Version 4, but there are a few differences to keep in mind when upgrading. Here's how to move to the latest and greatest.
We introduced a solid, regular, light, duotone, and thin style of every icon in Font Awesome. We also separated out brand icons into their own style/category for easier use. We needed a way to reference a particular style when an icon is called in markup. It's still the case that for each icon you want to use, you need to 1) specify the icon's name and 2) use the proper prefix. Version 4 just had one prefix — fa
. Version 6 has multiple prefixes to let us set the style of any icon easily:
New Prefix | Icon Style | SVG + JS Filename | Web Font Filename | Availability |
---|---|---|---|---|
fa-brands | Brands | brands.js | fa-brands-400.* | Free |
fa-solid | Solid | solid.js | fa-solid-900.* | Free |
fa-regular | Regular | regular.js | fa-regular-400.* | Pro only |
fa-light | Light | light.js | fa-light-300.* | Pro only |
fa-duotone | Duotone | duotone.js | fa-duotone-900.* | Pro only |
fa-thin | Thin | duotone.js | fa-duotone-900.* | Pro only |
<!-- Version 4's syntax -->
<i class="fa fa-camera-retro"></i>
<!-- version 6's syntax -->
<i class="fa-solid fa-camera-retro"></i>
<!-- example: regular style of camera-retro -->
<i class="fa-regular fa-camera-retro"></i>
<!-- example: light style of camera-retro -->
<i class="fa-light fa-camera-retro"></i>
<!-- example: duotone style of camera-retro -->
<i class="fa-duotone fa-camera-retro"></i>
<!-- example: thin style of camera-retro -->
<i class="fa-thin fa-camera-retro"></i>
Similarly, all icons that had an outlined style (their name usually ended with -o
) are now part of the regular style, use the fa-regular
style class, and have had their -o
suffix removed.
The most future-proof way to upgrade from version 4 to 6 is to add the Version 6 assets by following the Quick Start instructions and edit any Font Awesome icon references in your HTML files to use the latest icon names and style references. If that's not possible, you can follow the more detailed instructions below.
Remove the files associated with Font Awesome Version 4 from your project - including any folder containing Font Awesome assets like web fonts (/fontawesome/fonts/
), CSS (/fontawesome/css
), and pre-processor options (/fontawesome/less
and /fontawesome/scss
).
Next, remove references to Version 4's CSS or JS from the <head>
of your templates/pages' HTML, including any references to Version 4's CDN.
Follow the steps in our getting started details to set up Font Awesome 6.
Want some extra assurance that your existing icons will render without issue? We’ve created shim files to use as band-aids until you get the time to do a proper upgrade. Our v4 shims allow you to keep your old Version 4 icon names, aliases, and syntax while mapping version 6 icons to your current references.
If you want to use them, you'll need to add an additional line to your Version 6 references. Here's an example using self hosting. Make sure to get your path to the files right:
<head>
<link rel="stylesheet" href="path_to_css_files/css/all.css">
<link rel="stylesheet" href="path_to_css_files/css/v4-shims.css">
</head>
<body>
<!-- "close" is an alias to "times", Version 6 is <i class="fa fa-times"></i> -->
<i class="fa fa-close"></i>
<!-- Renamed to "image", Version 6 is <i class="fa fa-image"></i> -->
<i class="fa fa-picture"></i>
<!-- Needs the "fa-brands" prefix, Version 6 <i class="fa-brands fa-twitter"></i> -->
<i class="fa fa-twitter"></i>
<!-- "fa-regular" prefix, lose the "-o", Version 6 <i class="fa-regular fa-circle"></i> -->
<i class="fa fa-circle-o"></i>
</body>
The v4-shim is available to use in both our Web Fonts + CSS and SVG + JS Frameworks. If you're using our fancy SVG + JS way of rendering icons, just switch the /css/all.css
reference to /js/all.js
as well as /css/v4-shims.css
to /js/v4-shims.js
. Here's the example above switched to use our SVG + JS framework instead.
<head>
<script defer src="https://path_to_js_files/js/all.js"></script>
<script defer src="https://path_to_js_files/js/v4-shims.js"></script>
</head>
<body>
<!-- your existing Version 4 icon references here... -->
</body>
Update any custom styling you’ve added around Font Awesome icons (if applicable) including any rules you've set defining Unicode values that may have changed with CSS pseudo-elements.
Buy a friend a coffee and have them go through your project’s pages and views to make sure all icons are rendering as expected. Also, a staging or development version of your project is a great place to do this.
After conferring with Dr. Spengler, we don't recommend using both Font Awesome 4 and 6 side-by-side on a project. It will cause huge CSS and path collisions and we can't promise icons will render as you or we expect. If you can't remove older version references, we recommend starting a new project for alpha testing. Otherwise we would hold off until version 6 is fully released.
If you're using CSS pseudo-elements with Version 4, upgrading to version 6 requires a fair amount of manual work. Below are the steps you'll need to follow:
font-family
to reference the new version of Font Awesome 6.font-weight
since version 6 has multiple styles mapped to different weights. /* general styling shared between versions */
.icon::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
/* Version 4's styling (using calendar-o) */
.calendar::before {
font-family: FontAwesome;
content: "\f133";
}
/* version 5's styling (using updated regular style of calendar) */
.calendar::before {
font-family: "Font Awesome 5 Free"; /* updated font-family */
font-weight: 400; /* regular style/weight */
content: "\f133";
}
You'll need to complete a few additional steps to get up and running.
Here's the list of all of the icons that have been renamed according to version 5's standards and conventions. Keep in mind you'll need to change all brand icons from version 4 to use the new fa-brands
prefix instead of the old fa
prefix.
Old Icon Name or Alias (Version 4) | New Icon Name (Version 5) | New Icon Prefix | Unicode value |
---|---|---|---|
500px | 500px | fa-brands | f26e |
address-book-o | address-book | fa-regular | f2b9 |
address-card-o | address-card | fa-regular | f2bb |
adn | adn | fa-brands | f170 |
amazon | amazon | fa-brands | f270 |
android | android | fa-brands | f17b |
angellist | angellist | fa-brands | f209 |
apple | apple | fa-brands | f179 |
area-chart | chart-area | fa-solid | f1fe |
arrow-circle-o-down | arrow-alt-circle-down | fa-regular | f358 |
arrow-circle-o-left | arrow-alt-circle-left | fa-regular | f359 |
arrow-circle-o-right | arrow-alt-circle-right | fa-regular | f35a |
arrow-circle-o-up | arrow-alt-circle-up | fa-regular | f35b |
arrows | arrows-alt | fa-solid | f0b2 |
arrows-alt | expand-arrows-alt | fa-solid | f31e |
arrows-h | arrows-alt-h | fa-solid | f337 |
arrows-v | arrows-alt-v | fa-solid | f338 |
asl-interpreting | american-sign-language-interpreting | fa-solid | f2a3 |
automobile | car | fa-solid | f1b9 |
bandcamp | bandcamp | fa-brands | f2d5 |
bank | university | fa-solid | f19c |
bar-chart | chart-bar | fa-regular | f080 |
bar-chart-o | chart-bar | fa-regular | f080 |
bathtub | bath | fa-solid | f2cd |
battery | battery-full | fa-solid | f240 |
battery-0 | battery-empty | fa-solid | f244 |
battery-1 | battery-quarter | fa-solid | f243 |
battery-2 | battery-half | fa-solid | f242 |
battery-3 | battery-three-quarters | fa-solid | f241 |
battery-4 | battery-full | fa-solid | f240 |
behance | behance | fa-brands | f1b4 |
behance-square | behance-square | fa-brands | f1b5 |
bell-o | bell | fa-regular | f0f3 |
bell-slash-o | bell-slash | fa-regular | f1f6 |
bitbucket | bitbucket | fa-brands | f171 |
bitbucket-square | bitbucket | fa-brands | f171 |
bitcoin | btc | fa-brands | f15a |
black-tie | black-tie | fa-brands | f27e |
bluetooth | bluetooth | fa-brands | f293 |
bluetooth-b | bluetooth-b | fa-brands | f294 |
bookmark-o | bookmark | fa-regular | f02e |
btc | btc | fa-brands | f15a |
building-o | building | fa-regular | f1ad |
buysellads | buysellads | fa-brands | f20d |
cab | taxi | fa-solid | f1ba |
calendar | calendar-alt | fa-solid | f073 |
calendar-check-o | calendar-check | fa-regular | f274 |
calendar-minus-o | calendar-minus | fa-regular | f272 |
calendar-o | calendar | fa-regular | f133 |
calendar-plus-o | calendar-plus | fa-regular | f271 |
calendar-times-o | calendar-times | fa-regular | f273 |
caret-square-o-down | caret-square-down | fa-regular | f150 |
caret-square-o-left | caret-square-left | fa-regular | f191 |
caret-square-o-right | caret-square-right | fa-regular | f152 |
caret-square-o-up | caret-square-up | fa-regular | f151 |
cc | closed-captioning | fa-regular | f20a |
cc-amex | cc-amex | fa-brands | f1f3 |
cc-diners-club | cc-diners-club | fa-brands | f24c |
cc-discover | cc-discover | fa-brands | f1f2 |
cc-jcb | cc-jcb | fa-brands | f24b |
cc-mastercard | cc-mastercard | fa-brands | f1f1 |
cc-paypal | cc-paypal | fa-brands | f1f4 |
cc-stripe | cc-stripe | fa-brands | f1f5 |
cc-visa | cc-visa | fa-brands | f1f0 |
chain | link | fa-solid | f0c1 |
chain-broken | unlink | fa-solid | f127 |
check-circle-o | check-circle | fa-regular | f058 |
check-square-o | check-square | fa-regular | f14a |
chrome | chrome | fa-brands | f268 |
circle-o | circle | fa-regular | f111 |
circle-o-notch | circle-notch | fa-solid | f1ce |
circle-thin | circle | fa-regular | f111 |
clipboard | clipboard | fa-regular | f328 |
clock-o | clock | fa-regular | f017 |
clone | clone | fa-regular | f24d |
close | times | fa-solid | f00d |
cloud-download | cloud-download-alt | fa-solid | f381 |
cloud-upload | cloud-upload-alt | fa-solid | f382 |
cny | yen-sign | fa-solid | f157 |
code-fork | code-branch | fa-solid | f126 |
codepen | codepen | fa-brands | f1cb |
codiepie | codiepie | fa-brands | f284 |
comment-o | comment | fa-regular | f075 |
commenting | comment-dots | fa-solid | f4ad |
commenting-o | comment-dots | fa-regular | f4ad |
comments-o | comments | fa-regular | f086 |
compass | compass | fa-regular | f14e |
connectdevelop | connectdevelop | fa-brands | f20e |
contao | contao | fa-brands | f26d |
copyright | copyright | fa-regular | f1f9 |
creative-commons | creative-commons | fa-brands | f25e |
credit-card | credit-card | fa-regular | f09d |
credit-card-alt | credit-card | fa-solid | f09d |
css3 | css3 | fa-brands | f13c |
cutlery | utensils | fa-solid | f2e7 |
dashboard | tachometer-alt | fa-solid | f3fd |
dashcube | dashcube | fa-brands | f210 |
deafness | deaf | fa-solid | f2a4 |
dedent | outdent | fa-solid | f03b |
delicious | delicious | fa-brands | f1a5 |
deviantart | deviantart | fa-brands | f1bd |
diamond | gem | fa-regular | f3a5 |
digg | digg | fa-brands | f1a6 |
dollar | dollar-sign | fa-solid | f155 |
dot-circle-o | dot-circle | fa-regular | f192 |
dribbble | dribbble | fa-brands | f17d |
drivers-license | id-card | fa-solid | f2c2 |
drivers-license-o | id-card | fa-regular | f2c2 |
dropbox | dropbox | fa-brands | f16b |
drupal | drupal | fa-brands | f1a9 |
edge | edge | fa-brands | f282 |
eercast | sellcast | fa-brands | f2da |
empire | empire | fa-brands | f1d1 |
envelope-o | envelope | fa-regular | f0e0 |
envelope-open-o | envelope-open | fa-regular | f2b6 |
envira | envira | fa-brands | f299 |
etsy | etsy | fa-brands | f2d7 |
eur | euro-sign | fa-solid | f153 |
euro | euro-sign | fa-solid | f153 |
exchange | exchange-alt | fa-solid | f362 |
expeditedssl | expeditedssl | fa-brands | f23e |
external-link | external-link-alt | fa-solid | f35d |
external-link-square | external-link-square-alt | fa-solid | f360 |
eye | eye | fa-regular | f06e |
eye-slash | eye-slash | fa-regular | f070 |
eyedropper | eye-dropper | fa-solid | f1fb |
fa | font-awesome | fa-brands | f2b4 |
facebook-f | fa-brands | f39e | |
facebook-f | facebook-f | fa-brands | f39e |
facebook-official | fa-brands | f09a | |
facebook-square | facebook-square | fa-brands | f082 |
feed | rss | fa-solid | f09e |
file-archive-o | file-archive | fa-regular | f1c6 |
file-audio-o | file-audio | fa-regular | f1c7 |
file-code-o | file-code | fa-regular | f1c9 |
file-excel-o | file-excel | fa-regular | f1c3 |
file-image-o | file-image | fa-regular | f1c5 |
file-movie-o | file-video | fa-regular | f1c8 |
file-o | file | fa-regular | f15b |
file-pdf-o | file-pdf | fa-regular | f1c1 |
file-photo-o | file-image | fa-regular | f1c5 |
file-picture-o | file-image | fa-regular | f1c5 |
file-powerpoint-o | file-powerpoint | fa-regular | f1c4 |
file-sound-o | file-audio | fa-regular | f1c7 |
file-text | file-alt | fa-solid | f15c |
file-text-o | file-alt | fa-regular | f15c |
file-video-o | file-video | fa-regular | f1c8 |
file-word-o | file-word | fa-regular | f1c2 |
file-zip-o | file-archive | fa-regular | f1c6 |
files-o | copy | fa-regular | f0c5 |
firefox | firefox | fa-brands | f269 |
first-order | first-order | fa-brands | f2b0 |
flag-o | flag | fa-regular | f024 |
flash | bolt | fa-solid | f0e7 |
flickr | flickr | fa-brands | f16e |
floppy-o | save | fa-regular | f0c7 |
folder-o | folder | fa-regular | f07b |
folder-open-o | folder-open | fa-regular | f07c |
font-awesome | font-awesome | fa-brands | f2b4 |
fonticons | fonticons | fa-brands | f280 |
fort-awesome | fort-awesome | fa-brands | f286 |
forumbee | forumbee | fa-brands | f211 |
foursquare | foursquare | fa-brands | f180 |
free-code-camp | free-code-camp | fa-brands | f2c5 |
frown-o | frown | fa-regular | f119 |
futbol-o | futbol | fa-regular | f1e3 |
gbp | pound-sign | fa-solid | f154 |
ge | empire | fa-brands | f1d1 |
gear | cog | fa-solid | f013 |
gears | cogs | fa-solid | f085 |
get-pocket | get-pocket | fa-brands | f265 |
gg | gg | fa-brands | f260 |
gg-circle | gg-circle | fa-brands | f261 |
git | git | fa-brands | f1d3 |
git-square | git-square | fa-brands | f1d2 |
github | github | fa-brands | f09b |
github-alt | github-alt | fa-brands | f113 |
github-square | github-square | fa-brands | f092 |
gitlab | gitlab | fa-brands | f296 |
gittip | gratipay | fa-brands | f184 |
glass | glass-martini | fa-solid | f000 |
glide | glide | fa-brands | f2a5 |
glide-g | glide-g | fa-brands | f2a6 |
fa-brands | f1a0 | ||
google-plus | google-plus-g | fa-brands | f0d5 |
google-plus-circle | google-plus | fa-brands | f2b3 |
google-plus-official | google-plus | fa-brands | f2b3 |
google-plus-square | google-plus-square | fa-brands | f0d4 |
google-wallet | google-wallet | fa-brands | f1ee |
gratipay | gratipay | fa-brands | f184 |
grav | grav | fa-brands | f2d6 |
group | users | fa-solid | f0c0 |
hacker-news | hacker-news | fa-brands | f1d4 |
hand-grab-o | hand-rock | fa-regular | f255 |
hand-lizard-o | hand-lizard | fa-regular | f258 |
hand-o-down | hand-point-down | fa-regular | f0a7 |
hand-o-left | hand-point-left | fa-regular | f0a5 |
hand-o-right | hand-point-right | fa-regular | f0a4 |
hand-o-up | hand-point-up | fa-regular | f0a6 |
hand-paper-o | hand-paper | fa-regular | f256 |
hand-peace-o | hand-peace | fa-regular | f25b |
hand-pointer-o | hand-pointer | fa-regular | f25a |
hand-rock-o | hand-rock | fa-regular | f255 |
hand-scissors-o | hand-scissors | fa-regular | f257 |
hand-spock-o | hand-spock | fa-regular | f259 |
hand-stop-o | hand-paper | fa-regular | f256 |
handshake-o | handshake | fa-regular | f2b5 |
hard-of-hearing | deaf | fa-solid | f2a4 |
hdd-o | hdd | fa-regular | f0a0 |
header | heading | fa-solid | f1dc |
heart-o | heart | fa-regular | f004 |
hospital-o | hospital | fa-regular | f0f8 |
hotel | bed | fa-solid | f236 |
hourglass-1 | hourglass-start | fa-solid | f251 |
hourglass-2 | hourglass-half | fa-solid | f252 |
hourglass-3 | hourglass-end | fa-solid | f253 |
hourglass-o | hourglass | fa-regular | f254 |
houzz | houzz | fa-brands | f27c |
html5 | html5 | fa-brands | f13b |
id-badge | id-badge | fa-regular | f2c1 |
id-card-o | id-card | fa-regular | f2c2 |
ils | shekel-sign | fa-solid | f20b |
image | image | fa-regular | f03e |
imdb | imdb | fa-brands | f2d8 |
inr | rupee-sign | fa-solid | f156 |
fa-brands | f16d | ||
institution | university | fa-solid | f19c |
internet-explorer | internet-explorer | fa-brands | f26b |
intersex | transgender | fa-solid | f224 |
ioxhost | ioxhost | fa-brands | f208 |
joomla | joomla | fa-brands | f1aa |
jpy | yen-sign | fa-solid | f157 |
jsfiddle | jsfiddle | fa-brands | f1cc |
keyboard-o | keyboard | fa-regular | f11c |
krw | won-sign | fa-solid | f159 |
lastfm | lastfm | fa-brands | f202 |
lastfm-square | lastfm-square | fa-brands | f203 |
leanpub | leanpub | fa-brands | f212 |
legal | gavel | fa-solid | f0e3 |
lemon-o | lemon | fa-regular | f094 |
level-down | level-down-alt | fa-solid | f3be |
level-up | level-up-alt | fa-solid | f3bf |
life-bouy | life-ring | fa-regular | f1cd |
life-buoy | life-ring | fa-regular | f1cd |
life-ring | life-ring | fa-regular | f1cd |
life-saver | life-ring | fa-regular | f1cd |
lightbulb-o | lightbulb | fa-regular | f0eb |
line-chart | chart-line | fa-solid | f201 |
linkedin-in | fa-brands | f0e1 | |
linkedin-square | fa-brands | f08c | |
linode | linode | fa-brands | f2b8 |
linux | linux | fa-brands | f17c |
list-alt | list-alt | fa-regular | f022 |
long-arrow-down | long-arrow-alt-down | fa-solid | f309 |
long-arrow-left | long-arrow-alt-left | fa-solid | f30a |
long-arrow-right | long-arrow-alt-right | fa-solid | f30b |
long-arrow-up | long-arrow-alt-up | fa-solid | f30c |
mail-forward | share | fa-solid | f064 |
mail-reply | reply | fa-solid | f3e5 |
mail-reply-all | reply-all | fa-solid | f122 |
map-marker | map-marker-alt | fa-solid | f3c5 |
map-o | map | fa-regular | f279 |
maxcdn | maxcdn | fa-brands | f136 |
meanpath | font-awesome | fa-brands | f2b4 |
medium | medium | fa-brands | f23a |
meetup | meetup | fa-brands | f2e0 |
meh-o | meh | fa-regular | f11a |
minus-square-o | minus-square | fa-regular | f146 |
mixcloud | mixcloud | fa-brands | f289 |
mobile | mobile-alt | fa-solid | f3cd |
mobile-phone | mobile-alt | fa-solid | f3cd |
modx | modx | fa-brands | f285 |
money | money-bill-alt | fa-regular | f3d1 |
moon-o | moon | fa-regular | f186 |
mortar-board | graduation-cap | fa-solid | f19d |
navicon | bars | fa-solid | f0c9 |
newspaper-o | newspaper | fa-regular | f1ea |
object-group | object-group | fa-regular | f247 |
object-ungroup | object-ungroup | fa-regular | f248 |
odnoklassniki | odnoklassniki | fa-brands | f263 |
odnoklassniki-square | odnoklassniki-square | fa-brands | f264 |
opencart | opencart | fa-brands | f23d |
openid | openid | fa-brands | f19b |
opera | opera | fa-brands | f26a |
optin-monster | optin-monster | fa-brands | f23c |
pagelines | pagelines | fa-brands | f18c |
paper-plane-o | paper-plane | fa-regular | f1d8 |
paste | clipboard | fa-regular | f328 |
pause-circle-o | pause-circle | fa-regular | f28b |
paypal | paypal | fa-brands | f1ed |
pencil | pencil-alt | fa-solid | f303 |
pencil-square | pen-square | fa-solid | f14b |
pencil-square-o | edit | fa-regular | f044 |
photo | image | fa-regular | f03e |
picture-o | image | fa-regular | f03e |
pie-chart | chart-pie | fa-solid | f200 |
pied-piper | pied-piper | fa-brands | f2ae |
pied-piper-alt | pied-piper-alt | fa-brands | f1a8 |
pied-piper-pp | pied-piper-pp | fa-brands | f1a7 |
fa-brands | f0d2 | ||
pinterest-p | pinterest-p | fa-brands | f231 |
pinterest-square | pinterest-square | fa-brands | f0d3 |
play-circle-o | play-circle | fa-regular | f144 |
plus-square-o | plus-square | fa-regular | f0fe |
product-hunt | product-hunt | fa-brands | f288 |
fa-brands | f1d6 | ||
question-circle-o | question-circle | fa-regular | f059 |
quora | quora | fa-brands | f2c4 |
ra | rebel | fa-brands | f1d0 |
ravelry | ravelry | fa-brands | f2d9 |
rebel | rebel | fa-brands | f1d0 |
fa-brands | f1a1 | ||
reddit-alien | reddit-alien | fa-brands | f281 |
reddit-square | reddit-square | fa-brands | f1a2 |
refresh | sync | fa-solid | f021 |
registered | registered | fa-regular | f25d |
remove | times | fa-solid | f00d |
renren | renren | fa-brands | f18b |
reorder | bars | fa-solid | f0c9 |
repeat | redo | fa-solid | f01e |
resistance | rebel | fa-brands | f1d0 |
rmb | yen-sign | fa-solid | f157 |
rotate-left | undo | fa-solid | f0e2 |
rotate-right | redo | fa-solid | f01e |
rouble | ruble-sign | fa-solid | f158 |
rub | ruble-sign | fa-solid | f158 |
ruble | ruble-sign | fa-solid | f158 |
rupee | rupee-sign | fa-solid | f156 |
s15 | bath | fa-solid | f2cd |
safa-regulari | safa-regulari | fa-brands | f267 |
scissors | cut | fa-solid | f0c4 |
scribd | scribd | fa-brands | f28a |
sellsy | sellsy | fa-brands | f213 |
send | paper-plane | fa-solid | f1d8 |
send-o | paper-plane | fa-regular | f1d8 |
share-square-o | share-square | fa-regular | f14d |
shekel | shekel-sign | fa-solid | f20b |
sheqel | shekel-sign | fa-solid | f20b |
shield | shield-alt | fa-solid | f3ed |
shirtsinbulk | shirtsinbulk | fa-brands | f214 |
sign-in | sign-in-alt | fa-solid | f2f6 |
sign-out | sign-out-alt | fa-solid | f2f5 |
signing | sign-language | fa-solid | f2a7 |
simplybuilt | simplybuilt | fa-brands | f215 |
skyatlas | skyatlas | fa-brands | f216 |
skype | skype | fa-brands | f17e |
slack | slack | fa-brands | f198 |
sliders | sliders-h | fa-solid | f1de |
slideshare | slideshare | fa-brands | f1e7 |
smile-o | smile | fa-regular | f118 |
snapchat | snapchat | fa-brands | f2ab |
snapchat-ghost | snapchat-ghost | fa-brands | f2ac |
snapchat-square | snapchat-square | fa-brands | f2ad |
snowflake-o | snowflake | fa-regular | f2dc |
soccer-ball-o | futbol | fa-regular | f1e3 |
sort-alpha-asc | sort-alpha-down | fa-solid | f15d |
sort-alpha-desc | sort-alpha-up | fa-solid | f15e |
sort-amount-asc | sort-amount-down | fa-solid | f160 |
sort-amount-desc | sort-amount-up | fa-solid | f161 |
sort-asc | sort-up | fa-solid | f0de |
sort-desc | sort-down | fa-solid | f0dd |
sort-numeric-asc | sort-numeric-down | fa-solid | f162 |
sort-numeric-desc | sort-numeric-up | fa-solid | f163 |
soundcloud | soundcloud | fa-brands | f1be |
spoon | utensil-spoon | fa-solid | f2e5 |
spotify | spotify | fa-brands | f1bc |
square-o | square | fa-regular | f0c8 |
stack-exchange | stack-exchange | fa-brands | f18d |
stack-overflow | stack-overflow | fa-brands | f16c |
star-half-empty | star-half | fa-regular | f089 |
star-half-full | star-half | fa-regular | f089 |
star-half-o | star-half | fa-regular | f089 |
star-o | star | fa-regular | f005 |
steam | steam | fa-brands | f1b6 |
steam-square | steam-square | fa-brands | f1b7 |
sticky-note-o | sticky-note | fa-regular | f249 |
stop-circle-o | stop-circle | fa-regular | f28d |
stumbleupon | stumbleupon | fa-brands | f1a4 |
stumbleupon-circle | stumbleupon-circle | fa-brands | f1a3 |
sun-o | sun | fa-regular | f185 |
superpowers | superpowers | fa-brands | f2dd |
support | life-ring | fa-regular | f1cd |
tablet | tablet-alt | fa-solid | f3fa |
tachometer | tachometer-alt | fa-solid | f3fd |
telegram | telegram | fa-brands | f2c6 |
television | tv | fa-solid | f26c |
tencent-weibo | tencent-weibo | fa-brands | f1d5 |
themeisle | themeisle | fa-brands | f2b2 |
thermometer | thermometer-full | fa-solid | f2c7 |
thermometer-0 | thermometer-empty | fa-solid | f2cb |
thermometer-1 | thermometer-quarter | fa-solid | f2ca |
thermometer-2 | thermometer-half | fa-solid | f2c9 |
thermometer-3 | thermometer-three-quarters | fa-solid | f2c8 |
thermometer-4 | thermometer-full | fa-solid | f2c7 |
thumb-tack | thumbtack | fa-solid | f08d |
thumbs-o-down | thumbs-down | fa-regular | f165 |
thumbs-o-up | thumbs-up | fa-regular | f164 |
ticket | ticket-alt | fa-solid | f3ff |
times-circle-o | times-circle | fa-regular | f057 |
times-rectangle | window-close | fa-solid | f410 |
times-rectangle-o | window-close | fa-regular | f410 |
toggle-down | caret-square-down | fa-regular | f150 |
toggle-left | caret-square-left | fa-regular | f191 |
toggle-right | caret-square-right | fa-regular | f152 |
toggle-up | caret-square-up | fa-regular | f151 |
trash | trash-alt | fa-solid | f2ed |
trash-o | trash-alt | fa-regular | f2ed |
trello | trello | fa-brands | f181 |
tripadvisor | tripadvisor | fa-brands | f262 |
try | lira-sign | fa-solid | f195 |
tumblr | tumblr | fa-brands | f173 |
tumblr-square | tumblr-square | fa-brands | f174 |
turkish-lira | lira-sign | fa-solid | f195 |
twitch | twitch | fa-brands | f1e8 |
fa-brands | f099 | ||
twitter-square | twitter-square | fa-brands | f081 |
unsorted | sort | fa-solid | f0dc |
usb | usb | fa-brands | f287 |
usd | dollar-sign | fa-solid | f155 |
user-circle-o | user-circle | fa-regular | f2bd |
user-o | user | fa-regular | f007 |
vcard | address-card | fa-solid | f2bb |
vcard-o | address-card | fa-regular | f2bb |
viacoin | viacoin | fa-brands | f237 |
viadeo | viadeo | fa-brands | f2a9 |
viadeo-square | viadeo-square | fa-brands | f2aa |
video-camera | video | fa-solid | f03d |
vimeo | vimeo-v | fa-brands | f27d |
vimeo-square | vimeo-square | fa-brands | f194 |
vine | vine | fa-brands | f1ca |
vk | vk | fa-brands | f189 |
volume-control-phone | phone-volume | fa-solid | f2a0 |
warning | exclamation-triangle | fa-solid | f071 |
weixin | fa-brands | f1d7 | |
fa-brands | f18a | ||
weixin | weixin | fa-brands | f1d7 |
fa-brands | f232 | ||
wheelchair-alt | accessible-icon | fa-brands | f368 |
wikipedia-w | wikipedia-w | fa-brands | f266 |
window-close-o | window-close | fa-regular | f410 |
window-maximize | window-maximize | fa-regular | f2d0 |
window-restore | window-restore | fa-regular | f2d2 |
windows | windows | fa-brands | f17a |
won | won-sign | fa-solid | f159 |
wordpress | wordpress | fa-brands | f19a |
wpbeginner | wpbeginner | fa-brands | f297 |
wpexplorer | wpexplorer | fa-brands | f2de |
wpforms | wpforms | fa-brands | f298 |
fa-brands | f168 | ||
xing-square | xing-square | fa-brands | f169 |
y-combinator | y-combinator | fa-brands | f23b |
y-combinator-square | hacker-news | fa-brands | f1d4 |
yahoo | yahoo | fa-brands | f19e |
yc | y-combinator | fa-brands | f23b |
yc-square | hacker-news | fa-brands | f1d4 |
yelp | yelp | fa-brands | f1e9 |
yen | yen-sign | fa-solid | f157 |
yoast | yoast | fa-brands | f2b1 |
youtube | youtube | fa-brands | f167 |
youtube-play | youtube | fa-brands | f167 |
youtube-square | youtube-square | fa-brands | f431 |
Running into trouble? Check out our troubleshooting guide for answers to common questions about using Font Awesome on the web. All set? Then check out and enjoy all of the new icons added to version 6.