[ ]
Description
En space Unicode character has the width of the capital alphabet “N”.
Shortcodes
Unicode | U+2002 | |
---|---|---|
HTML Code |   | |
HEX Code | Ȃ | |
CSS Code | \2002 | |
HTML Entity |   |
How to add En Space character in HTML?
To add the En Space character in HTML, you can use HTML code(decimal), HEX code, or HTML entity(named). Copy the available codes from the Shortcodes table and paste it in your HTML code.
Example:
En Space Character
The above code will show this result: En Space Character
An HTML Entity(named) or HEX Code can also display the character in HTML.
How to add En Space character using CSS?
You can show En Space character using CSS by utilizing CSS shortcode or entity. Use :before
or :after
to insert symbol before or after an element.
Example:
.elementClass:after {
content: '\2002';
}