HTML Entity for Uppercase Ezh Reverse (Ƹ)

What You'll Learn
How to display the reversed uppercase ezh (Ƹ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+01B8 (LATIN CAPITAL LETTER EZH REVERSED)—a horizontally reversed form of the ezh letter used in linguistic and phonetic notation. It sits in the Latin Extended-B block.
Render it with Ƹ, Ƹ, or CSS escape \1B8. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Ezh Reverse Entity
U+01B8Latin Extended-B
ƸHexadecimal reference
ƸDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01B8
Hex code Ƹ
HTML code Ƹ
Named entity (none)
CSS code \1B8
Meaning Latin capital letter ezh reversed
Related U+01B9 = ƹ (lowercase); U+01B7 = Ʒ (ezh)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase ezh reverse (Ƹ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1B8";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƹ</p>
<p>Symbol (decimal): Ƹ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase ezh reverse (Ƹ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase ezh reverse (Ƹ) in linguistic and phonetic contexts:
🧠 How It Works
Hexadecimal Code
Ƹ uses the Unicode hexadecimal value 01B8 to display the uppercase ezh reverse. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƹ uses the decimal Unicode value 440 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1B8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ƹ. Unicode U+01B8 sits in Latin Extended-B. Lowercase counterpart: U+01B9 (ƹ). There is no named HTML entity. Do not confuse with ezh Ʒ (U+01B7) or plain Z (U+005A).
Use Cases
The uppercase ezh reverse (Ƹ) is commonly used in:
Language research, documentation, and academic papers on extended Latin characters.
IPA and phonetic guides referencing the reversed capital ezh in specialized notation.
Scholarly publications and linguistic databases requiring extended Latin glyphs.
Linguistic atlases, comparative studies, and orthography references.
Character set demonstrations and Unicode showcases for Latin Extended-B coverage.
Content requiring extended Latin glyphs beyond basic ASCII or Latin-1.
Correct rendering so specialized linguistic content can be found and indexed.
💡 Best Practices
Do
- Use
ƸorƸin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ƹ directly in UTF-8 source
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ƹ (ezh reverse) from Ʒ (ezh) and plain
Z(U+005A) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for Ƹ
- Substitute plain ezh Ʒ or
Zwhen Ƹ is required in notation - Put CSS escape
\1B8in HTML text nodes - Use padded Unicode notation like U+001B8—the correct value is
U+01B8 - Use
\001B8in CSS—the correct escape is\1B8
Key Takeaways
Three references render Ƹ (no named entity)
Ƹ ƸFor CSS stylesheets, use the escape in the content property
\1B8Unicode U+01B8 — LATIN CAPITAL LETTER EZH REVERSED
Used in linguistic studies, phonetic transcription, and Latin Extended-B content
Previous: Uppercase Ezh Caron (Ǯ) Next: Uppercase F
❓ Frequently Asked Questions
Ƹ (hex), Ƹ (decimal), or \1B8 in CSS content. There is no named HTML entity for this character.U+01B8 (LATIN CAPITAL LETTER EZH REVERSED). Latin Extended-B block. Hex 01B8, decimal 440. Used in linguistic studies and phonetic notation.Ƹ or Ƹ) is used in HTML content. The CSS entity (\1B8) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ƹ but in different contexts.Ƹ or Ƹ in HTML, or \1B8 in CSS. This is standard for Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, IPA symbols, and more.
8 people found this page helpful
