Superscript Five

Shortcodes

Copy and paste codes for Superscript Five symbol ⁵ to use in your websites, apps, blogs, and more.

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

Customize Superscript Five Symbol

Customize ⁵ symbol as you like and download Superscript Five as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Superscript Five symbol in HTML, CSS, and JS?

Insert ⁵ Superscript Five using HTML

1. Copy-paste Superscript Five directly:
<span>⁵</span>
2. HTML Decimal Code:
<span>&#8309;</span>
3. Hexadecimal Code:
<span>&#x2075;</span>
Preview:

Add Superscript Five symbol with CSS

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

Superscript Five JavaScript Code

1. Direct Symbol:
document.querySelector('.superscript-five').textContent = '⁵';
2. Unicode Escape for ⁵:
document.querySelector('.superscript-five').textContent = '\u2075';
Preview: