Small Roman Numeral Two

Shortcodes

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

Unicode
U+2171
HTML Code
ⅱ
HEX Code
ⅱ
CSS Code
\2171
JS/JSON
\u2171
Unix/C/PHP/JAVA
0x2171
URL-encode
%E2%85%B1

Customize Small Roman Numeral Two

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅱ</span>
HTML Code:
<span>&#8561;</span>
HEX Code:
<span>&#x2171;</span>

Add with CSS

.small-roman-numeral-two::before {
  content: '\\2171';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-two').textContent = 'ⅱ';
copied