HTML Entity for Yuan Character Hong Kong Taiwan (圓)

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

What Is Yuan Character Hong Kong Taiwan?

Yuan Character Hong Kong Taiwan (圓) is the Unicode character at U+5713 (CJK UNIFIED IDEOGRAPH-5713) — Traditional Chinese 圓. HTML5 has no named entity — use hex or decimal. Use it for Hong Kong and Taiwan prices and Traditional Chinese (zh-Hant) finance copy.

Remember
Character     圓
Unicode       U+5713
Named entity  (none)
Hex entity    圓
Decimal       圓
CSS escape    \5713
Not the same  元 (China) · ¥ (¥) · 円 (Japan)

Hex, decimal, CSS, and a typed character all produce the same glyph: 圓. Prefer 圓 or 圓 in HTML markup. For Mainland/Simplified 元 see Yuan Character China; for the ¥ sign see Yen Sign.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNoneUse numeric or type the character
Hex entity圓HTML markup (preferred)
Decimal entity圓HTML markup
CSS escape\5713Stylesheet content (4 hex digits)
Direct character圓UTF-8 HTML text

When to Use Which

SituationUse
Traditional Chinese yuan (HK/TW)圓 or type 圓
Numeric-only markup圓 or 圓
Generated text via ::before / ::aftercontent: "\5713"
Mainland/Simplified yuan (元)Use 元 (U+5143)
Yen/yuan currency sign (¥)Use ¥ (U+00A5)

Live Preview

圓 in a price line and beside related currency characters.

Example 價格:100圓
Large glyph 圓
Hex entity 圓 → 圓
vs look-alikes 圓  |  元  |  ¥  |  円
With entities Hex: 圓 | Decimal: 圓

Complete HTML Example

One page that shows Yuan Character Hong Kong Taiwan with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display 圓 in HTML and CSS. No named entity exists.

html
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
  <meta charset="UTF-8">
  <title>Yuan Character HK/TW (圓)</title>
  <style>
    #point::after {
      content: "\5713";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x5713;</p>
  <p>Built with Decimal: &#22291;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: 圓</p>
  <p>Price: 100&#x5713;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex / decimal: U+5713 → &#x5713; or &#22291;. The browser turns either into 圓.

2. Typed: in a UTF-8 document you can paste 圓 directly — same glyph, no entity.

3. CSS: use \5713 in content (four hex digits; not an HTML entity). #point::after appends that 圓 after the paragraph text.

4. Look-alikes: Mainland 元 is 元 (U+5143); currency sign is ¥ (&yen;) — different characters.

Pitfalls & Tips

Common mistakes when working with Yuan Character Hong Kong Taiwan.

Named

There is no named entity

HTML5 does not define a name for U+5713. Use &#x5713; or &#22291;.

vs China

Not Mainland 元

U+5143 (元) is a different ideograph. See Yuan Character China.

vs ¥

Not the ¥ currency sign

&yen; is ¥ (U+00A5). See Yen Sign. Use U+5713 for Traditional Chinese 圓.

Fonts

Need CJK font coverage

Some Latin-only fonts omit CJK ideographs. Prefer fonts that cover Traditional Chinese (zh-Hant).

CSS vs HTML

Do not mix escapes

\5713 belongs in CSS strings. &#x5713; / &#22291; belong in HTML.

Encoding

Declare UTF-8

If you type 圓 directly, keep <meta charset="UTF-8"> so the file is not misread.

Browser Support

Yuan Character Hong Kong Taiwan (U+5713) and its entity forms (&#x5713;, &#22291;, CSS \\5713) are supported in all mainstream browsers when the page is UTF-8 and the font covers Traditional Chinese.

✓ Universal support

Yuan Character HK/TW (&#x5713;)

Encode with hex, decimal, CSS escape, or type the character — same Unicode code point everywhere. No named entity.

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+5713 Full support

Bottom line: Prefer &#x5713; in HTML text. Use &#22291; as an equivalent, and \\5713 only inside CSS content. Glyph display depends on CJK font coverage.

Key Takeaways

  • Unicode: this character is U+5713 (decimal 22291) — glyph 圓.
  • HTML: prefer &#x5713; — also &#22291;. No named entity.
  • CSS: use \5713 inside content for generated text.
  • Watch out: 圓 ≠ 元 ≠ ¥.

One line: U+5713 → &#x5713; / &#22291; / CSS \5713 (no named entity).

Frequently Asked Questions

Use &#x5713; (hex), &#22291; (decimal), type 圓 directly in UTF-8, or the CSS escape \5713 in the content property. There is no named HTML entity. Prefer &#x5713; for readable markup.
U+5713 (CJK UNIFIED IDEOGRAPH-5713). Hex 5713, decimal 22291. It is the Traditional Chinese 圓 used in Hong Kong and Taiwan currency contexts.
No. HTML5 does not define a named form. Use numeric references &#x5713; or &#22291;, or type 圓 in UTF-8.
U+5713 is Traditional 圓 (HK/TW). U+5143 is 元 (often Mainland China). &yen; is ¥ (U+00A5), the yen/yuan currency sign — a different character.
Use it for Traditional Chinese (zh-Hant) prices and financial copy for Hong Kong or Taiwan. Prefer yuan-character-china (元) for Simplified/Mainland contexts, and &yen; for the ¥ symbol.
HTML entities (&#22291; or &#x5713;) go in markup. The CSS escape \5713 is used in stylesheets (usually in the content property of ::before/::after). Prefer four hex digits in CSS.

Did you know?

Yuan character (Hong Kong/Taiwan) is Unicode U+5713 (decimal 22291) — glyph 圓 (CJK UNIFIED IDEOGRAPH-5713, Traditional Chinese 圓). HTML5 has no named entity — use &#x5713; or &#22291;. Do not confuse it with Simplified/Mainland 元 U+5143, yen/yuan sign &yen; (¥), or Japanese yen character 円 U+5186.

Next: Z Notation Bag Membership

Continue with the Z Notation Bag Membership entity tutorial.

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