HTML Entity for Black Telephone (☎)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+260E

What You'll Learn

How to display the Black Telephone (☎) in HTML using various entity methods. This character is part of the Miscellaneous Symbols Unicode block (U+260E), approved in Unicode 1.1 (1993). It represents a classic black telephone—a vintage desk or wall phone icon widely used for contact, call, and communication contexts.

The symbol can be rendered with a hexadecimal reference, a decimal reference, the named entity ☎, or a CSS escape in the content property. Related symbols include the White Telephone (U+260F ☏) and the Telephone Receiver emoji (U+1F4DE 📞).

⚡ Quick Reference — Black Telephone Entity

Unicode U+260E

Miscellaneous Symbols block

Hex Code ☎

Hexadecimal reference

HTML Code ☎

Decimal reference

Named Entity ☎

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+260E
Hex code       ☎
HTML code      ☎
Named entity   ☎
CSS code       \260E
1

Complete HTML Example

This example demonstrates the Black Telephone (☎) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\260E";
  }
 </style>
</head>
<body>
<p>Black Telephone using Hexa Decimal: &#x260E;</p>
<p>Black Telephone using HTML Code: &#9742;</p>
<p>Black Telephone using HTML Entity: &phone;</p>
<p id="point">Black Telephone using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Black Telephone entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Black Telephone symbol rendered live in different contexts:

Contact info ☎ +1 (555) 123-4567
Large glyph
Call to action ☎ Call us today — we’re here to help!
Related symbols ☎ ☏ 📞
Monospace refs &#x260E; &#9742; &phone; \260E

🧠 How It Works

1

Hexadecimal Code

&#x260E; uses the Unicode hexadecimal value 260E to display the Black Telephone. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9742; uses the decimal Unicode value 9742 to display the same character. This is a commonly used method for Miscellaneous Symbols.

HTML markup
3

Named HTML Entity

&phone; is the semantic, human-readable way to display the telephone symbol. It is one of the few communication symbols with a named entity.

HTML markup
4

CSS Entity

\260E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Black Telephone glyph: . Unicode U+260E sits in the Miscellaneous Symbols block (U+2600–U+26FF). Related symbols include White Telephone (U+260F) and Telephone Receiver (U+1F4DE).

Use Cases

The Black Telephone (☎) commonly appears in the following scenarios:

📞 Contact info

Headers, footers, and contact sections displaying phone numbers and call links.

📱 Call buttons

Call-to-action buttons, click-to-call links, and mobile-friendly contact prompts.

🔔 Customer service

Support pages, help desks, and customer care contact indicators.

💼 Business directories

Company listings, local business pages, and directory-style contact displays.

📡 Communication sites

Telecom, VoIP, and communication platform branding or UI elements.

🎨 Vintage design

Retro themes, nostalgia branding, and classic phone aesthetic.

♿ Accessibility

Pair the symbol with text or ARIA labels (e.g., “Call” or “Phone”) so screen readers convey its meaning.

💡 Best Practices

Do

  • Use &phone; for readable source markup
  • Wrap the symbol in <a href="tel:+1234567890"> for click-to-call on mobile
  • Display the symbol alongside the actual phone number for clarity
  • Add aria-label or title (e.g., “Call”) for screen readers
  • Test the glyph across browsers and devices

Don’t

  • Mix entity styles randomly in one file
  • Assume all fonts render ☎ correctly at small sizes
  • Use CSS escape \260E inside HTML text nodes
  • Rely on the symbol alone without visible text or labels
  • Confuse ☎ (Black Telephone) with ☏ (White Telephone) or 📞 (Receiver emoji)

Key Takeaways

1

Three HTML references all render ☎

&#x260E; &#9742; &phone;
2

For CSS stylesheets, use the escape in the content property

\260E
3

Unicode U+260E belongs to the Miscellaneous Symbols block (U+2600–U+26FF)

4

Prefer &phone; for readability—it’s the most self-descriptive named entity

5

Always pair the symbol with explanatory text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x260E; (hex), &#9742; (decimal), &phone; (named), or \260E in CSS content. All produce ☎.
U+260E (hex 260E, decimal 9742). It is part of the Miscellaneous Symbols block (U+2600–U+26FF). Related symbols include White Telephone (U+260F ☏) and Telephone Receiver (U+1F4DE 📞).
For contact info, call buttons, customer service pages, communication websites, business directories, support sections, and vintage or retro design themes.
HTML entities (&#9742;, &#x260E;, or &phone;) go directly in markup. The CSS escape \260E is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Yes. &phone; is the named HTML entity for ☎. You can also use &#9742; (decimal) or &#x260E; (hex).

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful