HTML Entity for Uppercase Ezh Caron (Ǯ)

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

What You'll Learn

How to display the uppercase 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+01EE in the Latin Extended-B block.

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

⚡ Quick Reference — Uppercase Ezh Caron Entity

Unicode U+01EE

Latin Extended-B

Hex Code Ǯ

Hexadecimal reference

HTML Code Ǯ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01EE
Hex code       Ǯ
HTML code      Ǯ
Named entity   (none)
CSS code       \1EE
Meaning        Latin capital letter ezh with caron
Also known as  Uppercase ezh caron
Related        U+01EF = ǯ (lowercase); U+01B7 = Ʒ (ezh)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

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

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

🌐 Browser Support

The uppercase ezh caron (Ǯ) 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 caron (Ǯ) in linguistic and orthographic contexts:

Large glyphǮ
Case pairǮ (U+01EE) / ǯ (U+01EF)
Skolt SamiUsed in Skolt Sami and Uralic phonetic notation
Not the same asƷ (ezh)  |  Ƹ (ezh reverse)
Numeric refs&#x01EE; &#494; \1EE

🧠 How It Works

1

Hexadecimal Code

&#x01EE; uses the Unicode hexadecimal value 01EE to display the uppercase ezh caron. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\1EE 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+01EE sits in Latin Extended-B. Lowercase counterpart: U+01EF (ǯ). There is no named HTML entity. Do not confuse with plain ezh Ʒ (U+01B7).

Use Cases

The uppercase ezh caron (Ǯ) is commonly used in:

🇪🇺 Skolt Sami

Essential in Skolt Sami orthography for correct capital-letter spelling and localization.

🎤 Uralic phonetics

Uralic Phonetic Alphabet and related linguistic notation requiring ezh with caron.

📚 Linguistic studies

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

🌐 Laz & Livonian

Orthographies that use ezh caron variants in capitalized words and proper names.

📄 Academic papers

Scholarly publications and linguistic databases requiring extended Latin glyphs.

⚙ Programmatic HTML

When building HTML from language data, using &#494; or &#x01EE; guarantees correct output.

🔍 Search & SEO

Correct rendering so specialized linguistic content can be found and indexed.

💡 Best Practices

Do

  • Use &#494; or &#x01EE; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type Ǯ directly in UTF-8 source
  • Set appropriate lang attributes (e.g. lang="sms" for Skolt Sami)
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish Ǯ (ezh caron) from Ʒ (ezh) and Ƹ (ezh reverse)

Don’t

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

Key Takeaways

1

Three references render Ǯ (no named entity)

&#x01EE; &#494;
2

For CSS stylesheets, use the escape in the content property

\1EE
3

Unicode U+01EE — LATIN CAPITAL LETTER EZH WITH CARON

4

Used in Skolt Sami, Uralic phonetics, Laz, Livonian, and linguistic content

❓ Frequently Asked Questions

Use &#x01EE; (hex), &#494; (decimal), or \1EE in CSS content. There is no named HTML entity for this character.
U+01EE (LATIN CAPITAL LETTER EZH WITH CARON). Latin Extended-B block. Hex 01EE, decimal 494. Used in Uralic phonetics and Skolt Sami orthography.
In linguistic studies, Uralic phonetic notation, Skolt Sami and related language content, academic papers, and any text requiring the capital ezh-with-caron glyph.
HTML code (&#494; or &#x01EE;) is used in HTML content. The CSS entity (\1EE) 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 &#494; or &#x01EE; in HTML, or \1EE 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