Roman Numeral Four

Shortcodes

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

Unicode
U+2163
HTML Code
Ⅳ
HEX Code
Ⅳ
CSS Code
\2163
JS/JSON
\u2163
Unix/C/PHP/JAVA
0x2163
URL-encode
%E2%85%A3

Customize Roman Numeral Four

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅳ</span>
HTML Code:
<span>&#8547;</span>
HEX Code:
<span>&#x2163;</span>

Add with CSS

.roman-numeral-four::before {
  content: '\\2163';
}

Set it in JavaScript

document.querySelector('.roman-numeral-four').textContent = 'Ⅳ';
copied