[ㅤ]
ㅤ
Description
It is included in the Unicode’s Hangul Compatibility Jamo block. Hangul Filler Unicode character is classified as a letter although displayed as an empty space.
Shortcodes
Unicode | U+3164 |
---|---|
HTML Code | ㅤ |
HEX Code | ㅤ |
CSS Code | \3164 |
How to add Hangul Filler character in HTML?
To add the Hangul Filler 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: Hangul FillerㅤCharacter
The above code will show this result: Hangul FillerㅤCharacter
A HEX Code can also display the character in HTML.
How to add Hangul Filler character using CSS?
You can show Hangul Filler 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: '\3164';
}