HTML Entity for Uppercase Ezh Reverse (Ƹ)

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

What You'll Learn

How to display the reversed uppercase ezh (Ƹ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+01B8 (LATIN CAPITAL LETTER EZH REVERSED)—a horizontally reversed 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 \1B8. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Uppercase Ezh Reverse Entity

Unicode U+01B8

Latin Extended-B

Hex Code Ƹ

Hexadecimal reference

HTML Code Ƹ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01B8
Hex code       Ƹ
HTML code      Ƹ
Named entity   (none)
CSS code       \1B8
Meaning        Latin capital letter ezh reversed
Related        U+01B9 = ƹ (lowercase); U+01B7 = Ʒ (ezh)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

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

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

🌐 Browser Support

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

Large glyphƸ
Case pairƸ (U+01B8) / ƹ (U+01B9)
OrientationReversed form of ezh Ʒ (U+01B7)
Not the same asƷ (ezh)  |  Ǯ (ezh caron)  |  Z (U+005A)
Numeric refs&#x01B8; &#440; \1B8

🧠 How It Works

1

Hexadecimal Code

&#x01B8; uses the Unicode hexadecimal value 01B8 to display the uppercase ezh reverse. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\1B8 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+01B8 sits in Latin Extended-B. Lowercase counterpart: U+01B9 (ƹ). There is no named HTML entity. Do not confuse with ezh Ʒ (U+01B7) or plain Z (U+005A).

Use Cases

The uppercase ezh reverse (Ƹ) is commonly used in:

📚 Linguistic studies

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

🎤 Phonetic transcription

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

📄 Academic papers

Scholarly publications and linguistic databases requiring extended Latin glyphs.

📝 Language documentation

Linguistic atlases, comparative studies, and orthography references.

⚙ 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 &#440; or &#x01B8; 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 reverse) from Ʒ (ezh) and plain Z (U+005A)
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Assume a named entity exists—there is none for Ƹ
  • Substitute plain ezh Ʒ or Z when Ƹ is required in notation
  • Put CSS escape \1B8 in HTML text nodes
  • Use padded Unicode notation like U+001B8—the correct value is U+01B8
  • Use \001B8 in CSS—the correct escape is \1B8

Key Takeaways

1

Three references render Ƹ (no named entity)

&#x01B8; &#440;
2

For CSS stylesheets, use the escape in the content property

\1B8
3

Unicode U+01B8 — LATIN CAPITAL LETTER EZH REVERSED

4

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

❓ Frequently Asked Questions

Use &#x01B8; (hex), &#440; (decimal), or \1B8 in CSS content. There is no named HTML entity for this character.
U+01B8 (LATIN CAPITAL LETTER EZH REVERSED). Latin Extended-B block. Hex 01B8, decimal 440. Used in linguistic studies and phonetic notation.
In linguistic studies, phonetic transcriptions, IPA documentation, academic papers, and any content requiring the reversed capital ezh glyph.
HTML code (&#440; or &#x01B8;) is used in HTML content. The CSS entity (\1B8) 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 &#440; or &#x01B8; in HTML, or \1B8 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