Latin Capital Letter A With Ring Above

Å

Shortcodes

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

Unicode
U+00C5
Alt Code
197
HTML Code
Å
HTML Entity
Å
HEX Code
Å
CSS Code
\00C5
JS/JSON
\u00C5
Unix/C/PHP/JAVA
0xC5
URL-encode
%C3%85

Customize Latin Capital Letter A With Ring Above

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

Å
  

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

Insert in HTML

1. Direct symbol:
<span>Å</span>
HTML Code:
<span>&#197;</span>
HTML Entity:
<span>&Aring;</span>
HEX Code:
<span>&#x00C5;</span>

Add with CSS

.latin-capital-letter-a-with-ring-above::before {
  content: '\\00C5';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-a-with-ring-above').textContent = 'Å';
copied