Small Roman Numeral Eleven

Shortcodes

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

Unicode
U+217A
HTML Code
ⅺ
HEX Code
ⅺ
CSS Code
\217A
JS/JSON
\u217A
Unix/C/PHP/JAVA
0x217A
URL-encode
%E2%85%BA

Customize Small Roman Numeral Eleven

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅺ</span>
HTML Code:
<span>&#8570;</span>
HEX Code:
<span>&#x217A;</span>

Add with CSS

.small-roman-numeral-eleven::before {
  content: '\\217A';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-eleven').textContent = 'ⅺ';
copied