HTML Entity for Uppercase E Acute (É)

What You'll Learn
How to display the uppercase E with acute accent (É) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00C9 in the Latin-1 Supplement block and is essential for French, Spanish, Portuguese, and other languages.
Render it with É, É, É, or CSS escape \C9. The named entity É is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Acute Entity
U+00C9Latin-1 Supplement
ÉHexadecimal reference
ÉDecimal reference
ÉMost readable option
Name Value
──────────── ──────────
Unicode U+00C9
Hex code É
HTML code É
Named entity É
CSS code \C9
Meaning Latin capital letter E with acute
Related U+00E9 = é (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase E acute (É) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\C9";
}
</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 acute (É) and the named entity É are universally supported in modern browsers:
👀 Live Preview
See the uppercase E acute (É) in language and content contexts:
🧠 How It Works
Hexadecimal Code
É uses the Unicode hexadecimal value C9 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
É uses the decimal Unicode value 201 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
\C9 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+00C9 sits in Latin-1 Supplement. Lowercase equivalent: U+00E9 (é). Do not confuse with plain E (U+0045).
Use Cases
The uppercase E acute (É) is commonly used in:
Essential in words and names like École, Été, and Évian where E starts with an acute accent.
Used in proper names and loanwords in Spanish and Portuguese text requiring correct orthography.
Websites and apps serving French-, Spanish-, or Portuguese-speaking audiences.
Names of people, cities, and brands that start with or include É.
Language learning apps, dictionaries, and phonetic content.
Legal, academic, and editorial content in Romance and other languages.
Correct rendering so users can find content with proper accented spelling.
💡 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") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish É (U+00C9) from plain
E(U+0045)—meaning can change in proper names
Don’t
- Substitute plain
Ewhen É is required for correct spelling - Confuse É with È (E grave) or other E variants
- Put CSS escape
\C9in 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
\C9Unicode U+00C9 — LATIN CAPITAL LETTER E WITH ACUTE
Essential for French, Spanish, Portuguese, and i18n content
Previous: Uppercase E Next: Uppercase E Breve (Ĕ)
❓ Frequently Asked Questions
É (named), É (hex), É (decimal), or \C9 in CSS content. The named entity É is the most readable for HTML content.U+00C9 (LATIN CAPITAL LETTER E WITH ACUTE). Latin-1 Supplement block. Hex C9, decimal 201. Used in French, Spanish, Portuguese, and other languages.É or É) or the named entity É is used in HTML content. The CSS entity (\C9) 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
