| Nombre del símbolo | Angstrom Sign |
| Versión Unicode | 1.1 |
| Unicode | U+212B |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \212B |
| Código hexadecimal | 0x212B |
| Código HTML | Å |
| LaTeX | \mathrm{Å} |
| Símbolo | Å |
| Codificación URL (porcentaje UTF-8) | %E2%84%AB |
| Nombre oral / lector de pantalla | Angstrom Sign |
| UTF-8 | E2 84 AB |
| UTF-16 | 212B |
| UTF-32 | 0000212B |
1\documentclass{article}2\usepackage{pifont}3\mathrm{Å}4\end{document}Puedes escribir el símbolo angstrom sign en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Angstrom Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |