Superscript Seven

Shortcodes

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

Unicode
U+2077
HTML Code
⁷
HEX Code
⁷
CSS Code
\2077
JS/JSON
\u2077
Unix/C/PHP/JAVA
0x2077
URL-encode
%E2%81%B7

Customize Superscript Seven

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁷</span>
HTML Code:
<span>&#8311;</span>
HEX Code:
<span>&#x2077;</span>

Add with CSS

.superscript-seven::before {
  content: '\\2077';
}

Set it in JavaScript

document.querySelector('.superscript-seven').textContent = '⁷';
copied