HTML Entity for Facsimile Sign (℻)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+213B

What Is Facsimile Sign?

Facsimile sign (℻) is the Unicode character at U+213B in Letterlike Symbols. Official name: FACSIMILE SIGN. It is the classic “fax” symbol used next to facsimile numbers on contact lines and stationery.

Remember
Character     ℻
Unicode       U+213B
Hex entity    ℻
Decimal       ℻
CSS escape    \213B
Named entity  (none)
Not the same  ℡ (tel) · FAX (letters) · ☎ (phone)

Prefer ℻ or ℻ in HTML (no named form). You can also type ℻ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity℻HTML markup (preferred)
Decimal entity℻HTML markup
Direct character℻HTML text (UTF-8)
CSS escape\213BStylesheet content

When to Use Which

SituationUse
Fax / facsimile number line℻ or type ℻
Telephone contact lineTelephone sign (℡)
Plain “Fax:” label (maximum compatibility)Type the word Fax: — not required to use U+213B
Black telephone pictograph☎ (U+260E) — different glyph and meaning
Generated text via ::before / ::aftercontent: "\213B"

Live Preview

Facsimile sign rendered alone, in a sample contact line, and compared with lookalikes.

Glyph ℻
Large glyph ℻
Sample ℻ +1-555-123-4567
Compared ℻   ℡   FAX   ☎
With entities Hex: ℻ | Decimal: ℻

Complete HTML Example

One page that shows Facsimile sign with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ℻ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Facsimile Sign (U+213B) in HTML</title>
  <style>
    #point::after {
      content: "\213B";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x213B;</p>
  <p>Built with Decimal: &#8507;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ℻</p>
  <p>Contact: &#x213B; +1-555-123-4567</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x213B; inserts code point U+213B → ℻.

2. Decimal: same code point as 8507 → &#8507;. Same visual as hex.

3. CSS: use \213B in content (not an HTML entity). #point::after appends ℻.

4. Typed: paste ℻ in a UTF-8 document, or place it before a fax number on a contact line.

Pitfalls & Tips

Common mistakes when working with Facsimile sign.

Name

No named entity

There is no HTML5 named entity for U+213B. Use &#x213B; or &#8507;. Do not invent &fax;.

℡

Not the telephone sign

U+2121 (℡) marks telephone contact. Use U+213B for fax lines.

FAX

Not the word FAX

Typing FAX is three Latin letters. The facsimile sign is a single Letterlike Symbol glyph.

☎

Not a phone pictograph

Black telephone (☎, U+260E) is a different character — do not substitute it for fax.

CSS vs HTML

Do not mix escapes

\213B belongs in CSS strings. &#x213B; / &#8507; belong in HTML.

a11y

Add accessible text

Screen readers may not announce ℻ clearly. Prefer nearby prose (for example “Fax:”) when the symbol carries meaning.

Semicolon

End references

Always finish entities with ; — write &#x213B;, not &#x213B.

Browser Support

Facsimile sign (U+213B) and its entity forms (&#x213B;, &#8507;, CSS \\213B) are supported in all mainstream browsers. Visible glyphs depend on Letterlike Symbols font coverage.

✓ Universal support

Facsimile Sign (&#x213B;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+213B Full support

Bottom line: Prefer &#x213B; in HTML (no named form). Use &#8507; when decimal form is required, and \\213B only inside CSS content.

Key Takeaways

  • Unicode: facsimile sign is U+213B (decimal 8507) — glyph ℻.
  • HTML: no named entity — use &#x213B; / &#8507; / type ℻.
  • CSS: use \213B inside content for generated text.
  • Meaning: ℻ ≠ telephone ℡ ≠ word FAX ≠ phone ☎.

One line: U+213B → &#x213B; / &#8507; / CSS \213B (no named form).

Frequently Asked Questions

Use &#x213B; (hex), &#8507; (decimal), type ℻ directly in UTF-8, or the CSS escape \213B in content. There is no named HTML entity for U+213B.
U+213B (FACSIMILE SIGN). Hex 213B, decimal 8507. It belongs to the Letterlike Symbols block (U+2100–U+214F).
No. HTML5 does not define a named entity for U+213B. Prefer &#x213B; or &#8507;.
Use it on contact pages, business cards, letterheads, and footers to mark a fax number. Prefer telephone sign (U+2121) for phone lines, and plain “Fax:” text when a glyph font may be missing.
HTML numeric entities (&#8507; or &#x213B;) go in markup. The CSS escape \213B goes in stylesheet strings (usually content on ::before/::after).
No. U+213B is ℻ (facsimile / fax sign). Telephone sign is U+2121 (℡). Typing FAX is ordinary Latin letters, not this Letterlike Symbol.

Did you know?

Facsimile sign is Unicode U+213B (decimal 8507) — glyph ℻ (FACSIMILE SIGN) in Letterlike Symbols. There is no HTML5 named entity; use &#x213B; or &#8507;. It marks fax contact lines. Do not confuse it with telephone sign (℡), black telephone (☎), or the word “FAX” typed in ASCII.

Next: Falling Diagonal Crossing North East Arrow

Learn the HTML entity for falling diagonal crossing north east arrow (U+292F).

Arrow tutorial →

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