Superscript Six

Shortcodes

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

Unicode
U+2076
HTML Code
⁶
HEX Code
⁶
CSS Code
\2076
JS/JSON
\u2076
Unix/C/PHP/JAVA
0x2076
URL-encode
%E2%81%B6

Customize Superscript Six

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁶</span>
HTML Code:
<span>&#8310;</span>
HEX Code:
<span>&#x2076;</span>

Add with CSS

.superscript-six::before {
  content: '\\2076';
}

Set it in JavaScript

document.querySelector('.superscript-six').textContent = '⁶';
copied