HTML Entity for Ezh (ʒ)

What You'll Learn
How to display the ezh (ʒ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0292 (LATIN SMALL 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 \292. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Ezh Entity
U+0292Latin Extended-B
ʒHexadecimal reference
ʒDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0292
Hex code ʒ
HTML code ʒ
Named entity (none)
CSS code \292
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 ezh (ʒ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\292";
}
</style>
</head>
<body>
<p>Symbol (hex): ʒ</p>
<p>Symbol (decimal): ʒ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html> 🌐 Browser Support
The ezh (ʒ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the ezh (ʒ) in linguistic and phonetic contexts:
Z (U+005A)🧠 How It Works
Hexadecimal Code
ʒ uses the Unicode hexadecimal value 0292 to display the ezh. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʒ uses the decimal Unicode value 658 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\292 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+0292 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 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
\292in HTML text nodes - Use padded Unicode notation like U+00292—the correct value is
U+0292 - Use
\00292in CSS—the correct escape is\292
Key Takeaways
Three references render ʒ (no named entity)
ʒ ʒFor CSS stylesheets, use the escape in the content property
\292Unicode U+0292 — LATIN SMALL LETTER EZH
Used in linguistic studies, phonetic transcription, and Latin Extended-B content
Previous: Ezh Small Next: Ezh Curl (ʓ)
❓ Frequently Asked Questions
ʒ (hex), ʒ (decimal), or \292 in CSS content. There is no named HTML entity for this character.U+0292 (LATIN SMALL LETTER EZH). Latin Extended-B block. Hex 0292, decimal 658. Used in linguistic studies and phonetic notation.ʒ or ʒ) is used in HTML content. The CSS entity (\292) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ʒ but in different contexts.ʒ or ʒ in HTML, or \292 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
