Invisible Times

Shortcodes

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

Unicode
U+2062
HTML Code
⁢
HEX Code
⁢
CSS Code
\2062
JS/JSON
\u2062
Unix/C/PHP/JAVA
0x2062
URL-encode
%E2%81%A2

Customize Invisible Times

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁢</span>
HTML Code:
<span>&#8290;</span>
HEX Code:
<span>&#x2062;</span>

Add with CSS

.invisible-times::before {
  content: '\\2062';
}

Set it in JavaScript

document.querySelector('.invisible-times').textContent = '⁢';
copied