HTML Entity for Lowercase Ezh Caron (ǯ)

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

What You'll Learn

How to display the lowercase ezh with caron (ǯ) in HTML using hexadecimal, decimal, and CSS escape methods. Used in the Uralic Phonetic Alphabet, Skolt Sami, Laz, and Livonian orthography, this letter combines the ezh (ʒ) base with a caron (háček) accent. It is U+01EF in the Latin Extended-B block.

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

⚡ Quick Reference — Lowercase Ezh Caron Entity

Unicode U+01EF

Latin Extended-B

Hex Code ǯ

Hexadecimal reference

HTML Code ǯ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

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

Large glyphǯ
Also known asEzh with caron / lowercase ezh caron
Used inUralic Phonetic Alphabet, Skolt Sami, Laz, Livonian
Not the same asplain ezh ʒ (U+0292) without caron
Numeric refs&#x1EF; &#495; \1EF

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\1EF 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+01EF sits in Latin Extended-B. Do not confuse ǯ (ezh with caron) with plain ezh ʒ (U+0292). There is no named HTML entity.

Use Cases

The lowercase ezh caron (ǯ) is commonly used in:

🔤 Uralic Phonetics

Uralic Phonetic Alphabet transcriptions and linguistic notation.

🇮🇸 Skolt Sami

Skolt Sami language websites, dictionaries, and educational content.

🌐 Laz & Livonian

Orthographies that use the ezh-with-caron letter in native spelling.

📚 Linguistics

Scholarly articles, research sites, and phonetic annotation tools.

📄 Publishing

Academic papers and editorial content on Uralic and Caucasian languages.

🔍 Search & Accessibility

Correct encoding so specialized language content is indexed consistently.

📝 Language Learning

Dictionary entries and courses for minority and Uralic languages.

💡 Best Practices

Do

  • Use &#495; or &#x1EF; 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 caron) from plain ezh ʒ (U+0292)

Don’t

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

Key Takeaways

1

Three references render ǯ (no named entity)

&#x1EF; &#495;
2

For CSS stylesheets, use the escape in the content property

\1EF
3

Unicode U+01EF — LATIN SMALL LETTER EZH WITH CARON

4

Essential for Uralic phonetics, Skolt Sami, Laz, and Livonian content

❓ Frequently Asked Questions

Use &#x1EF; (hex), &#495; (decimal), or \1EF in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+01EF (LATIN SMALL LETTER EZH WITH CARON). Latin Extended-B block. Hex 1EF, decimal 495. Used in the Uralic Phonetic Alphabet, Skolt Sami, Laz, and Livonian orthography.
In linguistic and phonetic transcription, Uralic language content (e.g. Skolt Sami), Laz and Livonian orthography, language learning and dictionary sites, and academic linguistics papers requiring this character.
HTML code (&#495; or &#x1EF;) is used in HTML content. The CSS entity (\1EF) 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 &#495; or &#x1EF; in HTML, or \1EF 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