HTML Entity for Uppercase E Dot Above (Ė)

What You'll Learn
How to display the uppercase E with dot above (Ė) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0116 in the Latin Extended-A block and is essential for Lithuanian and some phonetic notation.
Render it with Ė, Ė, Ė, or CSS escape \116. The named entity Ė is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Dot Above Entity
U+0116Latin Extended-A
ĖHexadecimal reference
ĖDecimal reference
ĖMost readable option
Name Value
──────────── ──────────
Unicode U+0116
Hex code Ė
HTML code Ė
Named entity Ė
CSS code \116
Meaning Latin capital letter E with dot above
Related U+0117 = ė (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase E dot above (Ė) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\116";
}
</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 dot above (Ė) and the named entity Ė are supported in modern browsers:
👀 Live Preview
See the uppercase E dot above (Ė) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ė uses the Unicode hexadecimal value 116 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ė uses the decimal Unicode value 278 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
\116 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+0116 sits in Latin Extended-A. Lowercase equivalent: U+0117 (ė). Do not confuse with plain E (U+0045), acute É (É), or cedilla Ȩ (U+0228).
Use Cases
The uppercase E dot above (Ė) is commonly used in:
Uppercase form in words like TĖVAS and LĖKTUVAS, headings, and all-caps Lithuanian text.
Websites and apps serving Lithuanian-speaking audiences with proper character display.
Phonetic transcription and linguistic materials using the overdot diacritic.
Courses, dictionaries, and glossaries teaching Lithuanian orthography.
Names of people, cities, and brands that include Ė in Lithuanian context.
Articles, books, and documents with Lithuanian text at sentence boundaries.
Correct spelling improves screen reader pronunciation and search indexing for Lithuanian 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="lt"for Lithuanian content so screen readers pronounce Ė correctly - Use fonts that support Latin Extended-A characters
- Distinguish Ė (dot above) from É (acute) and plain
E(U+0045)
Don’t
- Substitute plain
Ewhen Ė is required for correct Lithuanian spelling - Confuse dot above Ė with acute É or cedilla Ȩ
- Put CSS escape
\116in HTML text nodes - Use padded Unicode notation like U+00116—the correct value is
U+0116 - Use
\00116in CSS—the correct escape is\116
Key Takeaways
Four references render Ė; named entity is most readable
Ė Ė ĖFor CSS stylesheets, use the escape in the content property
\116Unicode U+0116 — LATIN CAPITAL LETTER E WITH DOT ABOVE
Essential for Lithuanian and i18n content
Previous: Uppercase E Diagonal Stroke (Ɇ) Next: Uppercase E Double Grave (Ȅ)
❓ Frequently Asked Questions
Ė (named), Ė (hex), Ė (decimal), or \116 in CSS content. The named entity Ė is the most readable for HTML content.U+0116 (LATIN CAPITAL LETTER E WITH DOT ABOVE). Latin Extended-A block. Hex 116, decimal 278. Used in Lithuanian and other languages with the overdot diacritic.Ė or Ė) or the named entity Ė is used in HTML content. The CSS entity (\116) 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
