我有一个来自Material Icons Google Fonts 的Place 图标,它是使用before
伪选择器和代码点呈现的e55f
。
有没有办法可以使用代码点来使用概述的版本?
<link rel="preload" href="https://fonts.googleapis.com/icon?family=Material+Icons" as="style">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" as="style" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<div class="place"></div>
<style>
.place::before {
content: "\e55f";
font-family: 'Material Icons';
}
</style>