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