伪元素的使用

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
   .phoneNumber::before {
    content:'2614';
    font-size: 15px;
    color:red;

    </style>
</head>
<body>
<p class="phoneNumber">12345645654</p>
</body>
</html>

unicode 编码可以当做图形来使用

原文地址:https://www.cnblogs.com/agansj/p/8344070.html