Hangul Syllable Weon

Shortcodes

Copy and paste codes for Hangul Syllable Weon symbol 원 to use in your websites, apps, blogs, and more.

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

Customize 원 Symbol

Customize 원 symbol as you like and download Hangul Syllable Weon as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to type Hangul Syllable Weon symbol 원 ?

  • You can try inserting Hangul Syllable Weon symbol using these system tools:
    • Mac Character Viewer (Control + Command + Space)
    • Windows Emoji/Symbol Picker (Win + .)
    • Windows Character Map (charmap.exe)
  • Note: These tools may not include all Unicode symbols
  • Copy and paste the 원 symbol directly from this website.
  • Use provided codes for Hangul Syllable Weon symbol where they are supported.

How to add Hangul Syllable Weon symbol in HTML, CSS, and JS?

HTML Methods:

1. Direct Symbol:
<span>원</span>
2. HTML Decimal Code:
<span>&#50896;</span>
3. Hexadecimal Code:
<span>&#xC6D0;</span>
Preview:

CSS Method:

.symbol::before {
    content: '\\C6D0';
}
Preview: Symbol

JavaScript Methods:

1. Direct Symbol:
document.querySelector('.symbol').textContent = '원';
2. Unicode Escape:
document.querySelector('.symbol').textContent = '\uC6D0';
Preview: