HTML Entity for Lowercase E Grave (è)

What You'll Learn
How to display the lowercase e with grave accent (è) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00E8 in the Latin-1 Supplement block and is essential for French, Italian, and other languages.
Render it with è, è, è, or CSS escape \00E8. The named entity è is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase E Grave Entity
U+00E8Latin-1 Supplement
èHexadecimal reference
èDecimal reference
èMost readable option
Name Value
──────────── ──────────
Unicode U+00E8
Hex code è
HTML code è
Named entity è
CSS code \00E8
Meaning Latin small letter e with grave
Related U+00C8 = È (uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase e grave (è) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00E8";
}
</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 grave (è) and the named entity è are universally supported in modern browsers:
👀 Live Preview
See the lowercase e grave (è) in language and content contexts:
🧠 How It Works
Hexadecimal Code
è uses the Unicode hexadecimal value E8 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
è uses the decimal Unicode value 232 to display the same character. A common method for Latin-1 characters.
Named Entity
è is the standard named entity for è—readable in source HTML and part of the HTML Latin-1 entity set.
CSS Entity
\00E8 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+00E8 sits in Latin-1 Supplement. Uppercase equivalent: U+00C8 (È). Do not confuse with é (acute) or ȅ (double grave).
Use Cases
The lowercase e grave (è) is commonly used in:
Essential in words like mère, après, and très for correct French spelling.
Used in è, caffè, and perché for proper Italian orthography.
International and localized content that must display accented characters correctly.
Names of people, places, and brands that include è in French or Italian spelling.
Courses, dictionaries, and educational materials teaching grave-accented letters.
Articles, blogs, and published content quoting French and Italian words.
Correct spelling improves screen reader pronunciation and search indexing (e.g. mère vs mere).
💡 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
langattributes (e.g.lang="fr",lang="it") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish è (grave) from é (acute) and ȅ (double grave)
Don’t
- Substitute plain
ewhen è is required for correct spelling - Confuse è (grave) with é (acute)—meaning can change in French and Italian
- Put CSS escape
\00E8in HTML text nodes - Assume all fonts render accented Latin-1 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
\00E8Unicode U+00E8 — LATIN SMALL LETTER E WITH GRAVE
Essential for French, Italian, and i18n content
Previous: Lowercase E Double Grave (ȅ) Next: Lowercase E Inverted Breve
❓ Frequently Asked Questions
è (named), è (hex), è (decimal), or \00E8 in CSS content. The named entity è is the most readable for HTML content.U+00E8 (LATIN SMALL LETTER E WITH GRAVE). Latin-1 Supplement block. Hex E8, decimal 232. Used in French, Italian, and other languages.è or è) or the named entity è is used in HTML content. The CSS entity (\00E8) 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 HTML Latin-1 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
