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