Superscript Nine

Shortcodes

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

Unicode
U+2079
HTML Code
⁹
HEX Code
⁹
CSS Code
\2079
JS/JSON
\u2079
Unix/C/PHP/JAVA
0x2079
URL-encode
%E2%81%B9

Customize Superscript Nine

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁹</span>
HTML Code:
<span>&#8313;</span>
HEX Code:
<span>&#x2079;</span>

Add with CSS

.superscript-nine::before {
  content: '\\2079';
}

Set it in JavaScript

document.querySelector('.superscript-nine').textContent = '⁹';
copied