HTML Entity for Turned Ampersand (⅋)

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

What You'll Learn

How to display the Turned Ampersand (⅋) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+214B (TURNED AMPERSAND) in the Letterlike Symbols block (U+2100–U+214F)—a distinctive typographic variation of the ampersand, sometimes used as a per sign.

Render it with ⅋, ⅋, or CSS escape \214B. There is no named HTML entity. Do not confuse ⅋ with & (regular ampersand &, U+0026).

⚡ Quick Reference — Turned Ampersand

Unicode U+214B

Letterlike Symbols

Hex Code ⅋

Hexadecimal reference

HTML Code ⅋

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+214B
Hex code       ⅋
HTML code      ⅋
Named entity   (none)
CSS code       \214B
Block          Letterlike Symbols (U+2100–U+214F)
Official name  TURNED AMPERSAND
Related        & = ampersand (&), U+0026
1

Complete HTML Example

This example demonstrates the Turned Ampersand (⅋) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

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

🌐 Browser Support

U+214B renders in modern browsers when fonts include Letterlike Symbols glyphs:

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

👀 Live Preview

See the Turned Ampersand (⅋) in typographic context:

Headline Design ⅋ Type
Large glyph
vs ampersand ⅋ turned   & regular (&amp;)
Numeric refs &#x214B; &#8523; \214B

🧠 How It Works

1

Hexadecimal Code

&#x214B; uses the Unicode hexadecimal value 214B to display the Turned Ampersand. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\214B is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+214B in the Letterlike Symbols block. No named entity. Previous: Turkish Lira Sign. Next: Turned Delta.

Use Cases

The Turned Ampersand (⅋) commonly appears in:

✎ Typography

Distinctive ampersand styling in headlines and logos.

🎨 Creative Design

Landing pages and artistic web layouts.

✨ Decorative Content

Visual embellishments and branded typography.

📄 Special Formatting

Unique layouts and typographic compositions.

📚 Education

Typography tutorials and special-character guides.

🔤 Reference

Unicode and HTML entity guides for letterlike symbols.

💡 Best Practices

Do

  • Use &#x214B; or &#8523; for the turned ampersand glyph
  • Choose fonts that cover Letterlike Symbols (U+2100–U+214F)
  • Use sparingly for decorative or headline typography
  • Add aria-label when the symbol carries meaning alone
  • Pick one entity style per project for consistency

Don’t

  • Confuse ⅋ with &amp; (regular ampersand &)
  • Assume every font includes U+214B
  • Put CSS escape \214B directly in HTML text nodes
  • Expect a named HTML entity for U+214B—use numeric references
  • Overuse decorative symbols in body copy

Key Takeaways

1

Two HTML references both render ⅋

&#x214B; &#8523;
2

For CSS stylesheets, use the escape in the content property

\214B
3

Unicode U+214B — TURNED AMPERSAND

4

No named entity—use numeric references or CSS escape

5

Letterlike Symbols block (U+2100–U+214F)

❓ Frequently Asked Questions

Use &#x214B; (hex), &#8523; (decimal), or \214B in CSS content. There is no named HTML entity. All three produce ⅋.
U+214B (TURNED AMPERSAND). Letterlike Symbols block (U+2100–U+214F). Hex 214B, decimal 8523. Sometimes used as a per sign in typography.
For unique typography, creative designs, decorative content, artistic layouts, and distinctive ampersand variations in HTML documents.
HTML numeric references (&#8523; or &#x214B;) go directly in markup. The CSS escape \214B 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 Letterlike Symbols block use numeric hex or decimal references—standard practice for specialized typographic characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — typography, math, currency, 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