Small Roman Numeral Three

Shortcodes

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

Unicode
U+2172
HTML Code
ⅲ
HEX Code
ⅲ
CSS Code
\2172
JS/JSON
\u2172
Unix/C/PHP/JAVA
0x2172
URL-encode
%E2%85%B2

Customize Small Roman Numeral Three

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅲ</span>
HTML Code:
<span>&#8562;</span>
HEX Code:
<span>&#x2172;</span>

Add with CSS

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

Set it in JavaScript

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