HTML Entity for Won Character (원)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+C6D0

What You'll Learn

How to display the Won character (원) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+C6D0 (HANGUL SYLLABLE WEON) in the Hangul Syllables block (U+AC00–U+D7A3)—the native Korean hangul form of the South Korean Won currency.

Render it with 원, 원, or CSS escape \C6D0. There is no named HTML entity. Do not confuse 원 with the won sign (₩, U+20A9) or fullwidth won (₩, U+FFE6). Use lang="ko" on Korean price content when appropriate.

⚡ Quick Reference — Won Character

Unicode U+C6D0

Hangul Syllables

Hex Code 원

Hexadecimal reference

HTML Code 원

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+C6D0
Hex code       원
HTML code      원
Named entity   (none)
CSS code       \C6D0
Meaning        Korean hangul “won” (currency unit)
Related        U+20A9 = Won sign (₩)
               U+FFE6 = Fullwidth won (₩)
Block          Hangul Syllables (U+AC00–U+D7A3)
1

Complete HTML Example

A simple example showing the Won character (원) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html lang="ko">
<head>
 <meta charset="utf-8">
 <style>
  #price:after{
   content: "\C6D0";
  }
 </style>
</head>
<body>
<p>Won Character (hex): &#xC6D0;</p>
<p>Won Character (decimal): &#50896;</p>
<p id="price">Price: 10,000 </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+C6D0 is widely supported when the page uses UTF-8 and a font with Hangul glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Won character (원) in a Korean price context and beside related won symbols:

Price10,000 원
Large glyph
Won variants원 hangul   ₩ sign   ₩ fullwidth
Numeric refs&#xC6D0; &#50896; \C6D0

🧠 How It Works

1

Hexadecimal Code

&#xC6D0; uses the Unicode hexadecimal value C6D0 to display the Won character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#50896; uses the decimal Unicode value 50896 to display the same hangul character.

HTML markup
3

CSS Entity

\C6D0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+C6D0 is HANGUL SYLLABLE WEON in the Hangul Syllables block. For the currency symbol, see Won Sign (₩, U+20A9).

Use Cases

The Won character (원) is commonly used in:

🇰🇷 Korean websites

Display prices in native hangul format (e.g. 10,000원).

📄 Financial documents

Invoices, reports, and accounting documents in Korean.

🛒 E-commerce

Product listings and checkout for Korean market audiences.

🏦 Banking apps

Balances, transactions, and financial data in Korean UI.

💰 Localization

Korean-language sections where hangul 원 is culturally preferred.

🌐 Multi-currency sites

International pages with Korean price labels alongside other currencies.

♿ Accessibility

Use lang="ko" and clear price text; pair with aria-label when needed.

💡 Best Practices

Do

  • Use lang="ko" and UTF-8 (<meta charset="utf-8">) for Korean content
  • Pair 원 with proper number formatting (e.g. 10,000원)
  • Use 원 for native Korean prices; use ₩ for symbol-focused or international UI
  • Choose fonts that include Hangul Syllables glyphs
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Confuse 원 (hangul won) with ₩ (won sign) or ₩ (fullwidth won)
  • Put CSS escape \C6D0 in HTML text nodes
  • Assume every font renders Hangul clearly without testing
  • Mix entity styles randomly in one file
  • Expect a named HTML entity for U+C6D0—use numeric references instead

Key Takeaways

1

Three ways to render 원 in HTML and CSS

&#xC6D0; &#50896;
2

For CSS stylesheets, use the escape in the content property

\C6D0
3

Unicode U+C6D0 — HANGUL SYLLABLE WEON (원)

4

Hangul form for Korean prices; ₩ is the currency symbol alternative

❓ Frequently Asked Questions

Use &#xC6D0; (hex), &#50896; (decimal), or \C6D0 in CSS content. There is no named HTML entity. In UTF-8 you can also type 원 directly.
U+C6D0 (HANGUL SYLLABLE WEON). Hangul Syllables block U+AC00–U+D7A3. Hex C6D0, decimal 50896. The Korean hangul form of the won currency.
For Korean-language websites, native hangul prices, financial documents, e-commerce for Korean markets, banking applications, and content where 원 is preferred over the won sign ₩.
HTML numeric references (&#50896; or &#xC6D0;) go directly in markup. The CSS escape \C6D0 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Hangul and CJK characters like 원 use numeric codes. Use &#50896; or &#xC6D0; in HTML, or \C6D0 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, Hangul, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful