Em Space (U+2003) | Copy And Paste [  ] Character

5/5 - (1 vote)

Em Space, represented by the Unicode character U+2003, is a typographic unit of space used in typography and typesetting. The “Em” in Em Space refers to the width of the capital letter “M” in a given typeface or font.

Copy Em Space Character

​ㅤ

Em Space Character Generator

Enter Number

Copied!

Em Space Character Table

Character NameEm Space
Unicode Code PointU+2003
HTML Code 
 
HTML Hex Code 
CSS Code\2003
JavaScript/Java/C\u{2003} (JavaScript and ES6), \\u2003 (Java and C)

FAQs

Using Em Space in HTML

To add an Em Space character (U+2003) in HTML, you can use its HTML entity code or hexadecimal entity code, just like we did for the En Space character.

Using HTML Entity Code:

Copy & Paste Em Space Character – Blank spacecopy.com

Using Hexadecimal Entity Code:

Copy & Paste Em Space Character – Blank spacecopy.com

You can use either of these methods to insert an Em Space character into your HTML document.

em space
Using Em Space in CSS

To use the Em Space character (U+2003) in CSS, you can include it within a CSS content property when working with pseudo-elements (::before or ::after) or as part of the content of an element. Here’s an example of how you can do this:

To copy the code, simply double-click on it and press Ctrl+C.

CSS

.em-space::before {
   content: "\2003";
}
.em-space::after {
  content: "\2003";
}

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Em Space Example</title>
    <style>
        .em-space::after {
            content: "\2003";
        }

        .em-space::before {
            content: "\2003";
        }
    </style>
</head>
<body>
    <p class="em-space">This paragraph has an Em Space before and after.</p>
</body>
</html>

We will be happy to hear your thoughts

Leave a reply

Copy & Paste Empty Character & Blank Characters
Logo