HTML Entity for Uppercase A Circumflex (Â)

What You'll Learn
How to display the uppercase A with circumflex accent (Â) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00C2 in the Latin-1 Supplement block and is essential for French, Portuguese, Welsh, Romanian, and other languages.
Render it with Â, Â, Â, or CSS escape \C2. The named entity  is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Circumflex Entity
U+00C2Latin-1 Supplement
ÂHexadecimal reference
ÂDecimal reference
ÂMost readable option
Name Value
──────────── ──────────
Unicode U+00C2
Hex code Â
HTML code Â
Named entity Â
CSS code \C2
Meaning Latin capital letter A with circumflex
Related U+00E2 = â (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase A circumflex (Â) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\C2";
}
</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 A circumflex (Â) and the named entity  are universally supported in modern browsers:
👀 Live Preview
See the uppercase A circumflex (Â) in language and content contexts:
🧠 How It Works
Hexadecimal Code
 uses the Unicode hexadecimal value C2 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
 uses the decimal Unicode value 194 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
\C2 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+00C2 sits in Latin-1 Supplement. Lowercase equivalent: U+00E2 (â). Do not confuse with plain A (U+0041) or Á (acute).
Use Cases
The uppercase A circumflex (Â) is commonly used in:
Essential in words like Âge, Âme, and Âtre where the circumflex marks historical vowel length.
Used in words such as Âncora and Ângulo in Portuguese-language content.
Websites and apps serving French-, Portuguese-, Welsh-, or Romanian-speaking audiences.
Names of people, places, and brands that include  for correct spelling.
Language learning apps, dictionaries, and phonetic content for Romance languages.
Legal, academic, and editorial content in French and other languages using circumflex.
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  (circumflex) from Á (acute) and plain
A(U+0041)
Don’t
- Substitute plain
Awhen  is required for correct spelling - Confuse  with Á (acute) or Ä (diaeresis)—different characters
- Put CSS escape
\C2in 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
\C2Unicode U+00C2 — LATIN CAPITAL LETTER A WITH CIRCUMFLEX
Essential for French, Portuguese, Welsh, and i18n content
Previous: Uppercase A Dot Above Macron (Ǡ) Next: Uppercase A Diaeresis Macron
❓ Frequently Asked Questions
 (named),  (hex),  (decimal), or \C2 in CSS content. The named entity  is the most readable for HTML content.U+00C2 (LATIN CAPITAL LETTER A WITH CIRCUMFLEX). Latin-1 Supplement block. Hex C2, decimal 194. Used in French, Portuguese, Welsh, and other languages. or Â) or the named entity  is used in HTML content. The CSS entity (\C2) 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
