HTML Entity for Lowercase E Dot Above (ė)

What You'll Learn
How to display the lowercase e with dot above (ė) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0117 in the Latin Extended-A block and is essential for Lithuanian and some phonetic notation.
Render it with ė, ė, ė, or CSS escape \117. The named entity ė is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase E Dot Above Entity
U+0117Latin Extended-A
ėHexadecimal reference
ėDecimal reference
ėMost readable option
Name Value
──────────── ──────────
Unicode U+0117
Hex code ė
HTML code ė
Named entity ė
CSS code \117
Meaning Latin small letter e with dot above
Related U+0116 = Ė (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase 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: "\117";
}
</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 dot above (ė) and the named entity ė are supported in modern browsers:
👀 Live Preview
See the lowercase e dot above (ė) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ė uses the Unicode hexadecimal value 117 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ė uses the decimal Unicode value 279 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
\117 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+0117 sits in Latin Extended-A. Uppercase equivalent: U+0116 (Ė). Do not confuse with plain e (U+0065) or acute é (é).
Use Cases
The lowercase e dot above (ė) is commonly used in:
Essential in words like vėl, tėvas, and lėktuvas for correct Lithuanian spelling.
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.
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+0065)
Don’t
- Substitute plain
ewhen ė is required for correct Lithuanian spelling - Confuse dot above ė with acute é or stroke ɇ
- Put CSS escape
\117in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with Lithuanian characters
Key Takeaways
Four references render ė; named entity is most readable
ė ė ėFor CSS stylesheets, use the escape in the content property
\117Unicode U+0117 — LATIN SMALL LETTER E WITH DOT ABOVE
Essential for Lithuanian and i18n content
Previous: Lowercase E Diagonal Stroke (ɇ) Next: Lowercase E Double Grave
❓ Frequently Asked Questions
ė (named), ė (hex), ė (decimal), or \117 in CSS content. The named entity ė is the most readable for HTML content.U+0117 (LATIN SMALL LETTER E WITH DOT ABOVE). Latin Extended-A block. Hex 117, decimal 279. Used in Lithuanian and some phonetic notation.ė or ė) or the named entity ė is used in HTML content. The CSS entity (\117) 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
