Roman Numeral Five

Shortcodes

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

Unicode
U+2164
HTML Code
Ⅴ
HEX Code
Ⅴ
CSS Code
\2164
JS/JSON
\u2164
Unix/C/PHP/JAVA
0x2164
URL-encode
%E2%85%A4
copied

Customize Roman Numeral Five Symbol

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

Insert Ⅴ Roman Numeral Five using HTML

1. Copy-paste Roman Numeral Five directly:
<span>Ⅴ</span>
2. HTML Decimal Code:
<span>&#8548;</span>
3. Hexadecimal Code:
<span>&#x2164;</span>
Preview:

Add Roman Numeral Five symbol with CSS

.roman-numeral-five::before {
    content: '\\2164';
}
Preview: Roman Numeral Five

Roman Numeral Five JavaScript Code

1. Direct Symbol:
document.querySelector('.roman-numeral-five').textContent = 'Ⅴ';
2. Unicode Escape for Ⅴ:
document.querySelector('.roman-numeral-five').textContent = '\u2164';
Preview: