Reputation: 22931
I am working with a theme which uses a custom built set of icons which are loaded as a font. If I download the font I can load it in my font manager and see all the icons, but how to determine which escape sequence to use in my css to render a particular icon? Is there a utility or some way to translate icons to their relative escape codes?
Upvotes: 0
Views: 215
Reputation: 22931
Thought I would add an answer here for Mac users since Lance's suggestion led me to a solution that works on OS X.
Make sure you have Character Viewer enabled in the menubar. (Open System Preferences > Keyboard, and tick "Show Keyboard & Character Viewers in menu bar")
Now open the font file in Font Book, copy the character in font book preview and then paste it into the character viewer search box. This will return a message like "PRIVATE USE AREA-E059" which is the escape code you need to use in your CSS.
Upvotes: 0
Reputation: 3932
For Windows:
Start -> All Programs -> Accessories -> System Tools -> Character Map
Select the font, the select the character. The character code will be shown in the status bar at the bottom.
Upvotes: 1