Three-Per-Em Space (U+2004) | Copy And Paste [ ] Character

5/5 - (1 vote)

The Three-Per-Em Space (U+2004), often known as the thick space, is defined as a space that is exactly one-third the width of an ‘em‘. An ’em’ is a unit originally equivalent to the width of a capital ‘M’ in whatever typeface and point size is being used.

Three-Per-Em Space

Copy Three-Per-Em Space Character

​ㅤ

Three-Per-Em Space Generator

Enter Number

Copied!

Three-Per-Em Space Table

Character NameThree-Per-Em Space
Unicode Code PointU+2004
HTML Code 
 
HTML Hex Code 
CSS Code\2004
JavaScript/Java/C\u{2004} (JavaScript and ES6), \\u2004 (Java and C)

FAQs

Using Three-Per-Em Space in HTML

To add a Three-Per-Em Space character in HTML, you can use its HTML entity code   or Hex code ⠀ Here’s how you can use it:  

Using HTML Entity Code:

Copy & Paste Three-Per-Em Space Character – Blank spacecopy.com

Using Hexadecimal Entity Code:

Copy & Paste Three-Per-Em Space Character – Blank spacecopy.com

Three-Per-Em Space

Three-Per-Em Space vs Em Space

Using Three-Per-Em Space in CSS

To add a Three-Per-Em Space (U+2004) before and after an HTML element using CSS ::before and ::after, you can use the content property to insert the character

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

CSS

.three-per-em-space::before {
    content: "\2004";
}
.three-per-em-space::after {
    content: "\2004";
}

HTML

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

        .three-per-em-space::after {
            content: "\2004";
        }
    </style>
</head>
<body>
    <p class="three-per-em-space">This is some text with a Three-Per-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