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