Hangul Choseong Rieul

Shortcodes

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

Unicode
U+1105
HTML Code
ᄅ
HEX Code
ᄅ
CSS Code
\1105
JS/JSON
\u1105
Unix/C/PHP/JAVA
0x1105
URL-encode
%E1%84%85

Customize Hangul Choseong Rieul

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᄅ</span>
HTML Code:
<span>&#4357;</span>
HEX Code:
<span>&#x1105;</span>

Add with CSS

.hangul-choseong-rieul::before {
  content: '\\1105';
}

Set it in JavaScript

document.querySelector('.hangul-choseong-rieul').textContent = 'ᄅ';
copied