Small Roman Numeral Five

Shortcodes

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

Unicode
U+2174
HTML Code
ⅴ
HEX Code
ⅴ
CSS Code
\2174
JS/JSON
\u2174
Unix/C/PHP/JAVA
0x2174
URL-encode
%E2%85%B4
copied

Customize Small Roman Numeral Five Symbol

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

Insert ⅴ Small Roman Numeral Five using HTML

1. Copy-paste Small Roman Numeral Five directly:
<span>ⅴ</span>
2. HTML Decimal Code:
<span>&#8564;</span>
3. Hexadecimal Code:
<span>&#x2174;</span>
Preview:

Add Small Roman Numeral Five symbol with CSS

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

Small Roman Numeral Five JavaScript Code

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