Subscript Nine

Shortcodes

Copy useful codes for subscript nine symbol ₉ to use in websites, apps, blogs, and docs.

Unicode
U+2089
HTML Code
₉
HEX Code
₉
CSS Code
\2089
JS/JSON
\u2089
Unix/C/PHP/JAVA
0x2089
URL-encode
%E2%82%89

Customize Subscript Nine

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

  

How to use Subscript Nine Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₉</span>
HTML Code:
<span>&#8329;</span>
HEX Code:
<span>&#x2089;</span>

Add with CSS

.subscript-nine::before {
  content: '\\2089';
}

Set it in JavaScript

document.querySelector('.subscript-nine').textContent = '₉';
copied