| Nombre del símbolo | Subscript Zero |
| Versión Unicode | 1.1 |
| Unicode | U+2080 |
| Bloque Unicode | |
| Categoría general | Other Number (No) |
| Código CSS | \2080 |
| Código hexadecimal | 0x2080 |
| Código HTML | ₀ |
| LaTeX | _{0} |
| Símbolo | ₀ |
| Codificación URL (porcentaje UTF-8) | %E2%82%80 |
| Nombre oral / lector de pantalla | Subscript Zero |
| UTF-8 | E2 82 80 |
| UTF-16 | 2080 |
| UTF-32 | 00002080 |
1\documentclass{article}2\usepackage{pifont}3_{0}4\end{document}Puedes escribir el símbolo subscript zero en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8320 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "subscript zero", or use Unicode Hex Input with 2080.
Ctrl + Shift + U, type 2080, 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 enclosed numeral support.
1span.subscript-zero::before { content: "\2080"; }1<span>₀</span>La representación del símbolo Subscript Zero en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2080' or String.fromCodePoint(0x2080) |
| Python | '\N{SUBSCRIPT ZERO}' or chr(8320) |
| Rust | '\u{2080}' |
| C / C++ | UTF-8 source or wchar_t with U+2080 |
| Go | string(rune(0x2080)) |
| Ruby | "\u2080" |