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