HTML Entity for Yuan Character Hong Kong Taiwan (圓)

What You'll Learn
How to display the Yuan character (圓) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+5713 (CJK UNIFIED IDEOGRAPH-5713) in the CJK Unified Ideographs block—the Traditional Chinese character for yuan used in Hong Kong and Taiwan.
Render it with 圓, 圓, or CSS escape \5713. There is no named HTML entity. Do not confuse 圓 with 元 (U+5143, Simplified), 圆 (U+5706, variant), or the yen sign (¥, U+00A5). Use lang="zh-Hant" on Traditional Chinese price content when appropriate.
⚡ Quick Reference — Yuan Character Hong Kong Taiwan
U+5713CJK Unified Ideographs
圓Hexadecimal reference
圓Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+5713
Hex code 圓
HTML code 圓
Named entity (none)
CSS code \5713
Meaning Traditional Chinese “yuán” (圓, currency unit)
Related U+5143 = 元 (Simplified yuan, mainland China)
U+5706 = 圆 (variant form)
U+00A5 = Yen sign (¥, ¥)
U+FFE5 = Fullwidth yen (¥)
Block CJK Unified Ideographs (U+4E00–U+9FFF)Complete HTML Example
A simple example showing the Yuan character (圓) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="utf-8">
<style>
#price:after{
content: "\5713";
}
</style>
</head>
<body>
<p>Yuan HK/TW (hex): 圓</p>
<p>Yuan HK/TW (decimal): 圓</p>
<p id="price">Price: 100 </p>
</body>
</html>🌐 Browser Support
U+5713 is widely supported when the page uses UTF-8 and a font with CJK glyphs:
👀 Live Preview
See 圓 in a Hong Kong/Taiwan price context and beside related yuan forms:
🧠 How It Works
Hexadecimal Code
圓 uses the Unicode hexadecimal value 5713 to display the Yuan character. The x prefix indicates hexadecimal format.
Decimal HTML Code
圓 uses the decimal Unicode value 22291 to display the same character.
CSS Entity
\5713 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+5713 is the Traditional Chinese yuan character. For Simplified Chinese, see Yuan Character China (元, U+5143).
Use Cases
The Yuan character (圓) is commonly used in:
Display prices for Hong Kong and Taiwan audiences (e.g. 100圓).
Invoices, reports, and banking in Traditional Chinese.
Product listings and checkout for HK and Taiwan markets.
Balances, transactions, and currency labels in zh-Hant.
Traditional Chinese language and currency terminology.
Multi-language sites with lang="zh-Hant" support.
Contracts, receipts, and official documents using 圓 for currency.
💡 Best Practices
Do
- Use
lang="zh-Hant"and UTF-8 (<meta charset="utf-8">) for Traditional Chinese - Choose fonts that include CJK glyphs (e.g. Noto Sans TC, Microsoft JhengHei)
- Use 圓 for Hong Kong and Taiwan; use 元 for Simplified Chinese (mainland)
- Pick one numeric style (hex or decimal) per project for consistency
- Provide regional context when HKD and TWD both appear on the same page
Don’t
- Confuse 圓 (Traditional 圓) with 元 (Simplified 元) or ¥ (yen sign)
- Put CSS escape
\5713in HTML text nodes - Assume every font renders Traditional Chinese clearly without testing
- Mix entity styles randomly in one file
- Expect a named HTML entity for U+5713—use numeric references instead
Key Takeaways
Three ways to render 圓 in HTML and CSS
圓 圓For CSS stylesheets, use the escape in the content property
\5713Unicode U+5713 — Traditional Chinese yuan (圓)
Hong Kong and Taiwan character; 元 is the Simplified form for mainland China
Previous: Yuan China (元) Next: Z Notation Bag Membership (⋿)
❓ Frequently Asked Questions
圓 (hex), 圓 (decimal), or \5713 in CSS content. There is no named HTML entity. In UTF-8 you can also type 圓 directly.U+5713 (CJK UNIFIED IDEOGRAPH-5713). CJK Unified Ideographs block. Hex 5713, decimal 22291. The Traditional Chinese character for yuan used in Hong Kong and Taiwan.圓 or 圓) go directly in markup. The CSS escape \5713 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.圓 or 圓 in HTML, or \5713 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — CJK characters, currency symbols, and more.
8 people found this page helpful
