HTML Entity for Telephone Location Sign (✆)

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

What You'll Learn

How to display the Telephone Location Sign (✆) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2706 (TELEPHONE LOCATION SIGN) in the Dingbats block (U+2700–U+27BF)—a phone-with-location icon for contact pages, directories, and communication UI.

Render it with ✆, ✆, or CSS escape \2706. There is no named HTML entity. Do not confuse ✆ with ✇ (tape drive), ✈ (airplane), or ℡ (telephone sign ℡, U+2121).

⚡ Quick Reference — Telephone Location Sign

Unicode U+2706

Dingbats

Hex Code ✆

Hexadecimal reference

HTML Code ✆

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2706
Hex code       ✆
HTML code      ✆
Named entity   (none)
CSS code       \2706
Block          Dingbats (U+2700–U+27BF)
Related        U+2707 = Tape Drive (✇), U+2709 = Envelope (✉)
1

Complete HTML Example

This example demonstrates the Telephone Location Sign (✆) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2706";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x2706;</p>
<p>Using HTML Code: &#9990;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Telephone Location Sign is supported in all modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the Telephone Location Sign (✆) in contact context and compared with nearby Dingbats:

Contact ✆ Phone: (555) 123-4567
Large glyph
Nearby Dingbats ✆ phone location   ✇ tape   ✉ envelope
Numeric refs &#x2706; &#9990; \2706

🧠 How It Works

1

Hexadecimal Code

&#x2706; uses the Unicode hexadecimal value 2706 to display the Telephone Location Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9990; uses the decimal Unicode value 9990 to display the same character.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2706 in the Dingbats block (U+2700–U+27BF). No named entity.

Use Cases

The Telephone Location Sign (✆) commonly appears in:

📱 Contact Pages

Phone numbers and location contact details.

🖥 UI Design

Navigation menus and communication icons.

🗺 Directories

Business listings with phone location info.

📡 Telecom Sites

Phone service providers and carrier pages.

📍 Location Services

Maps and apps showing phone at a location.

🏢 Business Cards

Digital business cards and footers.

💻 Web Apps

Contact apps and customer support interfaces.

💡 Best Practices

Do

  • Use &#x2706; or &#9990; for the phone location icon
  • Pair with <a href="tel:..."> for clickable phone links
  • Add aria-label="Phone" or visible text for accessibility
  • Pick one style (hex or decimal) per project for consistency
  • Test rendering across browsers and devices

Don’t

  • Confuse ✆ with ✇ (tape drive) or ℡ (telephone sign ℡)
  • Rely on the icon alone without accessible labeling
  • Put CSS escape \2706 directly in HTML text nodes
  • Expect a named HTML entity for U+2706—use numeric references
  • Use HTML entities in JS (use \u2706 instead)

Key Takeaways

1

Two HTML references both render ✆

&#x2706; &#9990;
2

For CSS stylesheets, use the escape in the content property

\2706
3

Unicode U+2706 — TELEPHONE LOCATION SIGN

4

No named entity—use numeric references or CSS escape

5

Pair with tel: links for functional contact UI

❓ Frequently Asked Questions

Use &#x2706; (hex), &#9990; (decimal), or \2706 in CSS content. There is no named HTML entity. All three produce ✆.
U+2706 (TELEPHONE LOCATION SIGN). Dingbats block (U+2700–U+27BF). Hex 2706, decimal 9990.
In contact pages, UI design, business directories, location-based services, telecommunications websites, mobile contact apps, and any content indicating telephone location or phone contact information.
HTML numeric references (&#9990; or &#x2706;) go directly in markup. The CSS escape \2706 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ✆ in the Dingbats block use numeric hex or decimal references—standard practice for symbolic Unicode characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — Dingbats, contact icons, symbols, 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