HTML Entity for Uppercase E Grave (È)

What You'll Learn
How to display the uppercase E with grave accent (È) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00C8 in the Latin-1 Supplement block and is essential for French, Italian, and other languages.
Render it with È, È, È, or CSS escape \C8. The named entity È is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Grave Entity
U+00C8Latin-1 Supplement
ÈHexadecimal reference
ÈDecimal reference
ÈMost readable option
Name Value
──────────── ──────────
Unicode U+00C8
Hex code È
HTML code È
Named entity È
CSS code \C8
Meaning Latin capital letter E with grave
Related U+00E8 = è (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase E grave (È) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\C8";
}
</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 grave (È) and the named entity È are universally supported in modern browsers:
👀 Live Preview
See the uppercase E grave (È) in language and content contexts:
🧠 How It Works
Hexadecimal Code
È uses the Unicode hexadecimal value C8 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
È uses the decimal Unicode value 200 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
\C8 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+00C8 sits in Latin-1 Supplement. Lowercase equivalent: U+00E8 (è). Do not confuse with É (acute), Ȅ (double grave), or plain E (U+0045).
Use Cases
The uppercase E grave (È) is commonly used in:
Sentence-start form of “is”: È importante, È vero, and similar constructions.
Uppercase form in all-caps text such as MÈRE and TRÈS for correct French spelling.
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, books, and documents with French and Italian text at sentence boundaries.
Correct spelling improves screen reader pronunciation and search indexing for accented 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
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
\C8in HTML text nodes - Use padded Unicode notation like U+000C8—the correct value is
U+00C8 - Use
\000C8in CSS—the correct escape is\C8
Key Takeaways
Four references render È; named entity is most readable
È È ÈFor CSS stylesheets, use the escape in the content property
\C8Unicode U+00C8 — LATIN CAPITAL LETTER E WITH GRAVE
Essential for French, Italian, and i18n content
Previous: Uppercase E Double Grave (Ȅ) Next: Uppercase E Inverted Breve (Ȇ)
❓ Frequently Asked Questions
È (named), È (hex), È (decimal), or \C8 in CSS content. The named entity È is the most readable for HTML content.U+00C8 (LATIN CAPITAL LETTER E WITH GRAVE). Latin-1 Supplement block. Hex C8, decimal 200. Used in French, Italian, and other languages.È or È) or the named entity È is used in HTML content. The CSS entity (\C8) 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
