Roman Numeral Five

Shortcodes

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

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

Customize Roman Numeral Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅴ</span>
HTML Code:
<span>&#8548;</span>
HEX Code:
<span>&#x2164;</span>

Add with CSS

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

Set it in JavaScript

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