Three-per-em Space

Shortcodes

Copy useful codes for three-per-em space symbol to use in websites, apps, blogs, and docs.

Unicode
U+2004
HTML Code
 
HEX Code
 
CSS Code
\2004
JS/JSON
\u2004
Unix/C/PHP/JAVA
0x2004
URL-encode
%E2%80%84

Customize Three-per-em Space

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

  

How to use Three-per-em Space Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#8196;</span>
HEX Code:
<span>&#x2004;</span>

Add with CSS

.three-per-em-space::before {
  content: '\\2004';
}

Set it in JavaScript

document.querySelector('.three-per-em-space').textContent = '';
copied