HTML Entity for Uppercase A Circumflex (Â)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+00C2

What Is Uppercase A Circumflex?

Uppercase A circumflex (Â) is the Unicode character at U+00C2 in Latin-1 Supplement. Official name: LATIN CAPITAL LETTER A WITH CIRCUMFLEX — a capital A with a pointed hat (^ shape), used in French, Portuguese, Welsh, and Romanian.

Remember
Character     Â
Unicode       U+00C2
Named entity  Â  (capital A)
Hex entity    Â
Decimal       Â
CSS escape    \00C2
Not the same  â · Ǎ · Ă

Prefer  in HTML markup — the capital A in the name matters. Numeric forms and typing  in UTF-8 also work. For the lowercase letter, use â (â).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityÂHTML markup (preferred)
Direct characterÂHTML text (UTF-8)
Hex entityÂHTML markup
Decimal entityÂHTML markup
CSS escape\00C2Stylesheet content
Lowercase (related)â (U+00E2)Named â

When to Use Which

SituationUse
Capital A with circumflex (Â)Â or type Â
Lowercase a with circumflex (â)â (â)
Capital A with caron (Ǎ)Ǎ (&Acaron;)
Capital A with breve (Ă)Ă (Ă)
Capital A with acute (Á)Á (Á)
Generated text via ::before / ::aftercontent: "\00C2"

Live Preview

Uppercase A circumflex rendered alone and next to related letters.

Large glyph Â
Notation Âge, Âme
Compared   |  â  |  Ǎ
Hint Compare: Circumflex  | Lower â | Caron Ǎ
With entities Named: Â | Hex: Â | Decimal: Â

Complete HTML Example

One page that shows the letter with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce Â, plus a short French label example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase A Circumflex (Â)</title>
  <style>
    #point::after {
      content: "\00C2";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &Acirc;</p>
  <p>Using Hex Code: &#xC2;</p>
  <p>Using HTML Code: &#194;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Â</p>
  <p lang="fr">Label: &Acirc;ge</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &Acirc; (capital A) is the clearest HTML form for U+00C2. Lowercase &acirc; is a different character (â).

2. Hex: U+00C2 → &#xC2; in HTML. Same glyph as the named entity.

3. Decimal: same code point as 194 → &#194;. Same glyph as hex and named.

4. CSS: use \00C2 in content (not an HTML entity). #point::after appends that  after the paragraph text.

5. Typed / label: paste  in UTF-8, or build French words like &Acirc;ge with lang="fr".

Pitfalls & Tips

Common mistakes when working with U+00C2.

Case

&Acirc; ≠ &acirc;

&Acirc; → Â (capital). &acirc; → â (lowercase). Entity names are case-sensitive.

vs Ǎ

Not a caron

Ǎ (&Acaron;) is a háček. Â is a pointed circumflex — do not swap them in Pinyin vs French/Portuguese.

vs Ă

Not a breve

Ă (&Abreve;) is a short curved mark (Romanian). The circumflex looks similar in some fonts but is a different character.

Encoding

Keep UTF-8 declared

Latin-1 letters display reliably with <meta charset="UTF-8">. Prefer named entities when the source file encoding is uncertain.

CSS vs HTML

Do not mix escapes

\00C2 belongs in CSS strings. &Acirc; / &#xC2; / &#194; belong in HTML.

A11y

Use real language context

When  appears in real words (e.g. French), keep surrounding text and lang accurate so screen readers get useful context.

Browser Support

Uppercase A circumflex (U+00C2) and its entity forms (&Acirc;, &#xC2;, &#194;, CSS \\00C2) are supported in all mainstream browsers. Latin-1 Supplement glyphs are widely available in system fonts.

✓ Universal support

Uppercase A Circumflex (&#x00C2;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+00C2 / &Acirc; Full support

Bottom line: Prefer &Acirc; (capital A) in HTML. Use \\00C2 only inside CSS content. Do not confuse with &acirc; (â) or &Acaron; (Ǎ).

Key Takeaways

  • Unicode: uppercase A circumflex is U+00C2 (decimal 194) — glyph Â.
  • HTML: prefer &Acirc; (capital A) — also &#xC2; / &#194;.
  • CSS: use \00C2 inside content for generated text.
  • Meaning: Â is capital circumflex — not â (&acirc;), not Ǎ (&Acaron;).

One line: U+00C2 → &Acirc; / &#xC2; / &#194; / CSS \00C2.

Frequently Asked Questions

Use &Acirc; (named), &#xC2; (hex), &#194; (decimal), type  directly in UTF-8, or the CSS escape \00C2 in content. Prefer &Acirc; in normal HTML.
U+00C2 (LATIN CAPITAL LETTER A WITH CIRCUMFLEX). Hex C2, decimal 194. It belongs to Latin-1 Supplement (U+0080–U+00FF).
Yes. Use &Acirc; (capital A). Numeric forms &#194; and &#xC2; also work. Note: &acirc; (lowercase) is a different letter (â).
No. Â is U+00C2 (&Acirc;, capital circumflex). â is U+00E2 (&acirc;). Ǎ is U+01CD (&Acaron;, caron / háček).
Use it for French, Portuguese, Welsh, Romanian, and other languages that need  in titles, names, and uppercase text — not as a substitute for caron Ǎ or breve Ă.
HTML entities (&Acirc;, &#194;, or &#xC2;) go in markup. The CSS escape \00C2 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase A circumflex is Unicode U+00C2 (decimal 194) — glyph  in Latin-1 Supplement (U+0080–U+00FF). HTML5 names it &Acirc; (capital A). Official name: LATIN CAPITAL LETTER A WITH CIRCUMFLEX. Lowercase is &acirc; (â, U+00E2). Common in French, Portuguese, Welsh, and Romanian. Do not confuse with caron Ǎ (&Acaron;) or breve Ă (&Abreve;).

Next: Uppercase A Diaeresis Macron

Learn the HTML entity for uppercase A with diaeresis and macron (U+01DE).

Continue tutorial →

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