为什么“Hearts”的 Unicode 字符是“Hearts”? HTML 符号失败
根据我的理解,以下 HTML 标记应该显示一个心形符号,但事实并非如此。我缺少什么? 我在这里获取了有关 Unicode 字符的数据: http://en.wikipedia.org/wiki/Html_special_characters#Character_entity_references_in_HTML
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Hearts</title>
</head>
<body>
੩
</body>
</html>
According to my understanding the following HTML markup should display a heart symbol, but it is not. What I am missing?
I got the data about Unicode characters here:
http://en.wikipedia.org/wiki/Html_special_characters#Character_entity_references_in_HTML
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Hearts</title>
</head>
<body>
੩
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
XML/HTML
&#NNNN;
表示法适用于十进制值。尝试使用&#xNNNN;
形式强制将其解释为十六进制,或者使用十进制值。The XML/HTML
&#NNNN;
notation is for decimal values. Try using the&#xNNNN;
form to force it to interpret it as hexadecimal, or, alternatively, use the decimal value.编码实体:
输出:
♥ ♥ ♥
♡ ❤ ❥
请注意必需的
x
。没有
x
:<代码> ੩
੩
Encoded entities:
Output:
♥ ♥ ♥
♡ ❤ ❥
Note the
x
required.Without the
x
: ੩
੩
适用于 FireFox/Chrome/IE。看起来您忘记了代码中的“x”位。
Works in FireFox/Chrome/IE. Looks like you forgot the "x" bit in your code.