Font Awesome unicode“\f046”在 Chrome 中不显示

Nir*_*wan 1 html css font-awesome

我正在尝试在我的网页上使用 Font Awesome Unicode ( https://fontawesome.com/v4.7.0/icon/check-square-o )。

但它显示如下。

在此输入图像描述

我花了很多时间在互联网上搜索 Unicode 在 Chrome 中不显示的原因。但仍然没有运气。

.myClass {
  font-size: 45px;
}

.myClass::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f046";
}
Run Code Online (Sandbox Code Playgroud)
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css">
<span class='myClass'>Hiiii</span>
Run Code Online (Sandbox Code Playgroud)

Ema*_*oli 5

如本页所述,您要搜索的图标是\f14a

https://fontawesome.com/icons/check-square?style=regular

它说:

This icon replaces Font Awesome 4's fa-check-square-o

请注意,您共享的链接适用于 Font Awesome 4,但在 HTML 中您使用的是版本 5。