Latin Capital Letter A With Tilde

Ã

Shortcodes

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

Unicode
U+00C3
Alt Code
195
HTML Code
Ã
HTML Entity
Ã
HEX Code
Ã
CSS Code
\00C3
JS/JSON
\u00C3
Unix/C/PHP/JAVA
0xC3
URL-encode
%C3%83

Customize Latin Capital Letter A With Tilde

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

Ã
  

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

Insert in HTML

1. Direct symbol:
<span>Ã</span>
HTML Code:
<span>&#195;</span>
HTML Entity:
<span>&Atilde;</span>
HEX Code:
<span>&#x00C3;</span>

Add with CSS

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

Set it in JavaScript

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