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