HTML Entity for Yen Yuan Character Variant Three (圜)

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

What Is Yen Yuan Character Variant Three?

Yen Yuan Character Variant Three (圜) is the CJK Unified Ideographs character at Unicode U+571C (CJK UNIFIED IDEOGRAPH-571C). It is the CJK character 圜, used in certain historical and typographic yuan-related contexts. HTML5 has no named entity.

Remember
Character     圜
Unicode       U+571C
Named entity  (none)
Hex entity    圜
Decimal       圜
CSS escape    \571C
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 two.

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\571CStylesheet content
Direct character圜UTF-8 HTML text

When to Use Which

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

Live Preview

Variant Three 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 Three (圜)</title>
  <style>
    #glyph::after {
      content: "\571C";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x571C;</p>
  <p>Using HTML Code: &#22300;</p>
  <p id="glyph">Using CSS Entity: </p>
  <p><code>&#x571C;</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+571C → &#x571C; in HTML. Clearest numeric form when there is no named entity.

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

3. CSS: use \571C 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+571C.

vs 圆 / 圎

Not the other variants

圆 is U+5706 and 圎 is U+570E. 圜 (U+571C) 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+571C.

Named

No named entity

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

CSS vs HTML

Do not mix escapes

\571C belongs in CSS strings. &#x571C; / &#22300; 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 Three (U+571C) and its entity forms (&#x571C;, &#22300;, CSS \\571C) are supported in all mainstream browsers. Visible glyphs depend on CJK font coverage.

✓ Universal support

Yen Yuan Variant Three (&#x571C;)

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+571C Full support

Bottom line: Prefer &#x571C; or &#22300; in HTML. Use \\571C only inside CSS content. There is no named entity. Do not confuse with 圆, 圎, 元, or &yen;.

Key Takeaways

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

One line: U+571C → &#x571C; / &#22300; / CSS \571C (no named entity).

Frequently Asked Questions

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

Did you know?

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

Next: Yin Yang

Learn the HTML entity for yin yang (☯, U+262F).

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