HTML Entity for Euro Currency Sign (₠)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+20A0

What You'll Learn

How to display the Euro Currency Sign (₠) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20A0 (EURO-CURRENCY SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the legacy euro-currency (ECU) glyph used in financial and historical currency notation.

Render it with ₠, ₠, or CSS escape \20A0. There is no named HTML entity. Do not confuse ₠ with the modern Euro sign (€, €) used for everyday euro prices.

⚡ Quick Reference — Euro Currency Sign

Unicode U+20A0

Currency Symbols

Hex Code ₠

Hexadecimal reference

HTML Code ₠

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20A0
Hex code       ₠
HTML code      ₠
Named entity   (none)
CSS code       \20A0
Meaning        Euro-currency (ECU) sign
Related        U+20AC = Euro sign (€, €)
1

Complete HTML Example

This example demonstrates the Euro Currency Sign (₠) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20A0";
  }
 </style>
</head>
<body>
<p>Euro Currency Sign using Hexadecimal: &#x20A0;</p>
<p>Euro Currency Sign using HTML Code: &#8352;</p>
<p id="point">Euro Currency Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Euro Currency Sign entity is universally supported in modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the euro-currency sign (₠) in financial context and compared with the Euro sign (€):

ECU notation ₠ 100.00
Large glyph
vs Euro sign ₠   vs   €
Numeric refs &#x20A0; &#8352;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x20A0; uses the Unicode hexadecimal value 20A0 to display the Euro Currency Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8352; uses the decimal Unicode value 8352 to display the same character.

HTML markup
3

CSS Entity

\20A0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+20A0 in the Currency Symbols block (U+20A0–U+20CF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Euro Currency Sign (₠) commonly appears in:

💰 Finance

Financial text, reports, and euro-currency (ECU) notation.

📚 Historical

Legacy ECU references in historical documents and archives.

🏦 Banking

Banking portals, dashboards, and currency reference pages.

🛒 E-commerce

Multi-currency displays and legacy pricing labels.

📄 Documentation

Financial reports, invoices, and currency documentation.

🌐 Symbol guides

Currency symbol reference pages and Unicode glossaries.

💡 Best Practices

Do

  • Use &#x20A0; or &#8352; for ECU / euro-currency markup
  • Use &euro; (€) for modern Euro prices in everyday content
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add aria-label (e.g. “euro currency sign”) for accessibility
  • Pair the symbol with amounts so context is clear

Don’t

  • Confuse ₠ (ECU) with € (&euro;, modern Euro sign)
  • Expect a named entity—none exists for U+20A0
  • Put CSS escape \20A0 in HTML text nodes
  • Assume every font renders ₠ and € distinctly at small sizes
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ₠

&#x20A0; &#8352;
2

For CSS stylesheets, use the escape in the content property

\20A0
3

Unicode U+20A0 — EURO-CURRENCY SIGN

4

Legacy ECU notation—not the modern Euro sign €

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x20A0; (hex), &#8352; (decimal), or \20A0 in CSS content. There is no named entity.
U+20A0 (EURO-CURRENCY SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20A0, decimal 8352. Legacy ECU / euro-currency glyph.
When your content requires the euro-currency (ECU) sign in financial, historical, or currency reference material—not for ordinary modern Euro prices (use € / &euro; instead).
Named entities cover a subset of common characters. U+20A0 has no named entity—use &#x20A0; or &#8352; in markup, or \20A0 in CSS.
U+20A0 (₠) is the euro-currency (ECU) sign with no named entity. U+20AC (€) is the modern Euro sign with named entity &euro;. Different characters for different purposes.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, finance, and more.

All HTML Entities →

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