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