| Nom du symbole | Roman Numeral Fifty |
| Version Unicode | 1.1 |
| Unicode | U+216C |
| Bloc Unicode | |
| Catégorie générale | Letter Number (Nl) |
| Code CSS | \216C |
| Code hexadécimal | 0x216C |
| Code HTML | Ⅼ |
| LaTeX | \mathrm{L} |
| Symbole | L |
| Encodage URL (pourcent UTF-8) | %4C |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole roman numeral fifty sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Roman Numeral Fifty dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |