Dollar Sign

$

Shortcodes

Copy useful codes for dollar sign $ to use in websites, apps, blogs, and docs.

Unicode
U+0024
Alt Code
36
HTML Code
$
HEX Code
$
CSS Code
\0024
JS/JSON
\u0024
Unix/C/PHP/JAVA
0x24
URL-encode
%24

Customize Dollar Sign

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

$
  

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

Insert in HTML

1. Direct symbol:
<span>$</span>
HTML Code:
<span>&#36;</span>
HEX Code:
<span>&#x0024;</span>

Add with CSS

.dollar-sign::before {
  content: '\\0024';
}

Set it in JavaScript

document.querySelector('.dollar-sign').textContent = '$';
copied