Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

infinity symbol

share|improve this question
12  
hotlinking?! no offense, but that is a terrible answer. – user94154 Feb 12 '10 at 22:05

7 Answers

up vote 79 down vote accepted

Use the HTML entity ∞ or ∞.

share|improve this answer
win for simplicity. thanks for all the help! – user94154 Feb 12 '10 at 22:46

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.

share|improve this answer
2  
+1 for mentioning the font-dependence. This is often overlooked in case of "unicode characters". – BalusC Feb 12 '10 at 21:02

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.

share|improve this answer
1  
+1 for this. Simple is best. – Mark Byers Feb 12 '10 at 20:39
3  
Curious: since I don't have a ∞ on my keyboard, would I always have to copy/paste the previous ∞? How do you get it there the first time? I find it easier and faster to type ∞, but if there's a faster way to get this on to the screen with just a plain ol' keyboard, please share – FrustratedWithFormsDesigner Feb 12 '10 at 21:00
4  
The “Typing Special Characters” section here might help: xvsxp.com/misc/keyboard.php – Paul D. Waite Feb 12 '10 at 21:07
1  
I don't think there's a default key for infinity. However, like anything else you can set up a key shortcut. Jonas Kölker recommended Compose+1/0 (stackoverflow.com/questions/311244/…) – Matthew Flaschen Feb 12 '10 at 21:33
1  
What's your environment? On the Mac, it's option-5. In GTK+, it's C-S-u 2 2 1 E. On Windows, it's ALT 2 3 6 (keypad). A good text editor will also have a way to define an abbrev for it. – Ken Feb 14 '10 at 0:19
show 1 more comment

From Wikipedia:

∞
share|improve this answer

According to this page, it's ∞.

share|improve this answer
1  
HTML <font> is deprecated since 1998 in favour of CSS. – BalusC Feb 12 '10 at 21:02

&#8734;

share|improve this answer

According to List of XML and HTML character entity references:

&#8734;

Next time, try Google. The Google search using your original question gets several useful results: How can I display an infinity symbol using html.

share|improve this answer
3  
Google is not a valid answer. If you hadn't also included the right answer, I'd -1 this. – Macha Feb 12 '10 at 21:17
2  
Google is absolutely a valid answer. Google "infinity symbol entity" -- google.com/search?q=infinity+symbol+entity -- and see the results. The answer is there in the first results. If you feel my answer deserves a downvote, feel free to downvote my answer. – artlung Feb 12 '10 at 22:11
2  
I go to stackoverflow because when I want to show an infinity symbol, I don't know that I need to search for an "entity". read yehuda katz's "the blind men and the noobs". – user94154 Feb 12 '10 at 22:45
2  
google.com/… gets a good result. I'm glad you learned what a character entity is today. – artlung Feb 12 '10 at 23:32
1  
"...the mismatch between how we think about problems once we become experienced and the way we feel around like a blind man when getting started makes the experience of getting started...far more painful than it needs to be." – user94154 Feb 12 '10 at 23:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.