| Symbol Name | Angstrom Sign |
| Unicode Version | 1.1 |
| Unicode | U+212B |
| Unicode block | |
| General category | Uppercase Letter (Lu) |
| CSS Code | \212B |
| Hex Code | 0x212B |
| HTML Code | Å |
| LaTeX | \mathrm{Å} |
| Symbol | Å |
| URL encode (UTF-8 percent) | %E2%84%AB |
| Spoken / screen reader name | Angstrom Sign |
| UTF-8 | E2 84 AB |
| UTF-16 | 212B |
| UTF-32 | 0000212B |
1\documentclass{article}2\usepackage{pifont}3\mathrm{Å}4\end{document}You can type the angstrom sign symbol on most modern devices with the help of following methods:
Alt + 8491 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "angstrom sign", or use Unicode Hex Input with 212B.
Ctrl + Shift + U, type 212b, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with unit symbol support.
1span.angstrom-sign::before { content: "\212B"; }1<span>Å</span>Angstrom Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u212B' or String.fromCodePoint(0x212B) |
| Python | '\N{ANGSTROM SIGN}' or chr(8491) |
| Rust | '\u{212B}' |
| C / C++ | UTF-8 source or wchar_t with U+212B |
| Go | string(rune(0x212B)) |
| Ruby | "\u212B" |