| Nombre del símbolo | Roman Numeral Fifty |
| Versión Unicode | 1.1 |
| Unicode | U+216C |
| Bloque Unicode | |
| Categoría general | Letter Number (Nl) |
| Código CSS | \216C |
| Código hexadecimal | 0x216C |
| Código HTML | Ⅼ |
| LaTeX | \mathrm{L} |
| Símbolo | L |
| Codificación URL (porcentaje UTF-8) | %4C |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo roman numeral fifty en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Roman Numeral Fifty en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |