HTML Entity for Uppercase E Caron (Ě)

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

What You'll Learn

How to display the uppercase E with caron (Ě) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+011A in the Latin Extended-A block and is essential for Czech, Slovak, and other Central European languages.

Render it with Ě, Ě, Ě, or CSS escape \11A. The named entity Ě is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase E Caron Entity

Unicode U+011A

Latin Extended-A

Hex Code Ě

Hexadecimal reference

HTML Code Ě

Decimal reference

Named Entity Ě

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+011A
Hex code       Ě
HTML code      Ě
Named entity   Ě
CSS code       \11A
Meaning        Latin capital letter E with caron
Related        U+011B = ě (lowercase)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase E caron (Ě) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\11A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x11A;</p>
<p>Symbol (decimal): &#282;</p>
<p>Symbol (named): &Ecaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase E caron (Ě) and the named entity &Ecaron; are supported in modern browsers:

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

👀 Live Preview

See the uppercase E caron (Ě) in language and content contexts:

Large glyphĚ
Czech alphabetČ č Ď ď Ě ě …
Case pairĚ (uppercase) / ě (lowercase)
Named entity&Ecaron; renders as Ě
Numeric refs&#x11A; &#282; &Ecaron; \11A

🧠 How It Works

1

Hexadecimal Code

&#x11A; uses the Unicode hexadecimal value 11A to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Ecaron; is the standard named entity for Ě—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\11A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ě. Unicode U+011A sits in Latin Extended-A. Lowercase equivalent: U+011B (&ecaron;). Do not confuse with plain E (U+0045), acute &Eacute; (É), or breve &Ebreve; (Ĕ).

Use Cases

The uppercase E caron (Ě) is commonly used in:

🇨🇿 Czech

Uppercase form of ě in Czech text, alphabet references, and all-caps headings.

🇸🇰 Slovak

Used in Slovak and other Central European languages with the caron (háček) diacritic.

🌐 Internationalization

Websites and apps serving Czech- and Slovak-speaking audiences.

📝 Proper names

Names of people, cities, and brands that include Ě at the start or within a word.

📚 Language learning

Czech and Slovak courses, textbooks, and pronunciation guides.

📄 Academic publishing

Scholarly papers and linguistic documentation on Slavic languages.

🔍 Search & SEO

Correct rendering so users can find content with proper accented spelling.

💡 Best Practices

Do

  • Use &Ecaron; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ě directly in UTF-8 source
  • Set lang="cs" or lang="sk" on Czech or Slovak content
  • Use fonts that support Latin Extended-A (U+0100–U+017F)
  • Distinguish Ě (caron) from Ĕ (breve) and É (acute)

Don’t

  • Substitute plain E when Ě is required for correct spelling
  • Confuse caron Ě with breve Ĕ or acute É
  • Put CSS escape \11A in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ě; named entity is most readable

&#x11A; &#282; &Ecaron;
2

For CSS stylesheets, use the escape in the content property

\11A
3

Unicode U+011A — LATIN CAPITAL LETTER E WITH CARON

4

Essential for Czech, Slovak, and Central European i18n content

❓ Frequently Asked Questions

Use &Ecaron; (named), &#x11A; (hex), &#282; (decimal), or \11A in CSS content. The named entity &Ecaron; is the most readable for HTML content.
U+011A (LATIN CAPITAL LETTER E WITH CARON). Latin Extended-A block. Hex 11A, decimal 282. Used in Czech, Slovak, and other Central European languages.
When writing Czech or Slovak text at sentence or word boundaries, multilingual websites, proper names, academic papers, and any content requiring the E with caron (háček) diacritic.
HTML code (&#282; or &#x11A;) or the named entity &Ecaron; is used in HTML content. The CSS entity (\11A) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ě but in different contexts.
Yes. The named HTML entity is &Ecaron;. It is part of the standard HTML5 entity set and is well supported. You can also use &#282; or &#x11A; for numeric references.

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