HTML Entity for Yen Yuan Character Variant One (圆)

What You'll Learn
How to display Yen Yuan character variant one (圆) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+5706 (CJK UNIFIED IDEOGRAPH-5706) in the CJK Unified Ideographs block—a Simplified Chinese form used in yuan (currency) and related CJK contexts.
Render it with 圆, 圆, or CSS escape \5706. There is no named HTML entity. Do not confuse 圆 with 元 (U+5143), 圓 (U+5713), 円 (U+5186), or the yen sign (¥, U+00A5). Use lang="zh-Hans" when appropriate for Simplified Chinese content.
⚡ Quick Reference — Yen Yuan Variant One
U+5706CJK Unified Ideographs
圆Hexadecimal reference
圆Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+5706
Hex code 圆
HTML code 圆
Named entity (none)
CSS code \5706
Meaning Simplified Chinese “yuán” (圆, circle/yuan)
Related U+5143 = 元 (yuan character)
U+5713 = 圓 (Traditional circle/yuan)
U+5186 = 円 (Japanese yen kanji)
U+00A5 = Yen sign (¥, ¥)
Block CJK Unified Ideographs (U+4E00–U+9FFF)Complete HTML Example
A simple example showing Yen Yuan variant one (圆) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="utf-8">
<style>
#price:after{
content: "\5706";
}
</style>
</head>
<body>
<p>Variant One (hex): 圆</p>
<p>Variant One (decimal): 圆</p>
<p id="price">Price: 100 </p>
</body>
</html>🌐 Browser Support
U+5706 is widely supported when the page uses UTF-8 and a font with CJK glyphs:
👀 Live Preview
See 圆 in a Simplified Chinese context and beside related yuan/yen forms:
🧠 How It Works
Hexadecimal Code
圆 uses the Unicode hexadecimal value 5706 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
圆 uses the decimal Unicode value 22278 to display the same CJK character.
CSS Entity
\5706 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+5706 is in the CJK Unified Ideographs block. For the currency symbol, see Yen Sign (¥, U+00A5).
Use Cases
Yen Yuan character variant one (圆) is commonly used in:
Simplified Chinese text and typesetting for yuan-related content.
Prices, invoices, and CNY notation in Simplified Chinese contexts.
Banking and economic content for mainland China audiences.
Unicode and CJK dictionary or glyph reference sites.
Academic content discussing CJK character variants.
Simplified Chinese apps and localized currency displays.
Applications needing correct CJK currency variant rendering.
💡 Best Practices
Do
- Use
lang="zh-Hans"and UTF-8 (<meta charset="utf-8">) for Simplified Chinese - Choose fonts with CJK Unified Ideographs glyphs (e.g. Noto Sans SC)
- Use 圆 for Simplified Chinese; consider 圓 (圓) for Traditional Chinese
- Pick one numeric style (hex or decimal) per project for consistency
- Provide context in multi-currency content so readers know which currency is meant
Don’t
- Confuse 圆 with 元 (元), 圓 (圓), or ¥ (yen sign)
- Put CSS escape
\5706in HTML text nodes - Assume every font renders CJK kanji clearly without testing
- Mix entity styles randomly in one file
- Expect a named HTML entity for U+5706—use numeric references instead
Key Takeaways
Three ways to render 圆 in HTML and CSS
圆 圆For CSS stylesheets, use the escape in the content property
\5706Unicode U+5706 — Simplified Chinese 圆 (yuán)
CJK variant for yuan notation; ¥ is the compact currency symbol
Previous: Yen Sign (¥) Next: Variant Two (圎)
❓ Frequently Asked Questions
圆 (hex), 圆 (decimal), or \5706 in CSS content. There is no named HTML entity. In UTF-8 you can also type 圆 directly.U+5706 (CJK UNIFIED IDEOGRAPH-5706). CJK Unified Ideographs block. Hex 5706, decimal 22278. Simplified Chinese form used in yuan-related contexts.圆 or 圆) go directly in markup. The CSS escape \5706 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.圆 or 圆 in HTML, or \5706 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — CJK characters, currency symbols, and more.
8 people found this page helpful
