HTML Entity for Lowercase A Circumflex (â)

What You'll Learn
How to display the lowercase a with circumflex (â) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The circumflex accent is used in French (e.g. âge, pâté), Portuguese, Romanian, and other languages. This character is U+00E2 in the Latin-1 Supplement block.
Render it with â, â, â, or CSS escape \E2. The named entity â is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase A Circumflex Entity
U+00E2Latin-1 Supplement
âHexadecimal reference
âDecimal reference
âMost readable option
Name Value
──────────── ──────────
Unicode U+00E2
Hex code â
HTML code â
Named entity â
CSS code \E2
Meaning Latin small letter a with circumflex
Related U+00C2 = Â (uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase a circumflex (â) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\E2";
}
</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 a circumflex (â) and the named entity â are supported in modern browsers:
👀 Live Preview
See the lowercase a circumflex (â) in French, Portuguese, and Romanian contexts:
🧠 How It Works
Hexadecimal Code
â uses the Unicode hexadecimal value E2 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
â uses the decimal Unicode value 226 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
\E2 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+00E2 sits in Latin-1 Supplement. Uppercase equivalent: U+00C2 (Â). Do not confuse with plain a (U+0061)—meaning can change (âge vs age).
Use Cases
The lowercase a circumflex (â) is commonly used in:
Essential in words like âge, pâté, château, and crâne. The circumflex often marks a historical dropped letter.
Used in Portuguese (e.g. ângulo, âmbito) and Romanian (e.g. România). Correct accent is required for meaning.
Names of people, cities, and brands that include â must display correctly for accessibility and SEO.
Language learning apps, dictionaries, and phonetic content teaching French and other languages.
Legal, academic, and editorial content in French, Portuguese, or Romanian.
Headlines, logos, and styled text in French or Portuguese requiring correct spelling.
Correct rendering so users can find content (e.g. searching for “pâté” or “România”).
💡 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="ro") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish â (U+00E2) from plain
a(U+0061)—meaning can change (âge vs age)
Don’t
- Substitute plain
awhen â is required for correct spelling - Confuse circumflex â with acute á, breve ă, or caron ǎ
- Put CSS escape
\E2in 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
\E2Unicode U+00E2 — LATIN SMALL LETTER A WITH CIRCUMFLEX
Essential for French, Portuguese, Romanian, and i18n content
Previous: Lowercase A Caron (ǎ) Next: Lowercase A Diaeresis Macron
❓ Frequently Asked Questions
â (named), â (hex), â (decimal), or \E2 in CSS content. The named entity â is the most readable for HTML content.U+00E2 (LATIN SMALL LETTER A WITH CIRCUMFLEX). Latin-1 Supplement block. Hex E2, decimal 226. Used in French, Portuguese, Romanian, and other languages.â or â) or the named entity â is used in HTML content. The CSS entity (\E2) 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
