Roman Numeral Two

Shortcodes

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

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

Customize Roman Numeral Two

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅱ</span>
HTML Code:
<span>&#8545;</span>
HEX Code:
<span>&#x2161;</span>

Add with CSS

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

Set it in JavaScript

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