Roman Numeral Three

Shortcodes

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

Unicode
U+2162
HTML Code
Ⅲ
HEX Code
Ⅲ
CSS Code
\2162
JS/JSON
\u2162
Unix/C/PHP/JAVA
0x2162
URL-encode
%E2%85%A2

Customize Roman Numeral Three

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅲ</span>
HTML Code:
<span>&#8546;</span>
HEX Code:
<span>&#x2162;</span>

Add with CSS

.roman-numeral-three::before {
  content: '\\2162';
}

Set it in JavaScript

document.querySelector('.roman-numeral-three').textContent = 'Ⅲ';
copied