Angstrom Sign

Shortcodes

Copy useful codes for angstrom sign Å to use in websites, apps, blogs, and docs.

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

Customize Angstrom Sign

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

  

How to use Angstrom Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Å</span>
HTML Code:
<span>&#8491;</span>
HTML Entity:
<span>&angstrom;</span>
HEX Code:
<span>&#x212B;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.angstrom-sign').textContent = 'Å';
copied