HTML Entity for Euro Currency Sign (₠)

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

What Is Euro Currency Sign?

Euro currency sign (₠) is the Unicode character at U+20A0 in Currency Symbols. Official name: EURO-CURRENCY SIGN. It is a historical currency glyph. For modern euro amounts, use euro sign (€, €).

Remember
Character     ₠
Unicode       U+20A0
Hex entity    ₠
Decimal       ₠
CSS escape    \20A0
Named entity  (none)
Not the same  € (€) · $ · ℮ (estimated)

Prefer ₠ or ₠ in HTML (no named form). You can also type ₠ in a UTF-8 document.

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
Direct character₠HTML text (UTF-8)
CSS escape\20A0Stylesheet content

When to Use Which

SituationUse
Historical euro-currency glyph₠ or type ₠
Modern euro amounts (prices, UI)Euro sign (€, €)
US dollarDollar sign ($ / $)
Packaging estimated quantityEstimated symbol (℮)
Generated text via ::before / ::aftercontent: "\20A0"

Live Preview

Euro currency sign rendered alone, in a sample amount, and compared with lookalikes.

Glyph ₠
Large glyph ₠
Sample ₠ 12.50
Compared ₠   €   $   ℮
With entities Hex: ₠ | Decimal: ₠

Complete HTML Example

One page that shows Euro currency sign 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.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Euro Currency Sign (U+20A0) in HTML</title>
  <style>
    #point::after {
      content: "\20A0";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x20A0;</p>
  <p>Built with Decimal: &#8352;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ₠</p>
  <p>Compare: &#x20A0; vs &euro;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x20A0; inserts code point U+20A0 → ₠.

2. Decimal: same code point as 8352 → &#8352;. Same visual as hex.

3. CSS: use \20A0 in content (not an HTML entity). #point::after appends ₠.

4. Typed: paste ₠ in a UTF-8 document, or compare with modern &euro; (€).

Pitfalls & Tips

Common mistakes when working with Euro currency sign.

Name

No named entity

There is no HTML5 named entity for U+20A0. Use &#x20A0; or &#8352;. Do not invent &eurcy;.

€

Not the modern euro

U+20AC (&euro;) is the euro sign used for prices today. Prefer it over U+20A0 in almost all UI copy.

&euro;

&euro; ≠ U+20A0

&euro; always resolves to U+20AC (€). It will never produce ₠.

CSS vs HTML

Do not mix escapes

\20A0 belongs in CSS strings. &#x20A0; / &#8352; belong in HTML.

Fonts

Currency glyph coverage

Some fonts omit U+20A0. Prefer a font with solid Currency Symbols coverage when this glyph must be visible.

a11y

Add accessible text

Screen readers may not announce ₠ clearly. Prefer nearby prose (for example “euro currency sign”) when the symbol carries meaning.

Semicolon

End references

Always finish entities with ; — write &#x20A0;, not &#x20A0.

Browser Support

Euro currency sign (U+20A0) and its entity forms (&#x20A0;, &#8352;, CSS \\20A0) are supported in all mainstream browsers. Visible glyphs depend on Currency Symbols font coverage.

✓ Universal support

Euro Currency Sign (&#x20A0;)

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+20A0 Full support

Bottom line: Prefer &#x20A0; in HTML (no named form). Use &#8352; when decimal form is required, and \\20A0 only inside CSS content. For modern euros use &euro;.

Key Takeaways

  • Unicode: euro currency sign is U+20A0 (decimal 8352) — glyph ₠.
  • HTML: no named entity — use &#x20A0; / &#8352; / type ₠.
  • CSS: use \20A0 inside content for generated text.
  • Meaning: ₠ ≠ modern euro € (&euro;).

One line: U+20A0 → &#x20A0; / &#8352; / CSS \20A0 (for modern € use &euro;).

Frequently Asked Questions

Use &#x20A0; (hex), &#8352; (decimal), type ₠ directly in UTF-8, or the CSS escape \20A0 in content. There is no named HTML entity for U+20A0.
U+20A0 (EURO-CURRENCY SIGN). Hex 20A0, decimal 8352. It belongs to the Currency Symbols block (U+20A0–U+20CF).
No. HTML5 does not define a named entity for U+20A0. Prefer &#x20A0; or &#8352;. Note: &euro; is the modern euro sign (U+20AC), not U+20A0.
Use it only when you specifically need the historical euro-currency glyph. For everyday euro amounts, prefer &euro; (U+20AC).
HTML numeric entities (&#8352; or &#x20A0;) go in markup. The CSS escape \20A0 goes in stylesheet strings (usually content on ::before/::after).
No. U+20A0 is ₠ (euro-currency sign). U+20AC is € (euro sign), encoded with &euro;.

Did you know?

Euro currency sign is Unicode U+20A0 (decimal 8352) — glyph ₠ (EURO-CURRENCY SIGN) in Currency Symbols. There is no HTML5 named entity; use &#x20A0; or &#8352;. This is a historical currency glyph. For modern euros prefer euro sign &euro; (€, U+20AC).

Next: Euro Sign

Learn the HTML entity for euro sign (U+20AC).

Euro Sign 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