HTML Entity for Square Yuan (㍐)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+3350

What Is Square Yuan?

Square yuan (㍐) is the Unicode character at U+3350 in CJK Compatibility. Official name: SQUARE YUAN. It is a squared (telegraph-style) form related to the Chinese yuan — not the everyday currency signs ¥ or 元.

Remember
Character     ㍐
Unicode       U+3350
Named entity  (none)
Hex entity    ㍐
Decimal       ㍐
CSS escape    \3350
Not the same  ¥ · 元 · ¥

Prefer ㍐ or ㍐ in HTML markup. You can also type ㍐ in UTF-8. For ordinary yen/yuan currency display, use ¥ (¥) or 元 instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNoneUse numeric or type the character
Direct character㍐HTML text (UTF-8)
Hex entity㍐HTML markup (preferred)
Decimal entity㍐HTML markup
CSS escape\3350Stylesheet content
Yen sign (related)¥ (U+00A5)Named ¥

When to Use Which

SituationUse
Square yuan (CJK Compatibility glyph)㍐ or type ㍐
Everyday yen / yuan currency sign¥ (¥)
Chinese character for yuan元 (U+5143)
Generated text via ::before / ::aftercontent: "\3350"

Live Preview

Square yuan rendered alone and next to related currency forms.

Large glyph ㍐
Notation Amount: ㍐ 100
Compared ㍐  |  ¥  |  元
Hint Compare: Square ㍐ | Yen ¥ | Yuan 元
With entities Hex: ㍐ | Decimal: ㍐

Complete HTML Example

One page that shows square yuan with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ㍐, plus a short amount example. No named entity exists.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Square Yuan (㍐)</title>
  <style>
    #point::after {
      content: "\3350";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x3350;</p>
  <p>Using HTML Code: &#13136;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ㍐</p>
  <p>Notation: Amount &#x3350; 100</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+3350 → &#x3350; in HTML. Preferred numeric form when you need an entity.

2. Decimal: same code point as 13136 → &#13136;. Same glyph as hex.

3. CSS: use \3350 in content (not an HTML entity). #point::after appends that ㍐ after the paragraph text.

4. Typed / notation: paste ㍐ in UTF-8, or write Amount &#x3350; 100 for a short label.

5. No named entity: HTML5 does not define a name for U+3350 — use numeric references or type the character.

Pitfalls & Tips

Common mistakes when working with U+3350.

vs ¥

Not the yen sign

U+00A5 (¥, &yen;) is the common currency sign. U+3350 is a CJK Compatibility squared form.

vs 元

Not the character 元

元 (U+5143) is the usual Chinese character for yuan. Do not treat ㍐ as a drop-in replacement.

Fonts

Needs CJK font coverage

Some Western UI fonts omit CJK Compatibility glyphs. Prefer a font stack that includes East Asian coverage if the glyph must always show.

Named

No named HTML entity

There is no &yuan; for U+3350. Use &#x3350; or &#13136;.

CSS vs HTML

Do not mix escapes

\3350 belongs in CSS strings. &#x3350; / &#13136; belong in HTML.

A11y

Name the currency in text

Screen readers may not announce this rare glyph clearly. Prefer nearby words like “yuan” or “CNY” when money is the meaning.

Browser Support

Square yuan (U+3350) and its entity forms (&#x3350;, &#13136;, CSS \\3350) are supported in all mainstream browsers. Visible glyphs depend on CJK Compatibility font coverage.

✓ Universal support

Square Yuan (&#x3350;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+3350 / entities Full support

Bottom line: Prefer &#x3350; or &#13136; in HTML. Use \\3350 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: square yuan is U+3350 (decimal 13136) — glyph ㍐.
  • HTML: no named entity — use &#x3350; / &#13136; / type ㍐.
  • CSS: use \3350 inside content for generated text.
  • Meaning: ㍐ is square yuan — not ¥ (&yen;), not 元.

One line: U+3350 → &#x3350; / &#13136; / CSS \3350 (no named entity).

Frequently Asked Questions

Use &#x3350; (hex), &#13136; (decimal), type ㍐ directly in UTF-8, or the CSS escape \3350 in content. There is no named HTML entity.
U+3350 (SQUARE YUAN). Hex 3350, decimal 13136. It belongs to CJK Compatibility (U+3300–U+33FF).
No. Use numeric references &#x3350; or &#13136;, or type ㍐ in UTF-8.
No. ㍐ is U+3350 (square yuan, a CJK Compatibility squared form). ¥ is U+00A5 (&yen;). 元 is U+5143 (the usual Chinese character for yuan).
Use it when you specifically need the squared CJK Compatibility glyph — not as a substitute for everyday yen/yuan currency display with &yen; or 元.
HTML entities (&#13136; or &#x3350;) go in markup. The CSS escape \3350 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Square yuan is Unicode U+3350 (decimal 13136) — glyph ㍐ in CJK Compatibility (U+3300–U+33FF). Official name: SQUARE YUAN. HTML5 has no named entity — use &#x3350; or &#13136;. Do not confuse with yen sign U+00A5 (&yen;, ¥) or the Chinese character for yuan U+5143 (元).

Next: Squared Dot Operator

Learn the HTML entity for squared dot operator (U+22A1).

Continue tutorial →

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