Small Roman Numeral Four

Shortcodes

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

Unicode
U+2173
HTML Code
ⅳ
HEX Code
ⅳ
CSS Code
\2173
JS/JSON
\u2173
Unix/C/PHP/JAVA
0x2173
URL-encode
%E2%85%B3

Customize Small Roman Numeral Four

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅳ</span>
HTML Code:
<span>&#8563;</span>
HEX Code:
<span>&#x2173;</span>

Add with CSS

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

Set it in JavaScript

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