HTML Entity for Lowercase Ezh Tail (ƺ)

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

What You'll Learn

How to display the lowercase ezh with tail (ƺ) in HTML using hexadecimal, decimal, and CSS escape methods. Used in linguistic and phonetic transcription and in Twi language orthography, this letter combines the ezh (ʒ) base with a tail hook. It is U+01BA in the Latin Extended-B block.

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

⚡ Quick Reference — Lowercase Ezh Tail Entity

Unicode U+01BA

Latin Extended-B

Hex Code ƺ

Hexadecimal reference

HTML Code ƺ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

The lowercase ezh tail (ƺ) 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 tail (ƺ) in linguistic contexts:

Large glyphƺ
Also known asEzh with tail / lowercase ezh tail
Used inTwi orthography, linguistic transcription
Not the same asplain ezh ʒ (U+0292) or ƹ (ezh reversed)
Numeric refs&#x1BA; &#442; \1BA

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The lowercase ezh tail (ƺ) is commonly used in:

🇬🇫 Twi Language

Twi (Akan) orthography and language content requiring the ezh-with-tail letter.

🔤 Phonetics

Linguistic and phonetic transcription for labialized fricative notation.

🌐 IPA Content

IPA-related notation and phonetic reference materials.

📚 Linguistics

Scholarly articles, research sites, and academic linguistics papers.

📝 Language Learning

Dictionary entries and courses for Twi and related languages.

🔍 Search & Accessibility

Correct encoding so specialized language content is indexed consistently.

🎨 Typography

Font documentation and typographic projects using extended Latin letters.

💡 Best Practices

Do

  • Use &#442; or &#x1BA; 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 tail) from ʒ (standard ezh) and ƹ (ezh reversed)

Don’t

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

Key Takeaways

1

Three references render ƺ (no named entity)

&#x1BA; &#442;
2

For CSS stylesheets, use the escape in the content property

\1BA
3

Unicode U+01BA — LATIN SMALL LETTER EZH WITH TAIL

4

Essential for Twi orthography, linguistics, and phonetic web content

❓ Frequently Asked Questions

Use &#x1BA; (hex), &#442; (decimal), or \1BA in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+01BA (LATIN SMALL LETTER EZH WITH TAIL). Latin Extended-B block. Hex 1BA, decimal 442. Used in linguistic transcription and Twi language orthography.
In linguistic and phonetic transcription, IPA-related content, Twi language orthography, language learning and dictionary sites, and academic linguistics papers requiring this character.
HTML code (&#442; or &#x1BA;) is used in HTML content. The CSS entity (\1BA) 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 &#442; or &#x1BA; in HTML, or \1BA 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