HTML Entity for Ezh Small (ʒ)

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

What You'll Learn

How to display the Ezh Small (ʒ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0292 (LATIN SMALL LETTER EZH) in the IPA Extensions block (U+0250–U+02AF)—the voiced palato-alveolar fricative in the International Phonetic Alphabet (the “zh” sound in “measure,” “vision,” or “beige”).

Render it with ʒ, ʒ, or CSS escape \292. There is no named HTML entity. Do not confuse ʒ with esh (ʃ, voiceless) or ezh curl (ʓ).

⚡ Quick Reference — Ezh Small

Unicode U+0292

IPA Extensions

Hex Code ʒ

Hexadecimal reference

HTML Code ʒ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0292
Hex code       ʒ
HTML code      ʒ
Named entity   (none)
CSS code       \292
Meaning        Voiced palato-alveolar fricative (IPA ezh)
Related        U+0283 = Esh (ʃ); U+0293 = Ezh curl (ʓ)
1

Complete HTML Example

This example demonstrates the Ezh Small (ʒ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\292";
  }
 </style>
</head>
<body>
<p>Ezh Small using Hexadecimal: &#x0292;</p>
<p>Ezh Small using HTML Code: &#658;</p>
<p id="point">Ezh Small using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Ezh Small entity is universally supported in modern browsers when a font with IPA coverage is available:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the ezh (ʒ) in IPA context and compared with voiceless esh (ʃ):

IPA example “measure” [mɛʒə]
Large glyph ʒ
vs esh ʒ (voiced)   vs   ʃ (voiceless)
Numeric refs &#x0292; &#658;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#658; uses the decimal Unicode value 658 to display the same character.

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 in the IPA Extensions block (U+0250–U+02AF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Ezh Small (ʒ) commonly appears in:

💬 IPA transcription

Display the voiced palato-alveolar fricative in phonetic transcriptions (e.g. “measure” [mɛʒə]).

📚 Linguistics

Academic papers, phonology descriptions, and sound inventories.

🗣 Pronunciation guides

Language learning apps, dictionaries, and pronunciation tutorials.

📖 Dictionaries

Online dictionaries and lexical resources with IPA symbols.

🎓 Education

Teach the “zh” sound and contrast with voiceless ʃ in courses.

🌐 Multilingual content

Websites documenting world languages and speech sounds.

💡 Best Practices

Do

  • Use &#x0292; or &#658; for readable IPA markup
  • Use IPA-capable fonts (Charis SIL, Doulos SIL) for clear ʒ rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add aria-label (e.g. “voiced palato-alveolar fricative”) for accessibility
  • Use brackets [ʒ] for phonetic vs slashes /ʒ/ for phonemic context

Don’t

  • Confuse ʒ (voiced ezh) with ʃ (voiceless esh) or ʓ (ezh curl)
  • Expect a named entity—none exists for U+0292
  • Put CSS escape \292 in HTML text nodes
  • Assume every font includes IPA Extensions glyphs
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ʒ

&#x0292; &#658;
2

For CSS stylesheets, use the escape in the content property

\292
3

Unicode U+0292 — LATIN SMALL LETTER EZH

4

Voiced palato-alveolar fricative (“zh” sound)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x0292; (hex), &#658; (decimal), or \292 in CSS content. There is no named entity.
U+0292 (LATIN SMALL LETTER EZH). IPA Extensions block (U+0250–U+02AF). Hex 0292, decimal 658. Represents the voiced palato-alveolar fricative in IPA.
When your content requires the voiced palato-alveolar fricative in linguistics, phonetics, IPA transcription, pronunciation guides, language learning materials, or dictionary entries.
Named entities cover a subset of common characters. IPA symbols like U+0292 have no named entity—use &#x0292; or &#658; in markup, or \292 in CSS.
HTML references (&#658; or &#x0292;) go in markup. The CSS escape \292 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 — IPA symbols, phonetics, 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