Superscript Four

Shortcodes

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

Unicode
U+2074
HTML Code
⁴
HEX Code
⁴
CSS Code
\2074
JS/JSON
\u2074
Unix/C/PHP/JAVA
0x2074
URL-encode
%E2%81%B4

Customize Superscript Four

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁴</span>
HTML Code:
<span>&#8308;</span>
HEX Code:
<span>&#x2074;</span>

Add with CSS

.superscript-four::before {
  content: '\\2074';
}

Set it in JavaScript

document.querySelector('.superscript-four').textContent = '⁴';
copied