当我在 Firefox 或 inkscape 中使用 webdings 字体时出现问题

当我在 Firefox 或 inkscape 中使用 webdings 字体时出现问题

webdings font在我的电脑上安装了它,它与LibreOffice.
但是当我webdings font在本地 html 页面中使用 时:它不起作用,显示以下 unicode 字符而不是所需的字符
但是,如果我将本地网页导出为 PDF(使用该wkhtmltopdf工具),我会在 PDF 中获得所需的字符。
所以我不明白为什么它在我的本地网页上不起作用(我尝试使用firefoxchromium)。如果有人有想法?

我也尝试过,inkscape但无法在其中展现我的性格。

一些代码来澄清它:

/* the font in my css file */
@font-face {
    font-family:'webdings';
    font-weight: normal;
    font-style: normal;
    src: local('Webdings'), url('webdings.ttf') format('truetype'); }

.icone { font-family: webdings; }

<!-- my special character : it should be th earth -->
<td class="icone">&#xF0FC</td>

相关内容