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