HTML Entity for Uppercase Ezh (Ʒ)

What You'll Learn
How to display the uppercase ezh (Ʒ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+01B7 (LATIN CAPITAL LETTER EZH), the capital 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 \1B7. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Ezh Entity
U+01B7Latin Extended-B
ƷHexadecimal reference
ƷDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01B7
Hex code Ʒ
HTML code Ʒ
Named entity (none)
CSS code \1B7
Meaning Latin capital letter ezh
Related U+0292 = ʒ (lowercase ezh); U+01EE = Ǯ (ezh caron)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase ezh (Ʒ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1B7";
}
</style>
</head>
<body>
<p>Symbol (hex): Ʒ</p>
<p>Symbol (decimal): Ʒ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase ezh (Ʒ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase ezh (Ʒ) in linguistic and phonetic contexts:
Z (U+005A)🧠 How It Works
Hexadecimal Code
Ʒ uses the Unicode hexadecimal value 01B7 to display the uppercase ezh. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ʒ uses the decimal Unicode value 439 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1B7 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+01B7 sits in Latin Extended-B. Lowercase counterpart: U+0292 (ʒ). There is no named HTML entity. Do not confuse with plain Z (U+005A).
Use Cases
The uppercase ezh (Ʒ) is commonly used in:
Language research, documentation, and academic papers studying extended Latin characters.
IPA and phonetic guides referencing the capital ezh letter in specialized notation.
Scholarly publications and linguistic databases requiring extended Latin glyphs.
Linguistic atlases, comparative studies, and orthography references for ezh-based alphabets.
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) from plain
Z(U+005A) and Ǯ (ezh caron) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for Ʒ
- Substitute plain
Zor3when Ʒ is required in linguistic notation - Put CSS escape
\1B7in HTML text nodes - Use padded Unicode notation like U+001B7—the correct value is
U+01B7 - Use
\001B7in CSS—the correct escape is\1B7
Key Takeaways
Three references render Ʒ (no named entity)
Ʒ ƷFor CSS stylesheets, use the escape in the content property
\1B7Unicode U+01B7 — LATIN CAPITAL LETTER EZH
Used in linguistic studies, phonetic transcription, and Latin Extended-B content
Previous: Uppercase Eng (Ŋ) Next: Uppercase Ezh Caron (Ǯ)
❓ Frequently Asked Questions
Ʒ (hex), Ʒ (decimal), or \1B7 in CSS content. There is no named HTML entity for this character.U+01B7 (LATIN CAPITAL LETTER EZH). Latin Extended-B block. Hex 01B7, decimal 439. Used in linguistic studies and phonetic notation.Ʒ or Ʒ) is used in HTML content. The CSS entity (\1B7) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ʒ but in different contexts.Ʒ or Ʒ in HTML, or \1B7 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
