Superscript Five

Shortcodes

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

Unicode
U+2075
HTML Code
⁵
HEX Code
⁵
CSS Code
\2075
JS/JSON
\u2075
Unix/C/PHP/JAVA
0x2075
URL-encode
%E2%81%B5

Customize Superscript Five

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁵</span>
HTML Code:
<span>&#8309;</span>
HEX Code:
<span>&#x2075;</span>

Add with CSS

.superscript-five::before {
  content: '\\2075';
}

Set it in JavaScript

document.querySelector('.superscript-five').textContent = '⁵';
copied