En Space

Shortcodes

Copy and paste codes for En Space symbol   to use in your websites, apps, blogs, and more.

Unicode
U+2002
HTML Code
 
HEX Code
 
CSS Code
\2002
JS/JSON
\u2002
Unix/C/PHP/JAVA
0x2002
URL-encode
%E2%80%82
copied

Customize En Space Symbol

Customize   symbol as you like and download En Space as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add En Space symbol in HTML, CSS, and JS?

Insert   En Space using HTML

1. Copy-paste En Space directly:
<span> </span>
2. HTML Decimal Code:
<span>&#8194;</span>
3. Hexadecimal Code:
<span>&#x2002;</span>
Preview:

Add En Space symbol with CSS

.en-space::before {
    content: '\\2002';
}
Preview: En Space

En Space JavaScript Code

1. Direct Symbol:
document.querySelector('.en-space').textContent = ' ';
2. Unicode Escape for  :
document.querySelector('.en-space').textContent = '\u2002';
Preview: