HTML Entity for Uppercase A Grave (À)

What You'll Learn
How to display the uppercase A with grave accent (À) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00C0 in the Latin-1 Supplement block and is essential for French, Italian, Catalan, Corsican, and other languages.
Render it with À, À, À, or CSS escape \C0. The named entity À is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Grave Entity
U+00C0Latin-1 Supplement
ÀHexadecimal reference
ÀDecimal reference
ÀMost readable option
Name Value
──────────── ──────────
Unicode U+00C0
Hex code À
HTML code À
Named entity À
CSS code \C0
Meaning Latin capital letter A with grave
Related U+00E0 = à (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase A grave (À) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\C0";
}
</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 grave (À) and the named entity À are universally supported in modern browsers:
👀 Live Preview
See the uppercase A grave (À) in language and content contexts:
🧠 How It Works
Hexadecimal Code
À uses the Unicode hexadecimal value C0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
À uses the decimal Unicode value 192 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
\C0 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+00C0 sits in Latin-1 Supplement. Lowercase equivalent: U+00E0 (à). Do not confuse with plain A (U+0041) or Ȁ (double grave).
Use Cases
The uppercase A grave (À) is commonly used in:
Essential in phrases like À propos, À bientôt, and À votre service at the start of sentences.
Used in Italian and Catalan text where À appears at the beginning of words or phrases.
Websites and apps serving French-, Italian-, or Catalan-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 grave accent.
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 À (single grave) from Ȁ (double grave) and plain
A(U+0041)
Don’t
- Substitute plain
Awhen À is required for correct spelling - Confuse À with Á (acute) or Ȁ (double grave)—different characters
- Put CSS escape
\C0in 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
\C0Unicode U+00C0 — LATIN CAPITAL LETTER A WITH GRAVE
Essential for French, Italian, Catalan, and i18n content
Previous: Uppercase A Double Grave (Ȁ) Next: Uppercase A Inverted Breve
❓ Frequently Asked Questions
À (named), À (hex), À (decimal), or \C0 in CSS content. The named entity À is the most readable for HTML content.U+00C0 (LATIN CAPITAL LETTER A WITH GRAVE). Latin-1 Supplement block. Hex C0, decimal 192. Used in French, Italian, Catalan, and other languages.À or À) or the named entity À is used in HTML content. The CSS entity (\C0) 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
