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