Small Roman Numeral Twelve

Shortcodes

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

Unicode
U+217B
HTML Code
ⅻ
HEX Code
ⅻ
CSS Code
\217B
JS/JSON
\u217B
Unix/C/PHP/JAVA
0x217B
URL-encode
%E2%85%BB

Customize Small Roman Numeral Twelve

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅻ</span>
HTML Code:
<span>&#8571;</span>
HEX Code:
<span>&#x217B;</span>

Add with CSS

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

Set it in JavaScript

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