Currency

Euro Sign ()

The official currency symbol for the Eurozone (€). Standardized in Unicode at U+20AC.

One-Click Copyable Code Formats

HTML Named Entity
€
HTML Decimal Code
€
HTML Hex Code
€
CSS content (\XXXX)
\20AC
JavaScript Unicode (\uXXXX)
\u20AC
URL Percent Encoded
%E2%82%AC

Real-World Implementation Snippets

HTML5 Document
<p>Example: &euro;</p>
CSS ::before / ::after
.badge::before { content: '\20AC '; }
React JSX / TypeScript
<span>{"\u20AC"}</span>
Frequently Asked Questions

Euro Sign (€) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&euro;". If using numeric codes, you can use the decimal code "&#8364;" or hex code "&#x20AC;".