Figure Space

Shortcodes

Copy useful codes for figure space symbol to use in websites, apps, blogs, and docs.

Unicode
U+2007
HTML Code
 
HEX Code
 
CSS Code
\2007
JS/JSON
\u2007
Unix/C/PHP/JAVA
0x2007
URL-encode
%E2%80%87

Customize Figure Space

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

  

How to use Figure Space Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#8199;</span>
HEX Code:
<span>&#x2007;</span>

Add with CSS

.figure-space::before {
  content: '\\2007';
}

Set it in JavaScript

document.querySelector('.figure-space').textContent = '';
copied