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