Invisible Separator

Shortcodes

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

Unicode
U+2063
HTML Code
⁣
HEX Code
⁣
CSS Code
\2063
JS/JSON
\u2063
Unix/C/PHP/JAVA
0x2063
URL-encode
%E2%81%A3

Customize Invisible Separator

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁣</span>
HTML Code:
<span>&#8291;</span>
HEX Code:
<span>&#x2063;</span>

Add with CSS

.invisible-separator::before {
  content: '\\2063';
}

Set it in JavaScript

document.querySelector('.invisible-separator').textContent = '⁣';
copied