Superscript Plus Sign

Shortcodes

Copy useful codes for superscript plus sign ⁺ to use in websites, apps, blogs, and docs.

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

Customize Superscript Plus Sign

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

  

How to use Superscript Plus Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁺</span>
HTML Code:
<span>&#8314;</span>
HEX Code:
<span>&#x207A;</span>

Add with CSS

.superscript-plus-sign::before {
  content: '\\207A';
}

Set it in JavaScript

document.querySelector('.superscript-plus-sign').textContent = '⁺';
copied