Hangul Choseong Filler

Shortcodes

Copy useful codes for hangul choseong filler symbol ᅟ to use in websites, apps, blogs, and docs.

Unicode
U+115F
HTML Code
ᅟ
HEX Code
ᅟ
CSS Code
\115F
JS/JSON
\u115F
Unix/C/PHP/JAVA
0x115F
URL-encode
%E1%85%9F

Customize Hangul Choseong Filler

Customize ᅟ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Hangul Choseong Filler Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᅟ</span>
HTML Code:
<span>&#4447;</span>
HEX Code:
<span>&#x115F;</span>

Add with CSS

.hangul-choseong-filler::before {
  content: '\\115F';
}

Set it in JavaScript

document.querySelector('.hangul-choseong-filler').textContent = 'ᅟ';
copied