During project testing, the word © turned light blue on the Android page, and I tried many methods but it still didn't work.
淡淡烟草味2017-06-26 10:59:43
You can try pseudo elements
'00A9' is the code of ©, you can set the color, font size, etc.
.copyright:before{
content: 'rrreeeA9';
color: red;
font-sieze: 16px;
}