Roman Numeral Two

Shortcodes

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

Unicode
U+2161
HTML Code
Ⅱ
HEX Code
Ⅱ
CSS Code
\2161
JS/JSON
\u2161
Unix/C/PHP/JAVA
0x2161
URL-encode
%E2%85%A1
copied

Customize Roman Numeral Two Symbol

Customize Ⅱ symbol as you like and download 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 Roman Numeral Two symbol in HTML, CSS, and JS?

Insert Ⅱ Roman Numeral Two using HTML

1. Copy-paste Roman Numeral Two directly:
<span>Ⅱ</span>
2. HTML Decimal Code:
<span>&#8545;</span>
3. Hexadecimal Code:
<span>&#x2161;</span>
Preview:

Add Roman Numeral Two symbol with CSS

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

Roman Numeral Two JavaScript Code

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