HTML Entity for Lowercase Ezh Reverse (ƹ)

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

What You'll Learn

How to display the lowercase ezh reversed (ƹ) in HTML using hexadecimal, decimal, and CSS escape methods. The reversed ezh is the mirror form of the standard ezh (ʒ) and is used in linguistic and phonetic transcription. It is U+01B9 in the Latin Extended-B block.

Render it with ƹ, ƹ, or CSS escape \1B9. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase Ezh Reverse Entity

Unicode U+01B9

Latin Extended-B

Hex Code ƹ

Hexadecimal reference

HTML Code ƹ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01B9
Hex code       ƹ
HTML code      ƹ
Named entity   (none)
CSS code       \1B9
Meaning        Latin small letter ezh reversed
Also known as  Lowercase ezh reverse
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

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

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

🌐 Browser Support

The lowercase ezh reverse (ƹ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the lowercase ezh reverse (ƹ) in linguistic contexts:

Large glyphƹ
Also known asEzh reversed / lowercase ezh reverse
Related glyphStandard ezh ʒ (U+0292), not reversed
Not the same asǯ (ezh with caron) or plain z
Numeric refs&#x1B9; &#441; \1B9

🧠 How It Works

1

Hexadecimal Code

&#x1B9; uses the Unicode hexadecimal value 1B9 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\1B9 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+01B9 sits in Latin Extended-B. Do not confuse ƹ (ezh reversed) with ʒ (standard ezh) or ǯ (ezh with caron). There is no named HTML entity.

Use Cases

The lowercase ezh reverse (ƹ) is commonly used in:

🔤 Phonetics

Linguistic and phonetic transcription requiring the reversed ezh glyph.

🌐 IPA Content

IPA-related notation and phonetic reference materials.

📚 Linguistics

Scholarly articles, research sites, and academic linguistics papers.

📄 Publishing

Editorial and academic content with specialized phonetic symbols.

📝 Language Learning

Dictionary entries and courses with phonetic notation.

🔍 Search & Accessibility

Correct encoding so linguistic content is indexed consistently.

🎨 Typography

Font documentation and typographic projects using extended Latin letters.

💡 Best Practices

Do

  • Use &#441; or &#x1B9; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ƹ directly in UTF-8 source
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish ƹ (ezh reversed) from ʒ (standard ezh)

Don’t

  • Assume a named entity exists—there is none for ƹ
  • Substitute standard ezh ʒ or z when ƹ is required
  • Put CSS escape \1B9 in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Confuse ƹ with ǯ (ezh caron) or other ezh variants

Key Takeaways

1

Three references render ƹ (no named entity)

&#x1B9; &#441;
2

For CSS stylesheets, use the escape in the content property

\1B9
3

Unicode U+01B9 — LATIN SMALL LETTER EZH REVERSED

4

Essential for linguistic transcription and phonetic web content

❓ Frequently Asked Questions

Use &#x1B9; (hex), &#441; (decimal), or \1B9 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+01B9 (LATIN SMALL LETTER EZH REVERSED). Latin Extended-B block. Hex 1B9, decimal 441. Used in linguistic and phonetic transcription.
In linguistic and phonetic transcription, IPA-related content, language learning and dictionary sites, academic linguistics papers, and any content requiring this character for phonetic notation.
HTML code (&#441; or &#x1B9;) is used in HTML content. The CSS entity (\1B9) 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 &#441; or &#x1B9; in HTML, or \1B9 in CSS. This is standard for many Latin Extended-B characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, 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