The code points used in icon font tricks are usually personal use codes, which means that they do not have a generally accepted meaning and should not be used in an open exchange of information only by private agreement between interested parties. However, private-use code points can be represented as any other Unicode value, for example. in CSS using notations like \f066 , as others have answered. You can even enter a code point as such if your document is encoded in UTF-8, and you know how to enter an arbitrary Unicode value by its number in your development environment (but, of course, it is usually displayed using a character for an unknown character) .
However, this is not a common way to use icons. Typically, you use a CSS file with a font and use constructs such as <span class="icon-resize-small">foo</span> . Then the CSS code will take care of inserting the character at the beginning of the element, and you do not need to know the code point number.
Jukka K. Korpela Jan 12 '13 at 18:40 2013-01-12 18:40
source share