将unicode形式的字符添加到HTML / CSS的语法是什么?

时间:2014-10-16 15:54:06

标签: html css unicode

我知道可以使用unicode添加符号;我之前见过它,但不记得怎么做了。我需要将列表项列为此列表http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references中的 raquo 字符。它的unicode点是 U + 00BB(187)

这是一个简单的小提琴,提供了我的问题情景:http://jsfiddle.net/3wh6997q/

HTML:

<ul>
    <li>
        <a> Item 1</a>
    </li> 
    <li>
        <a> Item 2</a>
    </li>
    <li>
        <a> Item 3</a>
    </li> 
</ul>

CSS:

ul
{
    list-style: none;
}

ul > li > a:before
{
    content: ">>"; /* Actually I want the content to be the raquo character */
}

1 个答案:

答案 0 :(得分:2)

ul > li > a:before
{
    content: "\00BB"; 
}

您需要十六进制值。

这里有资源列表:http://www.ascii.cl/htmlcodes.htm