HTML Entity for Information Source (ℹ)

What You'll Learn
How to display the Information Source symbol (ℹ) in HTML using hexadecimal, decimal, and CSS escape methods. This letterlike symbol indicates information, help content, or source references—commonly used as an “info” icon in tooltips, forms, and documentation.
It is U+2139 (INFORMATION SOURCE) in the Letterlike Symbols block (U+2100–U+214F). Render it with ℹ, ℹ, or CSS \2139. There is no named HTML entity for ℹ.
⚡ Quick Reference — Information Source
U+2139Letterlike Symbols
ℹHexadecimal reference
ℹDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2139
Hex code ℹ
HTML code ℹ
Named entity (none)
CSS code \2139
Meaning Information / info icon
CSS note \2139 or \02139 in content propertyComplete HTML Example
This example demonstrates the Information Source symbol (ℹ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2139";
}
</style>
</head>
<body>
<p>Information Source using Hexadecimal: ℹ</p>
<p>Information Source using Decimal: ℹ</p>
<p id="point">Information Source using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Information Source symbol (ℹ) is widely supported in modern browsers when the font includes Letterlike Symbols:
👀 Live Preview
See the Information Source symbol (ℹ) in typical UI and documentation contexts:
🧠 How It Works
Hexadecimal Code
ℹ uses the Unicode hexadecimal value 2139 to display the Information Source symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℹ uses the decimal Unicode value 8505 to display the same character.
CSS Entity
\2139 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
No Named Entity
U+2139 has no &...; named form in HTML5. Use hex, decimal, or a CSS escape—not a fictional named entity.
Same visual result
All three methods produce ℹ. Unicode U+2139 is in Letterlike Symbols. Next: Integral.
Use Cases
The Information Source symbol (ℹ) is commonly used in:
Next to labels, fields, or controls that have extra help or description.
Footnotes, source links, and “more information” in articles.
Validation messages and inline hints for better form UX.
Pair with aria-label or title for screen reader users.
Knowledge bases, in-app guidance, and documentation panels.
Standard “info” glyph in icon sets and component libraries.
💡 Best Practices
Do
- Use
ℹorℹin HTML content - Add
aria-labelor visible text when the icon stands alone - Pick one numeric style (hex or decimal) per project
- Set
<meta charset="utf-8">for reliable rendering - Link the icon to help text or a tooltip users can discover
Don’t
- Expect a named HTML entity for U+2139
- Rely on the icon alone without accessible description
- Use CSS
\2139inside HTML text nodes - Confuse ℹ with the emoji info pictograph (different code point)
- Assume every font styles ℹ like a circular UI icon
Key Takeaways
❓ Frequently Asked Questions
ℹ (hex), ℹ (decimal), or \2139 in CSS content. There is no named entity. All three methods render ℹ correctly.U+2139 (INFORMATION SOURCE). Letterlike Symbols block (U+2100–U+214F). Hex 2139, decimal 8505. Widely used as an info icon in UI design.ℹ or ℹ) go in markup. The CSS escape \2139 is used in stylesheets, typically on ::before or ::after. Both produce ℹ.∞ for infinity.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, currency, and more.
8 people found this page helpful
