HTML Entity for Uppercase E Circumflex (Ê)

What You'll Learn
How to display the uppercase E with circumflex (Ê) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00CA in the Latin-1 Supplement block and is essential for French, Portuguese, Vietnamese, and other languages.
Render it with Ê, Ê, Ê, or CSS escape \CA. The named entity Ê is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Circumflex Entity
U+00CALatin-1 Supplement
ÊHexadecimal reference
ÊDecimal reference
ÊMost readable option
Name Value
──────────── ──────────
Unicode U+00CA
Hex code Ê
HTML code Ê
Named entity Ê
CSS code \CA
Meaning Latin capital letter E with circumflex
Related U+00EA = ê (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase E circumflex (Ê) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\CA";
}
</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 circumflex (Ê) and the named entity Ê are universally supported in modern browsers:
👀 Live Preview
See the uppercase E circumflex (Ê) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ê uses the Unicode hexadecimal value CA to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ê uses the decimal Unicode value 202 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
\CA 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+00CA sits in Latin-1 Supplement. Lowercase equivalent: U+00EA (ê). Do not confuse with plain E (U+0045), acute É (É), or grave È (È).
Use Cases
The uppercase E circumflex (Ê) is commonly used in:
Uppercase form in words like ÊTRE and ÊTAT, headings, and all-caps French text.
Used in Portuguese content requiring uppercase E with circumflex accent.
Vietnamese alphabet uses circumflex on E; uppercase Ê appears in proper nouns and headings.
Websites and apps serving French-, Portuguese-, and Vietnamese-speaking audiences.
Names of people, cities, and brands that include Ê at the start or within a word.
Courses, dictionaries, and educational materials teaching accented letters.
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
lang="fr",lang="pt", orlang="vi"on relevant content - Use fonts that support Latin-1 Supplement characters
- Distinguish Ê (circumflex) from É (acute) and plain
E(U+0045)
Don’t
- Substitute plain
Ewhen Ê is required for correct spelling - Confuse circumflex Ê with acute É or grave È
- Put CSS escape
\CAin HTML text nodes - Use padded Unicode notation like U+000CA—the correct value is
U+00CA - Use
\000CAin CSS—the correct escape is\CA
Key Takeaways
Four references render Ê; named entity is most readable
Ê Ê ÊFor CSS stylesheets, use the escape in the content property
\CAUnicode U+00CA — LATIN CAPITAL LETTER E WITH CIRCUMFLEX
Essential for French, Portuguese, Vietnamese, and i18n content
Previous: Uppercase E Cedilla (Ȩ) Next: Uppercase E Closed (ɞ)
❓ Frequently Asked Questions
Ê (named), Ê (hex), Ê (decimal), or \CA in CSS content. The named entity Ê is the most readable for HTML content.U+00CA (LATIN CAPITAL LETTER E WITH CIRCUMFLEX). Latin-1 Supplement block. Hex CA, decimal 202. Used in French, Portuguese, Vietnamese, and other languages.Ê or Ê) or the named entity Ê is used in HTML content. The CSS entity (\CA) 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
