Small Roman Numeral Two

Shortcodes

Copy and paste codes for Small Roman Numeral Two symbol ⅱ to use in your websites, apps, blogs, and more.

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

Customize Small Roman Numeral Two Symbol

Customize ⅱ symbol as you like and download Small Roman Numeral Two as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Small Roman Numeral Two symbol in HTML, CSS, and JS?

Insert ⅱ Small Roman Numeral Two using HTML

1. Copy-paste Small Roman Numeral Two directly:
<span>ⅱ</span>
2. HTML Decimal Code:
<span>&#8561;</span>
3. Hexadecimal Code:
<span>&#x2171;</span>
Preview:

Add Small Roman Numeral Two symbol with CSS

.small-roman-numeral-two::before {
    content: '\\2171';
}
Preview: Small Roman Numeral Two

Small Roman Numeral Two JavaScript Code

1. Direct Symbol:
document.querySelector('.small-roman-numeral-two').textContent = 'ⅱ';
2. Unicode Escape for ⅱ:
document.querySelector('.small-roman-numeral-two').textContent = '\u2171';
Preview: