Latin Small Letter A With Ring Above

å

Shortcodes

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

Unicode
U+00E5
Alt Code
229
HTML Code
å
HTML Entity
å
HEX Code
å
CSS Code
\00E5
JS/JSON
\u00E5
Unix/C/PHP/JAVA
0xE5
URL-encode
%C3%A5

Customize Latin Small Letter A With Ring Above

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

å
  

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

Insert in HTML

1. Direct symbol:
<span>å</span>
HTML Code:
<span>&#229;</span>
HTML Entity:
<span>&aring;</span>
HEX Code:
<span>&#x00E5;</span>

Add with CSS

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

Set it in JavaScript

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