Infinity symbol with HTML

后端 未结 9 1000
轻奢々
轻奢々 2020-12-13 16:26

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

相关标签:
9条回答
  • 2020-12-13 17:18

    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 &#8734; </p>
    <p>The html symbol is &#x221E; </p>
    <p>The html symbol is &infin; </p>

    Reference : HTML Symbols - HTML Infinity Symbol

    0 讨论(0)
  • 2020-12-13 17:21

    &#8734;

    0 讨论(0)
  • 2020-12-13 17:32

    From Wikipedia:

    &infin;
    
    0 讨论(0)
提交回复
热议问题