Superscript Eight

Shortcodes

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

Unicode
U+2078
HTML Code
⁸
HEX Code
⁸
CSS Code
\2078
JS/JSON
\u2078
Unix/C/PHP/JAVA
0x2078
URL-encode
%E2%81%B8

Customize Superscript Eight

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁸</span>
HTML Code:
<span>&#8312;</span>
HEX Code:
<span>&#x2078;</span>

Add with CSS

.superscript-eight::before {
  content: '\\2078';
}

Set it in JavaScript

document.querySelector('.superscript-eight').textContent = '⁸';
copied