Currency Sign

¤

Shortcodes

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

Unicode
U+00A4
Alt Code
164
HTML Code
¤
HTML Entity
¤
HEX Code
¤
CSS Code
\00A4
JS/JSON
\u00A4
Unix/C/PHP/JAVA
0xA4
URL-encode
%C2%A4

Customize Currency Sign

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

¤
  

How to use Currency Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>¤</span>
HTML Code:
<span>&#164;</span>
HTML Entity:
<span>&curren;</span>
HEX Code:
<span>&#x00A4;</span>

Add with CSS

.currency-sign::before {
  content: '\\00A4';
}

Set it in JavaScript

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