HTML Entity for Fullwidth Won Sign (₩)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+FFE6

What Is Fullwidth Won Sign?

Fullwidth won sign (₩) is the Unicode character at U+FFE6 in Halfwidth and Fullwidth Forms. Official name: FULLWIDTH WON SIGN. It is the fullwidth form of the regular won sign ₩ — same meaning (Korean won), wider glyph for East Asian layouts.

Remember
Character     ₩
Unicode       U+FFE6
Hex entity    ₩
Decimal       ₩
CSS escape    \FFE6
Named entity  (none)
Meaning       fullwidth Korean won currency symbol
Not the same  ₩ (won U+20A9) · ¥ (fullwidth yen) · W

Prefer ₩ or ₩ in HTML (no named form). You can also type ₩ in a UTF-8 document. For most pages, prefer the regular won sign (₩).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity₩HTML markup (preferred)
Decimal entity₩HTML markup
Direct character₩HTML text (UTF-8)
CSS escape\FFE6Stylesheet content

When to Use Which

SituationUse
Fullwidth East Asian layout₩ or type ₩
Regular Korean won amountWon sign — ₩ (₩)
Fullwidth yen companionFullwidth yen sign (¥)
Plain ASCIIType KRW or write won
Generated text via ::before / ::aftercontent: "\FFE6"

Live Preview

Symbol alone, in a sample price, and next to related forms.

Glyph ₩
Large glyph ₩
Sample Price: ₩5000
Compared ₩   ₩   ¥   £
With entities Hex: ₩ | Decimal: ₩

Complete HTML Example

One page that shows fullwidth won with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ₩ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Fullwidth Won Sign (U+FFE6) in HTML</title>
  <style>
    #point::after {
      content: "\FFE6";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#xFFE6;</p>
  <p>Built with Decimal: &#65510;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ₩</p>
  <p>Price: <span aria-label="5000 won">&#xFFE6;5000</span></p>
  <p>Regular won: &#x20A9;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#xFFE6; inserts code point U+FFE6 → ₩.

2. Decimal: same code point as 65510 → &#65510;. Same visual as hex.

3. CSS: use \FFE6 in content (not an HTML entity). #point::after appends ₩.

4. Typed: paste ₩ in a UTF-8 document when you need the fullwidth won glyph. Compare with &#x20A9; for the regular halfwidth form.

Pitfalls & Tips

Common mistakes when working with fullwidth won sign.

Name

No named entity

There is no HTML5 named entity for U+FFE6. Use &#xFFE6; or &#65510;. Do not invent &fullwon;.

₩

Not regular won (U+20A9)

Regular won is ₩ (U+20A9). Fullwidth is ₩. Prefer &#x20A9; unless you need fullwidth alignment.

Yen

Not yen

Fullwidth yen is ¥ (U+FFE5). Won and yen look related but are different currencies and code points.

Width

Mixed widths look uneven

Pair ₩ with fullwidth digits (for example 5000). Mixing with ASCII digits often looks misaligned.

Font

Font coverage

Some fonts omit fullwidth currency forms. If ₩ is missing, fall back to &#x20A9; or a font with Halfwidth and Fullwidth Forms coverage.

CSS vs HTML

Do not mix escapes

\FFE6 belongs in CSS strings. &#xFFE6; / &#65510; belong in HTML.

a11y

Add accessible text

Screen readers may not announce ₩ clearly. Prefer aria-label="5000 won" or nearby prose when the amount matters.

Semicolon

End references

Always finish entities with ; — write &#xFFE6;, not &#xFFE6.

Browser Support

Fullwidth won sign (U+FFE6) and its entity forms (&#xFFE6;, &#65510;, CSS \\FFE6) are supported in all mainstream browsers. Visible glyphs depend on Halfwidth and Fullwidth Forms font coverage.

✓ Universal support

Fullwidth Won Sign (&#xFFE6;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+FFE6 Full support

Bottom line: Prefer &#xFFE6; in HTML (no named form). Use &#65510; when decimal form is required, and \\FFE6 only inside CSS content.

Key Takeaways

  • Unicode: fullwidth won is U+FFE6 (decimal 65510) — glyph ₩.
  • HTML: no named entity — use &#xFFE6; / &#65510; / type ₩.
  • CSS: use \FFE6 inside content for generated text.
  • Meaning: ₩ ≠ ₩ (prefer regular won unless you need fullwidth).

One line: U+FFE6 → &#xFFE6; / &#65510; / CSS \FFE6 (no named form).

Frequently Asked Questions

Use &#xFFE6; (hex), &#65510; (decimal), type ₩ directly in UTF-8, or the CSS escape \FFE6 in content. There is no named HTML entity for U+FFE6.
U+FFE6 (FULLWIDTH WON SIGN). Hex FFE6, decimal 65510. It belongs to the Halfwidth and Fullwidth Forms block (U+FF00–U+FFEF).
No. HTML5 does not define a named entity for U+FFE6. Prefer &#xFFE6; or &#65510;. The regular won sign (U+20A9) also has no named entity.
Use it in East Asian fullwidth layouts where currency symbols should match fullwidth digit width. Prefer the regular won sign (U+20A9) for most Western or mixed pages.
HTML numeric entities (&#65510; or &#xFFE6;) go in markup. The CSS escape \FFE6 goes in stylesheet strings (usually content on ::before/::after).
No. U+FFE6 is the fullwidth won (₩). The regular won sign is U+20A9 (₩). They look similar but have different widths and code points.

Did you know?

Fullwidth won sign is Unicode U+FFE6 (decimal 65510) — glyph ₩ (FULLWIDTH WON SIGN) in Halfwidth and Fullwidth Forms. There is no HTML5 named entity; use &#xFFE6; or &#65510;. It is the fullwidth counterpart of the regular won sign (₩, U+20A9). Prefer ₩ for most layouts; use ₩ when aligning with East Asian fullwidth typography.

Next: Fullwidth Yen Sign

Learn the HTML entity for fullwidth yen sign (U+FFE5).

Fullwidth yen sign tutorial →

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