HTML 中的无穷大符号

发布于 2024-08-20 21:45:51 字数 170 浏览 3 评论 0原文

如何使用 HTML 显示无穷大符号(如图所示)?

无穷大符号

How can I display an infinity symbol (like the one in the picture) using HTML?

infinity symbol

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(9

一杯敬自由 2024-08-27 21:45:51

使用 HTML 实体

Use the HTML entity or .

慈悲佛祖 2024-08-27 21:45:51

您可以使用以下内容:

  • 文字:(如果您使用的编码可以对其进行编码 - 例如 UTF-8 可以)
  • 字符引用: (十进制),(十六进制)
  • 实体参考:

但是否正确显示还取决于文本显示的字体。

You can use the following:

  • literal: (if the encoding you use can encode it — UTF-8 can, for example)
  • character reference: (decimal), (hexadecimal)
  • entity reference:

But whether it is displayed correctly does also depend on the font the text is displayed with.

尽揽少女心 2024-08-27 21:45:51

如果您使用现代编码(例如 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.

濫情▎り 2024-08-27 21:45:51

来自维基百科

From Wikipedia:

小鸟爱天空丶 2024-08-27 21:45:51

音盲 2024-08-27 21:45:51

根据此页面

According to this page, it's .

つ低調成傷 2024-08-27 21:45:51

就像ЯegDwight所说,你可以使用HTML实体∞或。获取这些代码的一个简单来源是查看此实体列表

你也可以在 CSS 中使用它们,这正是我一直在寻找的,就像 font-awesome 一样。一个简单的基于 CSS 的解决方案是这样的:

.infinity-ico:before {
    content: '\221E';
}

Like ЯegDwight said, you can use the HTML entity ∞ 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-ico:before {
    content: '\221E';
}
你的笑 2024-08-27 21:45:51

Infinity 是 HTML 中的保留字符。以下是其各种形式的价值。

  • 十六进制:8734
  • 十进制:221E
  • 实体:∞

在 html 代码中使用

<p>The html symbol is ∞ </p>
<p>The html symbol is ∞ </p>
<p>The html symbol is ∞ </p>

参考:HTML 符号 - HTML 无限符号

Infinity is a reserved character in HTML. Following are its values in various forms.

  • Hex : 8734
  • Decimal : 221E
  • Entity : ∞

To use in html code

<p>The html symbol is ∞ </p>
<p>The html symbol is ∞ </p>
<p>The html symbol is ∞ </p>

Reference : HTML Symbols - HTML Infinity Symbol

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