| Nom du symbole | Roman Numeral Six |
| Version Unicode | 1.1 |
| Unicode | U+2165 |
| Bloc Unicode | |
| Catégorie générale | Letter Number (Nl) |
| Code CSS | \2165 |
| Code hexadécimal | 0x2165 |
| Code HTML | Ⅵ |
| LaTeX | \mathrm{VI} |
| Symbole | VI |
| Encodage URL (pourcent UTF-8) | %56%49 |
| Nom oral / lecteur d’écran | Roman Numeral Six |
| UTF-8 | E2 85 A5 |
| UTF-16 | 2165 |
| UTF-32 | 00002165 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{VI}4\end{document}Vous pouvez saisir le symbole roman numeral six sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8549 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "roman numeral six", or use Unicode Hex Input with 2165.
Ctrl + Shift + U, type 2165, 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-six::before { content: "\2165"; }1<span>Ⅵ</span>La représentation du symbole Roman Numeral Six dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2165' or String.fromCodePoint(0x2165) |
| Python | '\N{ROMAN NUMERAL SIX}' or chr(8549) |
| Rust | '\u{2165}' |
| C / C++ | UTF-8 source or wchar_t with U+2165 |
| Go | string(rune(0x2165)) |
| Ruby | "\u2165" |