HTML Entity for White Telephone (☏)

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

What You'll Learn

How to display White Telephone (☏) in HTML and CSS. This character is U+260F in the Miscellaneous Symbols block (U+2600–U+26FF), approved in Unicode 1.1 (1993). It is the telephone pair to U+260E (☎), which supports the named entity ☎—commonly used for contact info, call buttons, and communication UI.

There is no named HTML entity for U+260F. Use ☏ or ☏ in markup, or \260F in stylesheet content. Do not confuse ☏ with ☎ (☎) or emoji 📞 (telephone receiver). Pair phone glyphs with visible text or aria-label (for example “Call us” or the phone number).

⚡ Quick Reference — White Telephone

Unicode U+260F

Miscellaneous Symbols (U+2600–U+26FF)

Hex Code ☏

Hexadecimal reference

HTML Code ☏

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+260F
Hex code       ☏
HTML code      ☏
Named entity   (none)
CSS code       \260F
Meaning        White telephone
Related        U+260E = ☎ (named ☎)
               U+1F4DE = 📞 (telephone receiver emoji)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

This example shows U+260F using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #phone:after{
   content: "\260F";
  }
 </style>
</head>
<body>
<p>White Telephone using Hexa Decimal: &#x260F;</p>
<p>White Telephone using HTML Code: &#9743;</p>
<p id="phone">White Telephone using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+260F is widely supported in modern browsers; telephone glyph artwork varies by typeface:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the glyph in contact contexts and beside related telephone symbols (font-dependent):

Contact info☏ +1 (555) 123-4567
Large glyph
Call to action☏ Call us today
Telephone pair (U+260F & U+260E)☏ ☎
Monospace refs&#x260F; &#9743; \260F

🧠 How It Works

1

Hexadecimal Code

&#x260F; references code point U+260F using hex digits 260F after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9743; is the decimal equivalent (9743) for the same White Telephone character.

HTML markup
3

CSS Entity

\260F is the CSS escape for U+260F, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+260F. For &phone;, use U+260E (☎).

Use Cases

White Telephone (☏) is commonly used for:

📞 Contact pages

Contact sections, about pages, and footers indicating phone contact information.

💼 Business websites

Business listings, directories, and company sites showing phone availability.

🔔 Customer service

Help pages, support sections, and customer service areas.

📋 Contact forms

Phone number fields, form headers, and contact form labels.

💬 Communication UI

Messaging apps, communication tools, and digital interfaces.

📝 Directory listings

Business directories, phone directories, and contact listings.

♿ Accessibility

Pair ☏ with the phone number or aria-label; do not rely on the glyph alone.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+260F
  • Pair ☏ with ☎ (&phone;) when showing both telephone variants
  • Pair the symbol with clear contact information (e.g. phone numbers or “Call us” labels)
  • Use proper locale formatting when displaying phone numbers alongside the symbol
  • Use \260F only inside CSS content, not inside HTML text nodes
  • Add aria-label or visible text for standalone phone icons

Don’t

  • Confuse U+260F with U+260E (&phone;) or emoji 📞 (different code points)
  • Rely on ☏ alone as the only way to reach a phone number
  • Assume every font renders telephone symbols crisply at small sizes
  • Use decorative glyphs as the only contact cue without visible text
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x260F; &#9743;
2

CSS content escape

\260F
3

U+260F pairs with U+260E (☎, named &phone;)

4

Miscellaneous Symbols block U+2600–U+26FF; no named entity for U+260F

❓ Frequently Asked Questions

Use &#x260F; (hex), &#9743; (decimal), or \260F in CSS content. There is no named entity; all valid methods render ☏.
U+260F (hex 260F, decimal 9743). Miscellaneous Symbols (U+2600–U+26FF). Pairs with U+260E (☎), which has &phone;.
For contact pages, phone-related content, communication interfaces, customer service sections, business websites, contact forms, and directory listings.
Numeric references belong in HTML. The \260F escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x260F;, &#9743;, or \260F in CSS. For the paired telephone at U+260E, use &phone;.

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