Small Roman Numeral Nine

Shortcodes

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

Unicode
U+2178
HTML Code
ⅸ
HEX Code
ⅸ
CSS Code
\2178
JS/JSON
\u2178
Unix/C/PHP/JAVA
0x2178
URL-encode
%E2%85%B8

Customize Small Roman Numeral Nine

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅸ</span>
HTML Code:
<span>&#8568;</span>
HEX Code:
<span>&#x2178;</span>

Add with CSS

.small-roman-numeral-nine::before {
  content: '\\2178';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-nine').textContent = 'ⅸ';
copied