Roman Numeral Fifty

Shortcodes

Copy useful codes for roman numeral fifty symbol Ⅼ to use in websites, apps, blogs, and docs.

Unicode
U+216C
HTML Code
Ⅼ
HEX Code
Ⅼ
CSS Code
\216C
JS/JSON
\u216C
Unix/C/PHP/JAVA
0x216C
URL-encode
%E2%85%AC

Customize Roman Numeral Fifty

Customize Ⅼ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Roman Numeral Fifty Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ⅼ</span>
HTML Code:
<span>&#8556;</span>
HEX Code:
<span>&#x216C;</span>

Add with CSS

.roman-numeral-fifty::before {
  content: '\\216C';
}

Set it in JavaScript

document.querySelector('.roman-numeral-fifty').textContent = 'Ⅼ';
copied