Roman Numeral Nine

Shortcodes

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

Unicode
U+2168
HTML Code
Ⅸ
HEX Code
Ⅸ
CSS Code
\2168
JS/JSON
\u2168
Unix/C/PHP/JAVA
0x2168
URL-encode
%E2%85%A8

Customize Roman Numeral Nine

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅸ</span>
HTML Code:
<span>&#8552;</span>
HEX Code:
<span>&#x2168;</span>

Add with CSS

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

Set it in JavaScript

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