HTML Entity for Yen Yuan Character Variant Two (圎)

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

What Is Yen Yuan Character Variant Two?

Yen Yuan Character Variant Two (圎) is the CJK Unified Ideographs character at Unicode U+570E (CJK UNIFIED IDEOGRAPH-570E). It is the CJK character 圎, a yuan-related typographic variant. HTML5 has no named entity.

Remember
Character     圎
Unicode       U+570E
Named entity  (none)
Hex entity    圎
Decimal       圎
CSS escape    \570E
Not the same  圆 · 圜 · 元 · ¥

Prefer 圎 or 圎 in HTML markup. You can also type 圎 in UTF-8. There is no named entity. Related: variant one and variant three.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity圎HTML markup (preferred)
Decimal entity圎HTML markup
CSS escape\570EStylesheet content
Direct character圎UTF-8 HTML text

When to Use Which

SituationUse
Specialized / variant 圎圎 or type 圎
Simplified Chinese 圆圆 (U+5706)
Historical / variant 圜圜 (U+571C)
Everyday yuan character (元)元 (U+5143)
Latin currency symbol (¥)¥ (U+00A5)
Generated text via ::before / ::aftercontent: "\570E"

Live Preview

Variant Two beside related CJK currency forms.

Large glyph 圎
Sample 圎
Compared 圎  |  圆  |  圜  |  元  |  ¥
With entities Hex: 圎 | Decimal: 圎

Complete HTML Example

One page that shows this character with hex, decimal, and CSS. Use View Output or open the live editor.

Hex + Decimal + CSS

Three ways to produce 圎 (no named entity).

html
<!DOCTYPE html>
<html lang="zh">
<head>
  <meta charset="UTF-8">
  <title>Yen Yuan Variant Two (圎)</title>
  <style>
    #glyph::after {
      content: "\570E";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x570E;</p>
  <p>Using HTML Code: &#22286;</p>
  <p id="glyph">Using CSS Entity: </p>
  <p><code>&#x570E;</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+570E → &#x570E; in HTML. Clearest numeric form when there is no named entity.

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

3. CSS: use \570E in content (not an HTML entity). #glyph::after appends that 圎 after the paragraph text.

4. Language: lang="zh" marks Chinese content so browsers and assistive tech treat the character correctly.

Pitfalls & Tips

Common mistakes when working with U+570E.

vs 圆 / 圜

Not the other variants

圆 is U+5706 and 圜 is U+571C. 圎 (U+570E) is a separate code point — pick the exact character you need.

vs 元

Not everyday yuan 元

Common Chinese prices usually use 元 (U+5143). Use 圎 only when that specific character is required.

vs ¥

Not the Latin yen sign

&yen; (¥, U+00A5) is the currency symbol. It is not interchangeable with U+570E.

Named

No named entity

There is no named HTML entity for U+570E. Use hex or decimal. &yen; is only for U+00A5.

CSS vs HTML

Do not mix escapes

\570E belongs in CSS strings. &#x570E; / &#22286; belong in HTML.

A11y

Mark Chinese text

Use lang="zh" (or a more specific tag) on Chinese phrases. Pair rare glyphs with nearby context when they stand alone.

Browser Support

Yen Yuan Character Variant Two (U+570E) and its entity forms (&#x570E;, &#22286;, CSS \\570E) are supported in all mainstream browsers. Visible glyphs depend on CJK font coverage.

✓ Universal support

Yen Yuan Variant Two (&#x570E;)

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 IE 9+
Yes
U+570E Full support

Bottom line: Prefer &#x570E; or &#22286; in HTML. Use \\570E only inside CSS content. There is no named entity. Do not confuse with 圆, 圜, 元, or &yen;.

Key Takeaways

  • Unicode: this character is U+570E (decimal 22286) — glyph 圎.
  • HTML: use &#x570E; or &#22286; — no named entity; typing 圎 also works.
  • CSS: use \570E inside content for generated text.
  • Watch out: 圎 ≠ 圆 ≠ 圜 ≠ 元 ≠ &yen;.

One line: U+570E → &#x570E; / &#22286; / CSS \570E (no named entity).

Frequently Asked Questions

Use &#x570E; (hex), &#22286; (decimal), type 圎 directly in UTF-8, or the CSS escape \570E in content. There is no named HTML entity.
U+570E (CJK UNIFIED IDEOGRAPH-570E). Hex 570E, decimal 22286. It belongs to CJK Unified Ideographs (U+4E00–U+9FFF).
No. HTML5 does not define a named entity for this character. Use numeric forms &#22286; or &#x570E;. For the Latin currency symbol ¥, use &yen; (U+00A5).
No. 圎 is U+570E (圎). 圆 is U+5706, 圜 is U+571C, 元 is U+5143, and ¥ is U+00A5 (&yen;). Related CJK/currency forms, different code points.
Use it when you specifically need the CJK character 圎 — for example specialized yuan-related typography. Prefer &yen; for the Latin currency symbol, and everyday yuan text often uses 元 (U+5143).
HTML entities (&#22286; or &#x570E;) go in markup. The CSS escape \570E goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Yen Yuan Character Variant Two (圎) is Unicode U+570E (decimal 22286) — official name CJK UNIFIED IDEOGRAPH-570E in CJK Unified Ideographs. HTML5 has no named entity — use &#x570E; or &#22286;. It is the CJK character 圎, a yuan-related typographic variant. Do not confuse it with 圆 (U+5706), 圜 (U+571C), 元 (U+5143), 円 (U+5186), or yen sign ¥ (&yen;).

Next: Yen Yuan Character Variant Three

Learn the HTML entity for yen/yuan character variant three (圜, U+571C).

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