HTML Entity for Turned Ampersand (⅋)

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
U+214BLetterlike Symbols
⅋Hexadecimal reference
⅋Decimal reference
—Use numeric codes only
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+0026Complete HTML Example
This example demonstrates the Turned Ampersand (⅋) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\214B";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ⅋</p>
<p>Using HTML Code: ⅋</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+214B renders in modern browsers when fonts include Letterlike Symbols glyphs:
👀 Live Preview
See the Turned Ampersand (⅋) in typographic context:
🧠 How It Works
Hexadecimal Code
⅋ uses the Unicode hexadecimal value 214B to display the Turned Ampersand. The x prefix indicates hexadecimal format.
Decimal HTML Code
⅋ uses the decimal Unicode value 8523 to display the same character.
CSS Entity
\214B is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
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:
Distinctive ampersand styling in headlines and logos.
Landing pages and artistic web layouts.
Visual embellishments and branded typography.
Unique layouts and typographic compositions.
Typography tutorials and special-character guides.
Unicode and HTML entity guides for letterlike symbols.
💡 Best Practices
Do
- Use
⅋or⅋for the turned ampersand glyph - Choose fonts that cover Letterlike Symbols (U+2100–U+214F)
- Use sparingly for decorative or headline typography
- Add
aria-labelwhen the symbol carries meaning alone - Pick one entity style per project for consistency
Don’t
- Confuse ⅋ with
&(regular ampersand &) - Assume every font includes U+214B
- Put CSS escape
\214Bdirectly in HTML text nodes - Expect a named HTML entity for U+214B—use numeric references
- Overuse decorative symbols in body copy
Key Takeaways
Two HTML references both render ⅋
⅋ ⅋For CSS stylesheets, use the escape in the content property
\214BUnicode U+214B — TURNED AMPERSAND
No named entity—use numeric references or CSS escape
Letterlike Symbols block (U+2100–U+214F)
❓ Frequently Asked Questions
⅋ (hex), ⅋ (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.⅋ or ⅋) 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.Explore More HTML Entities!
Discover 1500+ HTML character references — typography, math, currency, and more.
8 people found this page helpful
