Roman Numeral Three

Shortcodes

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

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

Customize Roman Numeral Three Symbol

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

Insert Ⅲ Roman Numeral Three using HTML

1. Copy-paste Roman Numeral Three directly:
<span>Ⅲ</span>
2. HTML Decimal Code:
<span>&#8546;</span>
3. Hexadecimal Code:
<span>&#x2162;</span>
Preview:

Add Roman Numeral Three symbol with CSS

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

Roman Numeral Three JavaScript Code

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