Euro-currency Sign

Shortcodes

Copy useful codes for euro-currency sign ₠ to use in websites, apps, blogs, and docs.

Unicode
U+20A0
HTML Code
₠
HEX Code
₠
CSS Code
\20A0
JS/JSON
\u20A0
Unix/C/PHP/JAVA
0x20A0
URL-encode
%E2%82%A0

Customize Euro-currency Sign

Customize ₠, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Euro-currency Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₠</span>
HTML Code:
<span>&#8352;</span>
HEX Code:
<span>&#x20A0;</span>

Add with CSS

.euro-currency-sign::before {
  content: '\\20A0';
}

Set it in JavaScript

document.querySelector('.euro-currency-sign').textContent = '₠';
copied