Forum How do I...?

How do I display wingdings!

joemamba4
I have tried to display wingdings, but have not had any success. I need to display the star wingding that display's just fine in html:

<div style='font-family:Wingdings;'>& #0171;</div>

Can somebody give me an example. It just shows up in prince as two small less than signs. «
mikeday
That's because & #0171; (or &#xAB;) is the Unicode character for "LEFT-POINTING DOUBLE ANGLE QUOTATION MARK", which the Wingdings font does not support, and Prince follows the Unicode specification. To access arbitrary glyphs from the Wingdings font you can use Unicode characters in the private use area; for example to access the star try using &#xF0AB.
joemamba4
Cool :D that worked! Thanks for the quick response!