Small Roman Numeral Fifty

Shortcodes

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

Unicode
U+217C
HTML Code
ⅼ
HEX Code
ⅼ
CSS Code
\217C
JS/JSON
\u217C
Unix/C/PHP/JAVA
0x217C
URL-encode
%E2%85%BC

Customize Small Roman Numeral Fifty

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅼ</span>
HTML Code:
<span>&#8572;</span>
HEX Code:
<span>&#x217C;</span>

Add with CSS

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

Set it in JavaScript

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