Roman Numeral Twelve

Shortcodes

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

Unicode
U+216B
HTML Code
Ⅻ
HEX Code
Ⅻ
CSS Code
\216B
JS/JSON
\u216B
Unix/C/PHP/JAVA
0x216B
URL-encode
%E2%85%AB

Customize Roman Numeral Twelve

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅻ</span>
HTML Code:
<span>&#8555;</span>
HEX Code:
<span>&#x216B;</span>

Add with CSS

.roman-numeral-twelve::before {
  content: '\\216B';
}

Set it in JavaScript

document.querySelector('.roman-numeral-twelve').textContent = 'Ⅻ';
copied