| Symbol Name | Roman Numeral Six |
| Unicode Version | 1.1 |
| Unicode | U+2165 |
| Unicode block | |
| General category | Letter Number (Nl) |
| CSS Code | \2165 |
| Hex Code | 0x2165 |
| HTML Code | Ⅵ |
| LaTeX | \mathrm{VI} |
| Symbol | VI |
| URL encode (UTF-8 percent) | %56%49 |
| Spoken / screen reader name | 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}You can type the roman numeral six symbol on most modern devices with the help of following methods:
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>Roman Numeral Six symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |