HTML Entity for Uppercase Ezh (Ʒ)

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

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

Unicode U+01B7

Latin Extended-B

Hex Code Ʒ

Hexadecimal reference

HTML Code Ʒ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

The uppercase 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 uppercase ezh (Ʒ) in linguistic and phonetic contexts:

Large glyphƷ
Case pairƷ (U+01B7) / ʒ (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&#x01B7; &#439; \1B7

🧠 How It Works

1

Hexadecimal Code

&#x01B7; uses the Unicode hexadecimal value 01B7 to display the uppercase ezh. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\1B7 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+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:

📚 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 &#439; or &#x01B7; 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 \1B7 in HTML text nodes
  • Use padded Unicode notation like U+001B7—the correct value is U+01B7
  • Use \001B7 in CSS—the correct escape is \1B7

Key Takeaways

1

Three references render Ʒ (no named entity)

&#x01B7; &#439;
2

For CSS stylesheets, use the escape in the content property

\1B7
3

Unicode U+01B7 — LATIN CAPITAL LETTER EZH

4

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

❓ Frequently Asked Questions

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

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