HTML Entity for Lowercase E Caron (ě)

What You'll Learn
How to display the lowercase e with caron (ě) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+011B in the Latin Extended-A block and is essential for Czech, Slovak, and other Central European languages.
Render it with ě, ě, ě, or CSS escape \11B. The named entity ě is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase E Caron Entity
U+011BLatin Extended-A
ěHexadecimal reference
ěDecimal reference
ěMost readable option
Name Value
──────────── ──────────
Unicode U+011B
Hex code ě
HTML code ě
Named entity ě
CSS code \11B
Meaning Latin small letter e with caron
Related U+011A = Ě (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase e caron (ě) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\11B";
}
</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 lowercase e caron (ě) and the named entity ě are supported in modern browsers:
👀 Live Preview
See the lowercase e caron (ě) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ě uses the Unicode hexadecimal value 11B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ě uses the decimal Unicode value 283 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
\11B 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+011B sits in Latin Extended-A. Uppercase equivalent: U+011A (Ě). Do not confuse with plain e (U+0065) or acute é (é).
Use Cases
The lowercase e caron (ě) is commonly used in:
Essential in words like děkuji, město, and věc for correct Czech spelling.
Used in Slovak and other Central European languages with the caron (háček) diacritic.
Czech and Slovak websites, apps, and localized content requiring proper character display.
Courses, dictionaries, and glossaries teaching Czech and Slovak orthography.
Names of people, cities, and brands that include ě in Czech or Slovak context.
Articles, books, and documents with Czech or Slovak text.
Correct spelling improves screen reader pronunciation and search indexing for Czech/Slovak content.
💡 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"for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ě (caron) from ĕ (breve) and é (acute)
Don’t
- Substitute plain
ewhen ě is required (děkuji vs dekuje changes meaning) - Confuse caron ě with breve ĕ or acute é
- Put CSS escape
\11Bin HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with Czech or Slovak characters
Key Takeaways
Four references render ě; named entity is most readable
ě ě ěFor CSS stylesheets, use the escape in the content property
\11BUnicode U+011B — LATIN SMALL LETTER E WITH CARON
Essential for Czech, Slovak, and Central European i18n content
Previous: Lowercase E Breve (ĕ) Next: Lowercase E Cedilla
❓ Frequently Asked Questions
ě (named), ě (hex), ě (decimal), or \11B in CSS content. The named entity ě is the most readable for HTML content.U+011B (LATIN SMALL LETTER E WITH CARON). Latin Extended-A block. Hex 11B, decimal 283. Used in Czech, Slovak, and other Central European languages.ě or ě) or the named entity ě is used in HTML content. The CSS entity (\11B) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ě but in different contexts.ě. It is part of the 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
