HTML Entity for Ezh Curl (ʓ)

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

What You'll Learn

How to display the Ezh Curl (ʓ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0293 (LATIN SMALL LETTER EZH WITH CURL) in the IPA Extensions block (U+0250–U+02AF)—used in linguistics and specialized phonetic notation.

Render it with ʓ, ʓ, or CSS escape \293. There is no named HTML entity. Do not confuse ʓ with ezh (ʒ) or the digit 3.

⚡ Quick Reference — Ezh Curl

Unicode U+0293

IPA Extensions

Hex Code ʓ

Hexadecimal reference

HTML Code ʓ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0293
Hex code       ʓ
HTML code      ʓ
Named entity   (none)
CSS code       \293
Meaning        Latin small letter ezh with curl (IPA)
Related        U+0292 = Ezh (ʒ); U+0297 = Ezh with tail (ʗ)
1

Complete HTML Example

This example demonstrates the Ezh Curl (ʓ) 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: "\293";
  }
 </style>
</head>
<body>
<p>Ezh Curl using Hexadecimal: &#x0293;</p>
<p>Ezh Curl using HTML Code: &#659;</p>
<p id="point">Ezh Curl using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Ezh Curl 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 curl (ʓ) in IPA context and compared with plain ezh (ʒ):

IPA brackets [ʓ]
Large glyph ʓ
vs ezh ʓ   vs   ʒ
Numeric refs &#x0293; &#659;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x0293; uses the Unicode hexadecimal value 0293 to display the Ezh Curl. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\293 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+0293 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 Curl (ʓ) commonly appears in:

💬 IPA transcription

Display the ezh with curl in phonetic transcriptions and specialized IPA notation.

📚 Linguistics

Academic papers, phonology descriptions, and sound inventories.

🗣 Pronunciation guides

Language learning apps and phonetic resources.

📖 Dictionaries

Online dictionaries and lexical resources with IPA symbols.

🎓 Education

Teach phonetic contrasts and specialized sounds in courses.

🌐 Multilingual content

Websites documenting world languages and speech sounds.

💡 Best Practices

Do

  • Use &#x0293; or &#659; 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. “ezh curl”) for accessibility
  • Use brackets [ʓ] for phonetic vs slashes /ʓ/ for phonemic context

Don’t

  • Confuse ʓ (ezh curl) with ʒ (plain ezh) or ʗ (ezh with tail)
  • Expect a named entity—none exists for U+0293
  • Put CSS escape \293 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 ʓ

&#x0293; &#659;
2

For CSS stylesheets, use the escape in the content property

\293
3

Unicode U+0293 — LATIN SMALL LETTER EZH WITH CURL

4

IPA Extensions block for phonetic notation

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x0293; (hex), &#659; (decimal), or \293 in CSS content. There is no named entity.
U+0293 (LATIN SMALL LETTER EZH WITH CURL). IPA Extensions block (U+0250–U+02AF). Hex 0293, decimal 659. Used in phonetic and linguistic notation.
When your content requires this specialized IPA character in linguistics, phonetics, pronunciation guides, language learning materials, or dictionary entries.
Named entities cover a subset of common characters. IPA symbols like U+0293 have no named entity—use &#x0293; or &#659; in markup, or \293 in CSS.
HTML references (&#659; or &#x0293;) go in markup. The CSS escape \293 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