Small Roman Numeral Three

Shortcodes

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

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

Customize Small Roman Numeral Three Symbol

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

Insert ⅲ Small Roman Numeral Three using HTML

1. Copy-paste Small Roman Numeral Three directly:
<span>ⅲ</span>
2. HTML Decimal Code:
<span>&#8562;</span>
3. Hexadecimal Code:
<span>&#x2172;</span>
Preview:

Add Small Roman Numeral Three symbol with CSS

.small-roman-numeral-three::before {
    content: '\\2172';
}
Preview: Small Roman Numeral Three

Small Roman Numeral Three JavaScript Code

1. Direct Symbol:
document.querySelector('.small-roman-numeral-three').textContent = 'ⅲ';
2. Unicode Escape for ⅲ:
document.querySelector('.small-roman-numeral-three').textContent = '\u2172';
Preview: