为什么“Hearts”的 Unicode 字符是“Hearts”? HTML 符号失败

发布于 2024-12-01 01:27:27 字数 694 浏览 0 评论 0原文

根据我的理解,以下 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>
&#2665;
</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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

溺深海 2024-12-08 01:27:27

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.

怕倦 2024-12-08 01:27:27

编码实体:

♥ ♥ ♥
♡ ❤ ❥

输出:

♥ ♥ ♥
♡ ❤ ❥

请注意必需的 x

没有x
<代码>੥ ੩
੥੩

Encoded entities:

♥ ♥ ♥
♡ ❤ ❥

Output:

♥ ♥ ♥
♡ ❤ ❥

Note the x required.

Without the x:
੥ ੩
੥ ੩

梦纸 2024-12-08 01:27:27
<?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>

适用于 FireFox/Chrome/IE。看起来您忘记了代码中的“x”位。

<?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>

Works in FireFox/Chrome/IE. Looks like you forgot the "x" bit in your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文