Latin Small Letter A With Grave

à

Shortcodes

Copy useful codes for latin small letter a with grave symbol à to use in websites, apps, blogs, and docs.

Unicode
U+00E0
Alt Code
224
HTML Code
à
HTML Entity
à
HEX Code
à
CSS Code
\00E0
JS/JSON
\u00E0
Unix/C/PHP/JAVA
0xE0
URL-encode
%C3%A0

Customize Latin Small Letter A With Grave

Customize à, download it as SVG or PNG, or copy the generated HTML snippet.

à
  

How to use Latin Small Letter A With Grave Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>à</span>
HTML Code:
<span>&#224;</span>
HTML Entity:
<span>&agrave;</span>
HEX Code:
<span>&#x00E0;</span>

Add with CSS

.latin-small-letter-a-with-grave::before {
  content: '\\00E0';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-a-with-grave').textContent = 'à';
copied