74

I'm using (the excellent) Font-Awesome in my site, and it's working fine, if I use it this way:

<i class="icon-home"></i>

But (for some reasons) I want to use it in the Unicode way, like:

<i>&#xf015;</i>

(Font Awesome's cheatsheet)

But it doesn't work - the browser shows a square instead.

How do I solve this? The CSS path is correct (as the first way of using Font Awesome works).

Edit: I do have the FontAwesome.otf installed.

matan129
  • 1,508
  • 2
  • 20
  • 33

16 Answers16

89

I got a similar problem using unicode and fontawesome. When I wrote:

font-family: 'Font Awesome\ 5 Free';
content: "\f061"; /* FontAwesome Unicode */

On Google Chrome, a square appears instead of the icon. The new version of Font Awesome also requires

font-weight: 900;

That works for me.

From: https://github.com/FortAwesome/Font-Awesome/issues/11946

starball
  • 20,030
  • 7
  • 43
  • 238
Basile
  • 1,103
  • 10
  • 16
  • 6
    Yep, font-weight is required now. Thanks. – etech Sep 19 '18 at 18:21
  • 6
    This saved me. I was missing the font-weight. Thanks Basile! – cbloss793 Jan 30 '19 at 22:17
  • Font Awesome 5 Now requires font-weight:900 for solid – ottz0 Jan 10 '20 at 00:24
  • That did the trick! thanks a lot! Really bizarre that some work without and some require the weight.... – AlphaX Oct 24 '20 at 18:20
  • None of the another changes was not proper for me because I wanted to use it for the `placeholder`. I have had tired to try different changes and only `font-family: 'Font Awesome\ 5 Free'` and `font-weight: 600` changes are really worked! +1 By the way, you should override the other rules with `!important` if you want to use in all inputs. – gurkan Jun 19 '21 at 11:08
69

It does not work, because <i>&#xf015;</i> simply asks the browser to display the Private Use code point U+F015 using an italic typeface. The Font Awesome CSS code has nothing that would affect this. If you add class=icon-home to the tag, you will get the glyph assigned to U+F015 in the FontAwesome font, but you will get it twice, due to the way the Font Awesome trickery works.

To get the glyph just once, you need to use CSS that asks for the use of the FontAwesome font without triggering the rules that add a glyph via generated content. A simple trick is to use a class name that starts with icon- but does not match any of the predefined names in Font Awesome or any name otherwise used in your CSS or JavaScript code. E.g.,

<i class=icon-foo>&#xf015;</i>

Alternatively, use CSS code that sets font-family: FontAwesome and font-style: normal on the i element.

PS. Note that Private Use code points such as U+F015 have, by definition, no interoperable meaning. Consequently, when style sheets are disabled, &#xf015; will not be displayed as any character; the browser will use its way of communicating the presence of undefined data, such as a small box, possibly containing the code point number.

Jukka K. Korpela
  • 195,524
  • 37
  • 270
  • 390
  • 4
    +1 for the PS. The whole idea of symbol fonts like FontAwesome is, in my opinion, alien to the intended design of Unicode and the Web, and generally harmful. – bobince Jun 23 '13 at 12:59
  • +1. Does the use of unicode impact performances ? I feel like it could since it wouldn't need to use the pseudo element :before and define the content. – Ced Nov 25 '15 at 02:27
  • 8
    With FontAwesome 5, I found that `font-family: FontAwesome;` no longer works. I had to use `font-family: Font Awesome\ 5 Free;` instead. – Tom Warner Dec 12 '17 at 00:11
  • 3
    @TomWarner's comment is super helpful. that's the correct way of setting the `font-family`. note - it may also be necessary to set the `font-weight` to something other than normal. in my case I needed to set it to bold for the icon to appear. – aberkow Apr 11 '18 at 19:40
  • 1
    @aberkow Thank you for the font-weight tip. I can confirm that it works now. – Jan Zavrel Sep 14 '20 at 11:50
43

You must use the fa class:

<i class="fa">
   &#xf000;
</i>

<i class="fa fa-2x">
   &#xf000;
</i>
Williem
  • 1,131
  • 1
  • 12
  • 19
Behrang
  • 46,888
  • 25
  • 118
  • 160
26

For those who may stumble across this post, you need to set

font-family: FontAwesome; 

as a property in your CSS selector and then unicode will work fine in CSS

Uwe Keim
  • 39,551
  • 56
  • 175
  • 291
donnelj
  • 261
  • 3
  • 3
8

I have found that in Font-Awesome version 5 (free), you have you add: "font-family: Font Awesome\ 5 Free;" only then it seems to be working properly.

This has worked for me :)

I hope some finds this helpful

Bmuzammil
  • 81
  • 1
  • 1
  • Thank you! I checked the Font Awesome CSS and this seemed to be the answer, but there's multiple variants (depending on if a pro license has been bought). This solved the mystery for me. – TomJ Aug 24 '18 at 22:59
5

Be sure to load the FontAwesome style before yours.

font-family: "Font Awesome 5 Free";
font-weight: 400;
content: "\f007";

You can find FontAwesome's explainations here: https://fontawesome.com/how-to-use/on-the-web/advanced/css-pseudo-elements

Yoann Carrer
  • 67
  • 1
  • 4
5

There are three different font families that I know of that you can choose from and each has its own weight element that needs to be applied:

First

font-family: 'Font Awesome 5 Brands'; content: "\f373";

Second

font-family: 'Font Awesome 5 Free'; content: "\f061"; font-weight: 900;

Third

font-family: 'Font Awesome 5 Pro';

Reference here - https://fontawesome.com/how-to-use/on-the-web/advanced/css-pseudo-elements

Hope this helps.

Abhishek R
  • 4,087
  • 1
  • 17
  • 21
2

I found that this worked

content: "\f2d7" !important;
font-family: FontAwesome !important;

It didn't seem to work without the !important for me.

Here's a tutorial on how to change social icons with Unicodes https://www.youtube.com/watch?v=-jgDs2agkE0&feature=youtu.be

2

Bear in mind that you may need to include a version number too as you could be using either:

font-family: 'Font Awesome 5 Pro';

or

font-family: 'Font Awesome 5 Free';
omarjebari
  • 4,861
  • 3
  • 34
  • 32
2

In latest 5.13 there's a difference. You do like always...

font-family: "Font Awesome 5 Free";
content: "\f107";

But there's a difference now... Instead of use font-weight: 500; You are following this:

font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f107";

Why is that? I figure out by finding in in .fas class, so you can figure out an updated way by looking into .fas class so you're doing the same as it has to be. Figure out if there's a font-weight and font-family. Here you go guys. That's an update answer for 5.13.

1

After reading the answer of davidhund on this page I came up with a solution that your web font isn't loaded correctly that me be a issue of wrong paths.

Here is what he said:

My first guess is that you include the FontAwesome webfont from a different (sub-)domain. So make sure you set the correct headers on those webfont-files: "you'll need to add the Access-Control-Allow-Origin header, whitelisting the domain you're pulling the asset from." https://github.com/h5bp/html5boilerplate.com/blob/master/src/.htaccess#L78-86

And also look at the font-gotchas :)

Hope I am clear and helped you :)

On the same page, f135ta said:

...I fixed the issue by uploading the file "fontawesome-webfont.ttf" to my webserver and installing it like a regular font.. I dont know if its part of the pre-req's for using it anyway, but it works for me ;-

Mohammad Areeb Siddiqui
  • 9,795
  • 14
  • 71
  • 113
1

You can also use the FontAwesome icon with the CSS3 pseudo selector as shown below. enter image description here

Ensure to set the font-family to FontAwesome as shown below:

table.dataTable thead th.sorting:after {font-family: FontAwesome;}

To get the above working, you must do the following:

  1. Download the FontAwesome css library here FontAwesome v4.7.0
  2. Extract from the zip file and include into your app root folder, the two folders as shown below: enter image description here
  3. Reference only the css folder in the <head></head> section of your app as shown below: enter image description here
Frederick Eze
  • 121
  • 1
  • 12
1

For those who are using Font Awesome version 4.7,

css_selector::before{
content:"\f006";
font-family:"fontawesome";
font-weight:900;
}
1

Add font weight 900..its working for me

font-weight: 900;
sweetnandha cse
  • 705
  • 7
  • 16
0

Just to add on Jukka K. Korpela answer above, font awesome already defined a css selector "fa". You can simply do <i class="fa">&#xf015;</i> . The catch here is, fa defines the font-style:normal, if you need italic, you can override like <i class="fa" style="font-style:italic">&#xf015;</i>

kali sharma
  • 311
  • 2
  • 2
0

By using css you can add your icon via Unicode

content: '\f144';
font-family: FontAwesome;

This will work

MD SHAYON
  • 7,001
  • 45
  • 38