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