How to find out HTML Code of a certain Font Glyph?

282 views Asked by At

I am searching for a way to find a certain font glyph. I am using DinPro, which has two different "at" Symbols. As the standard symbol is not the one I want to use, I am searching for the html code to get the second one. Any chance to find that?

1

There are 1 answers

0
Andi On BEST ANSWER

As it was an OpenType Alternate i've found a solution that will work in modern browsers:

-moz-font-feature-settings: "ss01=1";
-ms-font-feature-settings: "ss01";
-webkit-font-feature-settings: "ss01";
-o-font-feature-settings: "ss01";
font-feature-settings: "ss01";

Older browsers will still show the other symbol, which is enough for me.