HTML Entity for Lowercase A Grave (à)

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

What Is the Lowercase A Grave Entity?

Lowercase a grave (à) is the Latin-1 Supplement character at Unicode U+00E0 (LATIN SMALL LETTER A WITH GRAVE). It is the letter a with a grave accent (`) — common in French, Italian, Portuguese, and Catalan.

Remember
Character     à
Unicode       U+00E0
Named entity  à
Hex entity    à
Decimal       à
CSS escape    \00E0
Capital       À (À)

Named, hex, decimal, CSS, and a typed character all produce the same glyph: à. Prefer à in HTML source for clarity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityàHTML markup (best default)
Hex entityàHTML markup
Decimal entityàHTML markup
CSS escape\00E0Stylesheet content
Direct characteràUTF-8 HTML text

When to Use Which

SituationUse
Readable HTML sourceà
Numeric entity requiredà or à
Generated text via ::before / ::aftercontent: "\00E0"
Capital ÀÀ — see Uppercase A Grave
Double grave ȁ insteadSee Lowercase A Double Grave

Live Preview

Lowercase a grave in French and comparison contexts.

French sample à, là, déjà
Large glyph à
Named entity à → à
vs a / À / á / ȁ à  |  a  |  À  |  á  |  ȁ
With entities Named: à | Hex: à | Decimal: à

Complete HTML Example

One page that shows this character with named, hex, decimal, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce à in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase A Grave (&agrave;)</title>
  <style>
    #point::after {
      content: "\00E0";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &agrave;</p>
  <p>Using Hex Code: &#xE0;</p>
  <p>Using HTML Code: &#224;</p>
  <p id="point">Using CSS Entity: </p>
  <p lang="fr">Français: &agrave;, l&agrave;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &agrave; is the clearest HTML form and renders à.

2. Hex: U+00E0 → &#xE0; in HTML. Same result as the named entity.

3. Decimal: same code point as 224 → &#224;. Same result as hex.

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

Pitfalls & Tips

Common mistakes when working with lowercase a grave.

Case

&agrave; ≠ &Agrave;

Named entities are case-sensitive. Lowercase is à; uppercase is À.

Look-alikes

Not double grave or acute

Double grave ȁ is U+0201. Acute á is &aacute;. Grave à is the single ` mark.

Compose

Prefer precomposed

Use &agrave; instead of a plus combining grave when the precomposed form exists.

CSS vs HTML

Do not mix escapes

\00E0 belongs in CSS. &agrave; / &#xE0; / &#224; belong in HTML.

Encoding

Declare UTF-8

If you type à directly, keep <meta charset="UTF-8"> so the file is not misread.

Semicolon

End references

Always finish with ; — write &agrave;, not &agrave.

Browser Support

Lowercase a grave (U+00E0) and its entity forms (&agrave;, &#xE0;, &#224;, CSS \\00E0) are supported in all modern browsers.

✓ Universal encoding

Lowercase A Grave (&agrave;)

Encode with named, hex, decimal, or CSS escape — or type à directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+00E0 Full support

Bottom line: Prefer &agrave; for readable HTML. Use \\00E0 only inside CSS content.

Key Takeaways

  • Unicode: this character is U+00E0 (decimal 224).
  • HTML: prefer &agrave; — or use &#xE0; / &#224;.
  • CSS: use \00E0 inside content for generated text.
  • Watch out: &agrave; ≠ &Agrave; ≠ &aacute; ≠ double grave ȁ.

One line: U+00E0 → &agrave; / &#xE0; / &#224; / CSS \00E0.

Frequently Asked Questions

Use &agrave; (named), &#xE0; (hex), &#224; (decimal), or the CSS escape \00E0 in the content property. All render à. Prefer &agrave; in HTML source.
U+00E0 (LATIN SMALL LETTER A WITH GRAVE). Hex E0, decimal 224. It belongs to the Latin-1 Supplement block (U+0080–U+00FF).
Yes. &agrave; is the HTML5 named entity for à. The capital form is &Agrave; (À, U+00C0) — names are case-sensitive.
Use it for French, Italian, Portuguese, Catalan, and other languages that need à, plus proper names and internationalized web content.
HTML entities (&agrave;, &#224;, or &#xE0;) go in markup. The CSS escape \00E0 is used in stylesheets (usually in the content property of ::before/::after). Both render à.
No. Double grave ȁ is U+0201 (no named entity). Acute á is &aacute; (U+00E1). Grave à is &agrave; (U+00E0) — a different diacritic.

Did you know?

Lowercase a grave is Unicode U+00E0 (decimal 224) — LATIN SMALL LETTER A WITH GRAVE in Latin-1 Supplement. HTML5 provides &agrave; — the most readable form. Capital is &Agrave; (À, U+00C0). Common in French (à, là), Italian, Portuguese, and Catalan.

Next: Lowercase A Inverted Breve

Learn the HTML entity for Lowercase A Inverted Breve — next in this sequence.

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