HTML Entity for Lowercase E Circumflex (ê)

What You'll Learn
How to display the lowercase e with circumflex (ê) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00EA in the Latin-1 Supplement block and is essential for French, Portuguese, and other languages.
Render it with ê, ê, ê, or CSS escape \EA. The named entity ê is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase E Circumflex Entity
U+00EALatin-1 Supplement
êHexadecimal reference
êDecimal reference
êMost readable option
Name Value
──────────── ──────────
Unicode U+00EA
Hex code ê
HTML code ê
Named entity ê
CSS code \EA
Meaning Latin small letter e with circumflex
Related U+00CA = Ê (uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase e circumflex (ê) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\EA";
}
</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 circumflex (ê) and the named entity ê are universally supported in modern browsers:
👀 Live Preview
See the lowercase e circumflex (ê) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ê uses the Unicode hexadecimal value EA to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ê uses the decimal Unicode value 234 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
\EA 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+00EA sits in Latin-1 Supplement. Uppercase equivalent: U+00CA (Ê). Do not confuse with plain e (U+0065) or acute é (é).
Use Cases
The lowercase e circumflex (ê) is commonly used in:
Essential in words like tête, forêt, and crêpe for correct French spelling.
Used in você, mês, and other Portuguese words with circumflex accent.
Websites and apps serving French- and Portuguese-speaking audiences.
Names of people, cities, and brands that include ê in French or Portuguese context.
Courses, dictionaries, and educational materials teaching accented letters.
Articles, blogs, and published content in French and Portuguese.
Correct spelling improves screen reader pronunciation and search indexing (e.g. tête vs tete).
💡 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="fr"orlang="pt"for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish ê (circumflex) from é (acute) and plain
e(U+0065)
Don’t
- Substitute plain
ewhen ê is required (tête vs tete changes meaning) - Confuse circumflex ê with acute é or grave è
- Put CSS escape
\EAin 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
\EAUnicode U+00EA — LATIN SMALL LETTER E WITH CIRCUMFLEX
Essential for French, Portuguese, and i18n content
Previous: Lowercase E Cedilla (ȩ) Next: Lowercase E Diagonal Stroke
❓ Frequently Asked Questions
ê (named), ê (hex), ê (decimal), or \EA in CSS content. The named entity ê is the most readable for HTML content.U+00EA (LATIN SMALL LETTER E WITH CIRCUMFLEX). Latin-1 Supplement block. Hex EA, decimal 234. Used in French, Portuguese, and other languages.ê or ê) or the named entity ê is used in HTML content. The CSS entity (\EA) 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
