HTML Entity for Uppercase E Caron (Ě)

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
U+011ALatin Extended-A
ĚHexadecimal reference
ĚDecimal reference
ĚMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\11A";
}
</style>
</head>
<body>
<p>Symbol (hex): Ě</p>
<p>Symbol (decimal): Ě</p>
<p>Symbol (named): Ě</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase E caron (Ě) and the named entity Ě are supported in modern browsers:
👀 Live Preview
See the uppercase E caron (Ě) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ě uses the Unicode hexadecimal value 11A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ě uses the decimal Unicode value 282 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Ě is the standard named entity for Ě—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\11A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ě. Unicode U+011A sits in Latin Extended-A. Lowercase equivalent: U+011B (ě). Do not confuse with plain E (U+0045), acute É (É), or breve &Ebreve; (Ĕ).
Use Cases
The uppercase E caron (Ě) is commonly used in:
Uppercase form of ě in Czech text, alphabet references, and all-caps headings.
Used in Slovak and other Central European languages with the caron (háček) diacritic.
Websites and apps serving Czech- and Slovak-speaking audiences.
Names of people, cities, and brands that include Ě at the start or within a word.
Czech and Slovak courses, textbooks, and pronunciation guides.
Scholarly papers and linguistic documentation on Slavic languages.
Correct rendering so users can find content with proper accented spelling.
💡 Best Practices
Do
- Use
Ěin HTML when possible for readability - Serve pages as UTF-8; you can also type Ě directly in UTF-8 source
- Set
lang="cs"orlang="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
Ewhen Ě is required for correct spelling - Confuse caron Ě with breve Ĕ or acute É
- Put CSS escape
\11Ain HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Ě; named entity is most readable
Ě Ě ĚFor CSS stylesheets, use the escape in the content property
\11AUnicode U+011A — LATIN CAPITAL LETTER E WITH CARON
Essential for Czech, Slovak, and Central European i18n content
Previous: Uppercase E Breve (Ĕ) Next: Uppercase E Cedilla (Ȩ)
❓ Frequently Asked Questions
Ě (named), Ě (hex), Ě (decimal), or \11A in CSS content. The named entity Ě 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.Ě or Ě) or the named entity Ě 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.Ě. It is part of the standard HTML5 entity set and is well supported. You can also use Ě or Ě for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
