Hangul Syllable Weon

Shortcodes

Copy useful codes for hangul syllable weon symbol 원 to use in websites, apps, blogs, and docs.

Unicode
U+C6D0
HTML Code
원
HEX Code
원
CSS Code
\C6D0
JS/JSON
\uC6D0
Unix/C/PHP/JAVA
0xC6D0
URL-encode
%EC%9B%90

Customize Hangul Syllable Weon

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

  

How to use Hangul Syllable Weon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>원</span>
HTML Code:
<span>&#50896;</span>
HEX Code:
<span>&#xC6D0;</span>

Add with CSS

.hangul-syllable-weon::before {
  content: '\\C6D0';
}

Set it in JavaScript

document.querySelector('.hangul-syllable-weon').textContent = '원';
copied