HTML Entity for Square Yuan (㍐)

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

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

Unicode U+3350

CJK Compatibility

Hex Code ㍐

Hexadecimal reference

HTML Code ㍐

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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)
1

Complete HTML Example

A simple example showing ㍐ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\3350";
  }
 </style>
</head>
<body>
<p>Square yuan (hex): &#x3350;100</p>
<p>Square yuan (decimal): &#13136;100</p>
<p id="point">Square yuan (CSS): 100</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Square Yuan (㍐) renders in modern browsers when fonts include CJK Compatibility glyphs:

Chrome1+
Firefox1+
Safari3.1+
Edge12+
Opera4+
Android4.4+
iOS Safari3.2+

👀 Live Preview

See the square yuan symbol in currency contexts:

Single symbol
Price display ㍐100
Not the same as ㍐ (square yuan)  |  ¥ (yen, &yen;)
No named entity Use numeric references only
Numeric refs &#x3350; &#13136; \3350

🧠 How It Works

1

Hexadecimal Code

&#x3350; references code point U+3350 using hex digits 3350.

HTML markup
2

Decimal HTML Code

&#13136; is the decimal equivalent (13136) for the same character.

HTML markup
3

CSS Entity

\3350 is the CSS escape for U+3350, used in the content property of pseudo-elements.

CSS stylesheet
=

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:

💰 Financial content

Banking sites and currency exchange platforms for CNY/RMB.

🛒 E-commerce

Online stores and payment interfaces supporting Chinese yuan.

🌐 International sites

Multilingual platforms targeting Chinese-speaking audiences.

📈 Financial apps

Trading tools, accounting software, and conversion calculators.

📚 Educational content

Lessons on currencies and international finance.

🔤 Entity demos

Examples showing numeric references for U+3350.

💡 Best Practices

Do

  • Use &#x3350; or &#13136; 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 \03350 with a leading zero—prefer \3350
  • Confuse ㍐ with yen sign ¥ (&yen;)
  • Expect a named HTML entity for U+3350
  • Put CSS escape \3350 in HTML text nodes

Key Takeaways

1

Three ways to render U+3350 in HTML and CSS

&#x3350; &#13136;
2

For CSS stylesheets, use \3350 in the content property

3

U+3350 — SQUARE YUAN (RENMINBI) (㍐)

4

No named entity—use numeric references or CSS escape

5

Previous: Square Root   Next: Squared Dot Operator

❓ Frequently Asked Questions

Use &#x3350; (hex), &#13136; (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.
No. ㍐ (U+3350) is SQUARE YUAN in CJK Compatibility. ¥ (U+00A5, &yen;) is YEN SIGN. They look similar in some fonts but represent different currency symbols.
For financial content, currency formatting, international websites, Chinese currency displays, e-commerce platforms, and financial applications that need the square yuan symbol.
Named HTML entities cover ASCII, Latin-1, and some common symbols. CJK Compatibility characters like U+3350 use numeric hex or decimal references—standard practice for specialized Unicode blocks.

Explore More HTML Entities!

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