Angstrom Sign

Shortcodes

Copy and paste codes for Angstrom Sign symbol Å to use in your websites, apps, blogs, and more.

Unicode
U+212B
HTML Code
Å
HTML Entity
&angstrom;
HEX Code
Å
CSS Code
\212B
JS/JSON
\u212B
Unix/C/PHP/JAVA
0x212B
URL-encode
%E2%84%AB
copied

Customize Angstrom Sign Symbol

Customize Å symbol as you like and download Angstrom Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Angstrom Sign symbol in HTML, CSS, and JS?

Insert Å Angstrom Sign using HTML

1. Copy-paste Angstrom Sign directly:
<span>Å</span>
2. HTML Decimal Code:
<span>&#8491;</span>
3. HTML Entity:
<span>&angstrom;</span>
4. Hexadecimal Code:
<span>&#x212B;</span>
Preview:

Add Angstrom Sign symbol with CSS

.angstrom-sign::before {
    content: '\\212B';
}
Preview: Angstrom Sign

Angstrom Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.angstrom-sign').textContent = 'Å';
2. Unicode Escape for Å:
document.querySelector('.angstrom-sign').textContent = '\u212B';
Preview: