Superscript Plus Sign

Shortcodes

Copy and paste codes for Superscript Plus Sign symbol ⁺ to use in your websites, apps, blogs, and more.

Unicode
U+207A
HTML Code
⁺
HEX Code
⁺
CSS Code
\207A
JS/JSON
\u207A
Unix/C/PHP/JAVA
0x207A
URL-encode
%E2%81%BA
copied

Customize Superscript Plus Sign Symbol

Customize ⁺ symbol as you like and download Superscript Plus Sign 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 Plus Sign symbol in HTML, CSS, and JS?

Insert ⁺ Superscript Plus Sign using HTML

1. Copy-paste Superscript Plus Sign directly:
<span>⁺</span>
2. HTML Decimal Code:
<span>&#8314;</span>
3. Hexadecimal Code:
<span>&#x207A;</span>
Preview:

Add Superscript Plus Sign symbol with CSS

.superscript-plus-sign::before {
    content: '\\207A';
}
Preview: Superscript Plus Sign

Superscript Plus Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.superscript-plus-sign').textContent = '⁺';
2. Unicode Escape for ⁺:
document.querySelector('.superscript-plus-sign').textContent = '\u207A';
Preview: