| 記号名 | Roman Numeral Five Hundred |
| Unicodeバージョン | 1.1 |
| Unicode | U+216E |
| Unicodeブロック | |
| 一般カテゴリ | Letter Number (Nl) |
| CSSコード | \216E |
| 16進コード | 0x216E |
| HTMLコード | Ⅾ |
| LaTeX | \mathrm{D} |
| 記号 | D |
| URLエンコード(UTF-8パーセント) | %44 |
| 読み上げ名 / スクリーンリーダー | Roman Numeral Five Hundred |
| UTF-8 | E2 85 AE |
| UTF-16 | 216E |
| UTF-32 | 0000216E |
1\documentclass{article}2\usepackage{pifont}3\mathrm{D}4\end{document}以下の方法でほとんどの最新デバイスでroman numeral five hundred記号を入力できます:
Alt + 8558 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "roman numeral five hundred", or use Unicode Hex Input with 216E.
Ctrl + Shift + U, type 216e, 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-five-hundred::before { content: "\216E"; }1<span>Ⅾ</span>各プログラミング言語におけるRoman Numeral Five Hundred記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u216E' or String.fromCodePoint(0x216E) |
| Python | '\N{ROMAN NUMERAL FIVE HUNDRED}' or chr(8558) |
| Rust | '\u{216E}' |
| C / C++ | UTF-8 source or wchar_t with U+216E |
| Go | string(rune(0x216E)) |
| Ruby | "\u216E" |