HTML Entity for Lowercase E Acute (é)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00E9

What You'll Learn

How to display the lowercase e with acute accent (é) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00E9 in the Latin-1 Supplement block and is essential for French, Spanish, Portuguese, and other languages.

Render it with é, é, é, or CSS escape \00E9. The named entity é is often the most readable option in HTML source.

⚡ Quick Reference — Lowercase E Acute Entity

Unicode U+00E9

Latin-1 Supplement

Hex Code é

Hexadecimal reference

HTML Code é

Decimal reference

Named Entity é

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00E9
Hex code       é
HTML code      é
Named entity   é
CSS code       \00E9
Meaning        Latin small letter e with acute
Related        U+00C9 = É (uppercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the lowercase e acute (é) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00E9";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xE9;</p>
<p>Symbol (decimal): &#233;</p>
<p>Symbol (named): &eacute;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase e acute (é) and the named entity &eacute; are universally supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase e acute (é) in language and content contexts:

Large glyphé
Frenchcafé, résumé, été
Spanish & PortugueseMéxico, café, pé
Named entity&eacute; renders as é
Numeric refs&#xE9; &#233; &eacute; \00E9

🧠 How It Works

1

Hexadecimal Code

&#xE9; uses the Unicode hexadecimal value E9 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#233; uses the decimal Unicode value 233 to display the same character. A common method for Latin-1 characters.

HTML markup
3

Named Entity

&eacute; is the standard named entity for é—readable in source HTML and part of the HTML Latin-1 entity set.

HTML markup
4

CSS Entity

\00E9 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: é. Unicode U+00E9 sits in Latin-1 Supplement. Uppercase equivalent: U+00C9 (&Eacute;). Do not confuse with plain e (U+0065).

Use Cases

The lowercase e acute (é) is commonly used in:

🇫🇷 French Content

Essential in words like café, résumé, and été for correct French spelling.

🇬🇤 Spanish & Portuguese

Used in México, café, and pé for proper orthography in Romance languages.

🌐 Multilingual Websites

International and localized content that must display accented characters correctly.

📝 Proper names

Names of people, cities, and brands that include é (e.g. Beyoncé, Montréal).

🔤 Language learning

Courses, dictionaries, and educational materials teaching accented letters.

📄 Publishing

Articles, blogs, and published content quoting French and other accented words.

🔍 Search & SEO

Correct spelling improves screen reader pronunciation and search indexing (e.g. café vs cafe).

💡 Best Practices

Do

  • Use &eacute; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type é directly in UTF-8 source
  • Set lang attributes (e.g. lang="fr") for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish é (U+00E9) from plain e (U+0065)—meaning can change (café vs cafe)

Don’t

  • Substitute plain e when é is required for correct spelling
  • Put CSS escape \00E9 in HTML text nodes
  • Assume all fonts render accented Latin-1 glyphs identically
  • Omit UTF-8 encoding on pages with accented characters
  • Mix entity styles randomly without reason in one file

Key Takeaways

1

Four references render é; named entity is most readable

&#xE9; &#233; &eacute;
2

For CSS stylesheets, use the escape in the content property

\00E9
3

Unicode U+00E9 — LATIN SMALL LETTER E WITH ACUTE

4

Essential for French, Spanish, Portuguese, and i18n content

❓ Frequently Asked Questions

Use &eacute; (named), &#xE9; (hex), &#233; (decimal), or \00E9 in CSS content. The named entity &eacute; is the most readable for HTML content.
U+00E9 (LATIN SMALL LETTER E WITH ACUTE). Latin-1 Supplement block. Hex E9, decimal 233. Used in French, Spanish, Portuguese, and many other languages.
When writing words in French (e.g. café, résumé), Spanish (e.g. México), Portuguese, and other languages that use this character, plus proper names and internationalized web content.
HTML code (&#233; or &#xE9;) or the named entity &eacute; is used in HTML content. The CSS entity (\00E9) is used in CSS, e.g. in the content property of pseudo-elements. Both produce é but in different contexts.
Yes. The named HTML entity is &eacute;. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use &#233; or &#xE9; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful