HTML Entity for Yen Yuan Character Variant Two (圎)

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
U+570ECJK Unified Ideographs
圎Hexadecimal reference
圎Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing Yen Yuan variant two (圎) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<style>
#glyph:after{
content: "\570E";
}
</style>
</head>
<body>
<p>Variant Two (hex): 圎</p>
<p>Variant Two (decimal): 圎</p>
<p id="glyph">Variant Two (CSS): </p>
</body>
</html>🌐 Browser Support
U+570E is widely supported when the page uses UTF-8 and a font with CJK glyphs:
👀 Live Preview
See 圎 beside related yuan/yen character forms:
🧠 How It Works
Hexadecimal Code
圎 uses the Unicode hexadecimal value 570E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
圎 uses the decimal Unicode value 22286 to display the same CJK character.
CSS Entity
\570E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Traditional or historical Chinese/Japanese text and typesetting.
Financial or numismatic content referencing alternative yuan forms.
Banking and economic content for East Asian audiences.
Unicode and CJK dictionary or glyph reference sites.
Academic content discussing CJK character variants.
Rendering historical or digitized texts that use this variant.
Localized applications needing correct CJK variant rendering.
💡 Best Practices
Do
- Use UTF-8 (
<meta charset="utf-8">) and appropriatelangfor 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
\570Ein 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
Three ways to render 圎 in HTML and CSS
圎 圎For CSS stylesheets, use the escape in the content property
\570EUnicode U+570E — CJK variant 圎
Specialized CJK form; ¥ is the compact currency symbol for everyday UI
Previous: Variant One (圆) Next: Variant Three (圜)
❓ Frequently Asked Questions
圎 (hex), 圎 (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.圎 or 圎) 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.圎 or 圎 in HTML, or \570E in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — CJK characters, currency symbols, and more.
8 people found this page helpful
