[ ]
Description
Four-Per-Em Space Unicode character is also known as Mid space. It is one-fourth of an em space.
Shortcodes
Unicode | U+2005 | |
---|---|---|
HTML Code |   | |
HEX Code |   | |
CSS Code | \2005 | |
HTML Entity |   |
How to add Four-Per-Em Space character in HTML?
To add the Four-Per-Em 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.
For example: Four-Per-Em Space Character
The above code will show this result: Four-Per-Em Space Character
An HTML Entity(named) or HEX Code can also display the character in HTML.
How to add Three-Per-Em Space character using CSS?
You can show Four-Per-Em 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: '\2005';
}