Hangul Jungseong Filler

Shortcodes

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

Unicode
U+1160
HTML Code
ᅠ
HEX Code
ᅠ
CSS Code
\1160
JS/JSON
\u1160
Unix/C/PHP/JAVA
0x1160
URL-encode
%E1%85%A0

Customize Hangul Jungseong Filler

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᅠ</span>
HTML Code:
<span>&#4448;</span>
HEX Code:
<span>&#x1160;</span>

Add with CSS

.hangul-jungseong-filler::before {
  content: '\\1160';
}

Set it in JavaScript

document.querySelector('.hangul-jungseong-filler').textContent = 'ᅠ';
copied