HTML Entity for Square Yuan (㍐)

What You'll Learn
How to display Square Yuan (㍐) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+3350 (SQUARE YUAN (RENMINBI)) in the CJK Compatibility block (U+3300–U+33FF)—a square-form currency symbol for Chinese yuan (renminbi).
Render it with ㍐, ㍐, or CSS \3350. There is no named HTML entity. Do not confuse ㍐ with yen sign ¥ (¥, U+00A5) or the regular character 元.
⚡ Quick Reference — Square Yuan
U+3350CJK Compatibility
㍐Hexadecimal reference
㍐Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+3350
Hex code ㍐
HTML code ㍐
Named entity (none)
CSS code \3350
Meaning Square yuan (renminbi)
Not the same U+00A5 = yen sign (¥, ¥)
Block CJK Compatibility (U+3300–U+33FF)Complete HTML Example
A simple example showing ㍐ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\3350";
}
</style>
</head>
<body>
<p>Square yuan (hex): ㍐100</p>
<p>Square yuan (decimal): ㍐100</p>
<p id="point">Square yuan (CSS): 100</p>
</body>
</html>🌐 Browser Support
Square Yuan (㍐) renders in modern browsers when fonts include CJK Compatibility glyphs:
👀 Live Preview
See the square yuan symbol in currency contexts:
🧠 How It Works
Hexadecimal Code
㍐ references code point U+3350 using hex digits 3350.
Decimal HTML Code
㍐ is the decimal equivalent (13136) for the same character.
CSS Entity
\3350 is the CSS escape for U+3350, used in the content property of pseudo-elements.
Same visual result
All three methods produce ㍐. Unicode U+3350 in CJK Compatibility (U+3300–U+33FF). No named entity.
Use Cases
Square Yuan (㍐) commonly appears in:
Banking sites and currency exchange platforms for CNY/RMB.
Online stores and payment interfaces supporting Chinese yuan.
Multilingual platforms targeting Chinese-speaking audiences.
Trading tools, accounting software, and conversion calculators.
Lessons on currencies and international finance.
Examples showing numeric references for U+3350.
💡 Best Practices
Do
- Use
㍐or㍐in HTML markup - Pair with amounts and context (e.g. ㍐100) for clarity
- Use CJK-capable fonts for reliable rendering
- Pick hex or decimal style and stay consistent per project
- Provide accessible text like “CNY 100” alongside the symbol when needed
Don’t
- Use padded Unicode notation like U+03350—the correct value is
U+3350 - Use CSS
\03350with a leading zero—prefer\3350 - Confuse ㍐ with yen sign ¥ (
¥) - Expect a named HTML entity for U+3350
- Put CSS escape
\3350in HTML text nodes
Key Takeaways
Three ways to render U+3350 in HTML and CSS
㍐ ㍐For CSS stylesheets, use \3350 in the content property
U+3350 — SQUARE YUAN (RENMINBI) (㍐)
No named entity—use numeric references or CSS escape
Previous: Square Root Next: Squared Dot Operator
❓ Frequently Asked Questions
㍐ (hex), ㍐ (decimal), or \3350 in CSS content. There is no named HTML entity. All three render ㍐.U+3350 (SQUARE YUAN (RENMINBI)). CJK Compatibility (U+3300–U+33FF). Hex 3350, decimal 13136.¥) is YEN SIGN. They look similar in some fonts but represent different currency symbols.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, CJK characters, and more.
8 people found this page helpful
