HTML 中的无穷大符号
如何使用 HTML 显示无穷大符号(如图所示)?
How can I display an infinity symbol (like the one in the picture) using HTML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 HTML 显示无穷大符号(如图所示)?
How can I display an infinity symbol (like the one in the picture) using HTML?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(9)
使用 HTML 实体
∞
或∞
。Use the HTML entity
∞
or∞
.您可以使用以下内容:
∞
(如果您使用的编码可以对其进行编码 - 例如 UTF-8 可以)∞
(十进制),∞
(十六进制)∞
但是否正确显示还取决于文本显示的字体。
You can use the following:
∞
(if the encoding you use can encode it — UTF-8 can, for example)∞
(decimal),∞
(hexadecimal)∞
But whether it is displayed correctly does also depend on the font the text is displayed with.
∞
如果您使用现代编码(例如 UTF-8),则不需要 HTML 实体。如果您还没有,那么您可能应该这样做。
∞
This does not require a HTML entity if you are using a modern encoding (such as UTF-8). And if you're not already, you probably should be.
来自维基百科:
From Wikipedia:
根据 XML 和 HTML 字符实体引用列表:
使用您原始问题的 Google 搜索会得到几个有用的结果:
如何使用 HTML 显示无穷大符号。
According to List of XML and HTML character entity references:
The Google search using your original question gets several useful results:
How can I display an infinity symbol using HTML.
∞
∞
∞
∞
根据此页面,
∞
。According to this page, it's
∞
.就像ЯegDwight所说,你可以使用HTML实体
&infin
;或∞
。获取这些代码的一个简单来源是查看此实体列表。你也可以在 CSS 中使用它们,这正是我一直在寻找的,就像 font-awesome 一样。一个简单的基于 CSS 的解决方案是这样的:
Like ЯegDwight said, you can use the HTML entity
&infin
; or∞
. A easy source of getting these codes, is to look at this entity list.You can also use them in CSS, which was what I was looking for, just like font-awesome does. A simple CSS based solution would be to have something like:
Infinity 是 HTML 中的保留字符。以下是其各种形式的价值。
在 html 代码中使用
参考:HTML 符号 - HTML 无限符号
Infinity is a reserved character in HTML. Following are its values in various forms.
To use in html code
Reference : HTML Symbols - HTML Infinity Symbol