En Quad

 

Shortcodes

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

Unicode
U+2000
HTML Code
 
HEX Code
 
CSS Code
\2000
JS/JSON
\u2000
Unix/C/PHP/JAVA
0x2000
URL-encode
%E2%80%80
copied

Customize En Quad Symbol

Customize   symbol as you like and download En Quad 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 Quad symbol in HTML, CSS, and JS?

Insert   En Quad using HTML

1. Copy-paste En Quad directly:
<span> </span>
2. HTML Decimal Code:
<span>&#8192;</span>
3. Hexadecimal Code:
<span>&#x2000;</span>
Preview:  

Add En Quad symbol with CSS

.en-quad::before {
    content: '\\2000';
}
Preview: En Quad

En Quad JavaScript Code

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