Invisible Plus

Shortcodes

Copy useful codes for invisible plus symbol ⁤ to use in websites, apps, blogs, and docs.

Unicode
U+2064
HTML Code
⁤
HEX Code
⁤
CSS Code
\2064
JS/JSON
\u2064
Unix/C/PHP/JAVA
0x2064
URL-encode
%E2%81%A4

Customize Invisible Plus

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

  

How to use Invisible Plus Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁤</span>
HTML Code:
<span>&#8292;</span>
HEX Code:
<span>&#x2064;</span>

Add with CSS

.invisible-plus::before {
  content: '\\2064';
}

Set it in JavaScript

document.querySelector('.invisible-plus').textContent = '⁤';
copied