[ ]
Description
CJK (Chinese, Japanese, and Korean) characters use the Ideographic Space Unicode character.
Shortcodes
Unicode | U+3000 |
---|---|
HTML Code |   |
HEX Code |   |
CSS Code | \3000 |
How to add Ideographic Space character in HTML?
To add the Ideographic Space character in HTML, you can use HTML code(decimal) or HEX code. Copy the available codes from the Shortcodes table and paste it in your HTML code.
For example: Ideographic Space Character
The above code will show this result: Ideographic Space Character
A HEX Code can also display the character in HTML.
How to add Ideographic Space character using CSS?
You can show Ideographic 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: '\3000';
}