Reputation: 16584
How can I display an infinity symbol (like the one in the picture) using HTML?
Upvotes: 193
Views: 123032
Reputation: 1203
Infinity is a reserved character in HTML. Following are its values in various forms.
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
Upvotes: 3
Reputation: 33833
According to List of XML and HTML character entity references:
∞
Upvotes: 10
Reputation: 472
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-ico:before {
content: '\221E';
}
Upvotes: 4
Reputation: 655785
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.
Upvotes: 116
Reputation: 285057
∞
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.
Upvotes: 27