I use my own font icon using CSS3 @ font-face and in the old version of Google Chrome, only Unicode shows and does not replace or does not appear in my regular font, which displays glyphs for these Unicode.
Here is the @ font-face syntax I'm using:
@font-face{ font-family:'glyphs'; src:url('../fonts/glyphs.eot'); src:url('../fonts/glyphs.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphs.svg#glyphs') format('svg'), url('../fonts/glyphs.woff') format('woff'), url('../fonts/glyphs.ttf') format('truetype'); font-weight: normal; font-style: normal; }
Any idea why Unicode is displayed, and not characters that are part of a font-character?
source share