HTML Entity for Lowercase A Grave (à)

What You'll Learn
How to display the lowercase a with grave accent (à) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is used in French (e.g. à, là, déjà), Italian (e.g. perché), Portuguese, and other languages. It is U+00E0 in the Latin-1 Supplement block.
Render it with à, à, à, or CSS escape \E0. The named entity à is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase A Grave Entity
U+00E0Latin-1 Supplement
àHexadecimal reference
àDecimal reference
àMost readable option
Name Value
──────────── ──────────
Unicode U+00E0
Hex code à
HTML code à
Named entity à
CSS code \E0
Meaning Latin small letter a with grave
Related U+00C0 = À (uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase a grave (à) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\E0";
}
</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 grave (à) and the named entity à are supported in modern browsers:
👀 Live Preview
See the lowercase a grave (à) in French, Italian, and Portuguese contexts:
🧠 How It Works
Hexadecimal Code
à uses the Unicode hexadecimal value E0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
à uses the decimal Unicode value 224 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
\E0 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+00E0 sits in Latin-1 Supplement. Uppercase equivalent: U+00C0 (À). Do not confuse with ȁ (double grave, U+0201).
Use Cases
The lowercase a grave (à) is commonly used in:
Essential in words like à (to/at), là (there), déjà (already), and voilà.
Used in Italian (e.g. perché, più, città) and Portuguese. 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, Italian, or Portuguese.
Headlines, logos, and styled text in French or Italian requiring correct spelling.
Correct rendering so users can find content (e.g. searching for “déjà” or “perché”).
💡 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="it") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish à (single grave) from ȁ (double grave) and plain
a
Don’t
- Substitute plain
awhen à is required for correct spelling - Confuse single grave à with double grave ȁ
- Put CSS escape
\E0in 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
\E0Unicode U+00E0 — LATIN SMALL LETTER A WITH GRAVE
Essential for French, Italian, Portuguese, and i18n content
Previous: Lowercase A Double Grave (ȁ) Next: Lowercase A Inverted Breve
❓ Frequently Asked Questions
à (named), à (hex), à (decimal), or \E0 in CSS content. The named entity à is the most readable for HTML content.U+00E0 (LATIN SMALL LETTER A WITH GRAVE). Latin-1 Supplement block. Hex E0, decimal 224. Used in French, Italian, Portuguese, and other languages.à or à) or the named entity à is used in HTML content. The CSS entity (\E0) 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
