| 記号名 | Roman Numeral Six |
| Unicodeバージョン | 1.1 |
| Unicode | U+2165 |
| Unicodeブロック | |
| 一般カテゴリ | Letter Number (Nl) |
| CSSコード | \2165 |
| 16進コード | 0x2165 |
| HTMLコード | Ⅵ |
| LaTeX | \mathrm{VI} |
| 記号 | VI |
| URLエンコード(UTF-8パーセント) | %56%49 |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでroman numeral six記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |