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