Em Quad Space (U+2001) | Copy and Paste [ ] Character
An EM QUAD (U+2001), often simply referred to as an “em,” is a unit of measurement equal to the current point size of the font. The EM SPACE is a space character that is as wide as an EM QUAD.
Copy Em Quad Space Character
Em Quad Space Generator
Enter Number
Em Quad Space Table
Character Name | Em Quad Space |
---|---|
Em Quad Unicode | U+2001 |
HTML Code |   |
HTML Hex Code |   |
CSS Code | \2001 |
JavaScript/Java/C |
\u{2001} (JavaScript and ES6), \\u2001 (Java and C)
|
FAQs
To add the Em Quad character (U+2001) to an HTML document, you can use either its decimal, hexadecimal. Here’s how to do it:
Using HTML Code:
Copy & Paste Em Quad Space Character – Blank spacecopy.com
Using Hex Code:
Copy & Paste Em Quad Space Character – Blank spacecopy.com
Ideographic Space vs Em Space vs Em Quad vs Punctuation Space
To add the Em Quad character (U+2001) as content before and after an HTML element using CSS, you can use the ::before and ::after pseudo-elements. Follow the code below
To copy the code, simply double-click on it and press Ctrl+C.
CSS
.em-quad::after {
content: "\2001";
}
.em-quad::before {
content: "\2001";
}
HTML
<!DOCTYPE html>
<html>
<head>
<style>
.em-quad::before,
.em-quad::after {
content: "\2001";
}
</style>
</head>
<body>
<div class="em-quad">Copy & Paste Em Quad Space Character - Blankspacecopy.com</div>
</body>
</html>