Small Roman Numeral Five

Shortcodes

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

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

Customize Small Roman Numeral Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅴ</span>
HTML Code:
<span>&#8564;</span>
HEX Code:
<span>&#x2174;</span>

Add with CSS

.small-roman-numeral-five::before {
  content: '\\2174';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-five').textContent = 'ⅴ';
copied