HTML Entity for Telephone Sign (℡)

What You'll Learn
How to display the Telephone Sign (℡) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2121 (TELEPHONE SIGN) in the Letterlike Symbols block (U+2100–U+214F)—the classic “tel” symbol for phone numbers and contact information.
Render it with ℡, ℡, or CSS escape \2121. There is no named HTML entity. Do not confuse ℡ (telephone sign ℡) with ✆ (telephone location sign ✆, U+2706 in Dingbats) or ☎ (black telephone ☎, U+260E).
⚡ Quick Reference — Telephone Sign
U+2121Letterlike Symbols
℡Hexadecimal reference
℡Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2121
Hex code ℡
HTML code ℡
Named entity (none)
CSS code \2121
Block Letterlike Symbols (U+2100–U+214F)
Related U+2706 = Telephone Location Sign (✆)Complete HTML Example
This example demonstrates the Telephone Sign (℡) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2121";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ℡</p>
<p>Using HTML Code: ℡</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Telephone Sign is supported in all modern browsers when fonts include Letterlike Symbols glyphs:
👀 Live Preview
See the Telephone Sign (℡) in contact context and compared with related phone symbols:
🧠 How It Works
Hexadecimal Code
℡ uses the Unicode hexadecimal value 2121 to display the Telephone Sign. The x prefix indicates hexadecimal format.
Decimal HTML Code
℡ uses the decimal Unicode value 8481 to display the same character.
CSS Entity
\2121 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ℡. Unicode U+2121 in the Letterlike Symbols block (U+2100–U+214F). No named entity.
Use Cases
The Telephone Sign (℡) commonly appears in:
Phone numbers on business and personal sites.
Support sections and help desk interfaces.
Corporate pages and professional footers.
Business listings and contact databases.
Contact forms and messaging platforms.
Ads and promotional materials with phone info.
Headers and navigation with contact details.
💡 Best Practices
Do
- Use
℡or℡for the tel sign glyph - Pair with
<a href="tel:...">for clickable phone links - Add
aria-label="Telephone"or visible text for accessibility - Pick one style (hex or decimal) per project for consistency
- Test rendering across browsers and fonts
Don’t
- Confuse ℡ (tel sign) with ✆ (telephone location sign) or ☎ (black telephone)
- Rely on the symbol alone without accessible labeling
- Put CSS escape
\2121directly in HTML text nodes - Expect a named HTML entity for U+2121—use numeric references
- Use HTML entities in JS (use
\u2121instead)
Key Takeaways
Two HTML references both render ℡
℡ ℡For CSS stylesheets, use the escape in the content property
\2121Unicode U+2121 — TELEPHONE SIGN
No named entity—use numeric references or CSS escape
Distinct from Dingbats ✆ and Miscellaneous Symbols ☎
❓ Frequently Asked Questions
℡ (hex), ℡ (decimal), or \2121 in CSS content. There is no named HTML entity. All three produce ℡.U+2121 (TELEPHONE SIGN). Letterlike Symbols block (U+2100–U+214F). Hex 2121, decimal 8481.Explore More HTML Entities!
Discover 1500+ HTML character references — contact symbols, currency, math, and more.
8 people found this page helpful
