Latin Capital Letter A With Grave

À

Shortcodes

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

Unicode
U+00C0
Alt Code
192
HTML Code
À
HTML Entity
À
HEX Code
À
CSS Code
\00C0
JS/JSON
\u00C0
Unix/C/PHP/JAVA
0xC0
URL-encode
%C3%80

Customize Latin Capital Letter A With Grave

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

À
  

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

Insert in HTML

1. Direct symbol:
<span>À</span>
HTML Code:
<span>&#192;</span>
HTML Entity:
<span>&Agrave;</span>
HEX Code:
<span>&#x00C0;</span>

Add with CSS

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

Set it in JavaScript

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