Roman Numeral Eleven

Shortcodes

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

Unicode
U+216A
HTML Code
Ⅺ
HEX Code
Ⅺ
CSS Code
\216A
JS/JSON
\u216A
Unix/C/PHP/JAVA
0x216A
URL-encode
%E2%85%AA

Customize Roman Numeral Eleven

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅺ</span>
HTML Code:
<span>&#8554;</span>
HEX Code:
<span>&#x216A;</span>

Add with CSS

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

Set it in JavaScript

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