HTML Entity for Ezh (ʒ)

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

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

Unicode U+0292

Latin Extended-B

Hex Code ʒ

Hexadecimal reference

HTML Code ʒ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the ezh (ʒ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\292";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0292;</p>
<p>Symbol (decimal): &#658;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The ezh (ʒ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the ezh (ʒ) in linguistic and phonetic contexts:

Large glyphʒ
Case pairʒ (U+0292) / ʒ (U+0292)
IPA noteLowercase ʒ is the standard IPA ezh; ʒ is the capital form in extended Latin
Not the same asǮ (ezh caron)  |  Z (U+005A)
Numeric refs&#x0292; &#658; \292

🧠 How It Works

1

Hexadecimal Code

&#x0292; uses the Unicode hexadecimal value 0292 to display the ezh. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#658; uses the decimal Unicode value 658 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

\292 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📚 Linguistic studies

Language research, documentation, and academic papers studying extended Latin characters.

🎤 Phonetic transcription

IPA and phonetic guides referencing the capital ezh letter in specialized notation.

📄 Academic papers

Scholarly publications and linguistic databases requiring extended Latin glyphs.

📝 Language documentation

Linguistic atlases, comparative studies, and orthography references for ezh-based alphabets.

⚙ Font testing

Character set demonstrations and Unicode showcases for Latin Extended-B coverage.

🌐 Multilingual sites

Content requiring extended Latin glyphs beyond basic ASCII or Latin-1.

🔍 Search & SEO

Correct rendering so specialized linguistic content can be found and indexed.

💡 Best Practices

Do

  • Use &#658; or &#x0292; 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 Z or 3 when ʒ is required in linguistic notation
  • Put CSS escape \292 in HTML text nodes
  • Use padded Unicode notation like U+00292—the correct value is U+0292
  • Use \00292 in CSS—the correct escape is \292

Key Takeaways

1

Three references render ʒ (no named entity)

&#x0292; &#658;
2

For CSS stylesheets, use the escape in the content property

\292
3

Unicode U+0292 — LATIN SMALL LETTER EZH

4

Used in linguistic studies, phonetic transcription, and Latin Extended-B content

5

Previous: Ezh Small   Next: Ezh Curl (ʓ)

❓ Frequently Asked Questions

Use &#x0292; (hex), &#658; (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.
In linguistic studies, phonetic transcriptions, IPA documentation, academic papers, and any content requiring the capital ezh glyph.
HTML code (&#658; or &#x0292;) 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.
No. There is no named HTML entity for ʒ. Use &#658; or &#x0292; 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.

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