HTML Entity for Yen Yuan Character Variant Two (圎)

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

What You'll Learn

How to display Yen Yuan character variant two (圎) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+570E (CJK UNIFIED IDEOGRAPH-570E) in the CJK Unified Ideographs block—a variant form used in certain East Asian typographic and currency-related contexts.

Render it with 圎, 圎, or CSS escape \570E. There is no named HTML entity. Do not confuse 圎 with (U+5706), (U+571C), (U+5713), or the yen sign (¥, U+00A5). Use appropriate lang attributes for CJK content.

⚡ Quick Reference — Yen Yuan Variant Two

Unicode U+570E

CJK Unified Ideographs

Hex Code 圎

Hexadecimal reference

HTML Code 圎

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+570E
Hex code       圎
HTML code      圎
Named entity   (none)
CSS code       \570E
Meaning        CJK variant 圎 (yuán-related form)
Related        U+5706 = 圆 (variant one)
               U+571C = 圜 (variant three)
               U+5713 = 圓 (Traditional circle/yuan)
               U+00A5 = Yen sign (¥, ¥)
Block          CJK Unified Ideographs (U+4E00–U+9FFF)
1

Complete HTML Example

A simple example showing Yen Yuan variant two (圎) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html lang="zh">
<head>
 <meta charset="utf-8">
 <style>
  #glyph:after{
   content: "\570E";
  }
 </style>
</head>
<body>
<p>Variant Two (hex): &#x570E;</p>
<p>Variant Two (decimal): &#22286;</p>
<p id="glyph">Variant Two (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+570E is widely supported when the page uses UTF-8 and a font with CJK glyphs:

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

👀 Live Preview

See 圎 beside related yuan/yen character forms:

Glyph
Large glyph
Yuan variants圆 圆   圎 圎   圜 圜   ¥ sign
Numeric refs&#x570E; &#22286; \570E

🧠 How It Works

1

Hexadecimal Code

&#x570E; uses the Unicode hexadecimal value 570E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#22286; uses the decimal Unicode value 22286 to display the same CJK character.

HTML markup
3

CSS Entity

\570E 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+570E is in the CJK Unified Ideographs block. See also Variant One (圆) and Variant Three (圜).

Use Cases

Yen Yuan character variant two (圎) is commonly used in:

📜 CJK typography

Traditional or historical Chinese/Japanese text and typesetting.

💰 Variant currency notation

Financial or numismatic content referencing alternative yuan forms.

🇨🇳 East Asian finance

Banking and economic content for East Asian audiences.

📚 Character references

Unicode and CJK dictionary or glyph reference sites.

🎓 Scholarly sites

Academic content discussing CJK character variants.

🗃 Historical digitization

Rendering historical or digitized texts that use this variant.

♿ i18n

Localized applications needing correct CJK variant rendering.

💡 Best Practices

Do

  • Use UTF-8 (<meta charset="utf-8">) and appropriate lang for CJK content
  • Choose fonts with CJK Unified Ideographs glyphs (e.g. Noto Sans CJK)
  • Use 圎 only when this specific variant is required; prefer 元 or ¥ for general yuan/yen UI
  • Pick one numeric style (hex or decimal) per project for consistency
  • Test rendering across browsers with CJK font stacks

Don’t

  • Confuse 圎 with 圆 (圆), 圜 (圜), or ¥ (yen sign)
  • Put CSS escape \570E in HTML text nodes
  • Assume every font renders rare CJK variants clearly
  • Mix entity styles randomly in one file
  • Expect a named HTML entity for U+570E—use numeric references instead

Key Takeaways

1

Three ways to render 圎 in HTML and CSS

&#x570E; &#22286;
2

For CSS stylesheets, use the escape in the content property

\570E
3

Unicode U+570E — CJK variant 圎

4

Specialized CJK form; ¥ is the compact currency symbol for everyday UI

❓ Frequently Asked Questions

Use &#x570E; (hex), &#22286; (decimal), or \570E in CSS content. There is no named HTML entity. In UTF-8 you can also type 圎 directly.
U+570E (CJK UNIFIED IDEOGRAPH-570E). CJK Unified Ideographs block. Hex 570E, decimal 22286. Used in certain East Asian typographic and currency contexts.
For CJK typography, historical or variant currency notation, East Asian financial content, dictionary or character reference sites, and scholarly content that requires this specific yuan/yen variant.
HTML numeric references (&#22286; or &#x570E;) go directly in markup. The CSS escape \570E 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. CJK characters like 圎 use numeric codes. Use &#22286; or &#x570E; in HTML, or \570E in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — CJK characters, currency symbols, 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