Currency
$

Dollar Sign ($)

The standard dollar currency symbol used for United States Dollar (USD), Canadian Dollar (CAD), Australian Dollar (AUD), and other currencies.

One-Click Copyable Code Formats

HTML Named Entity
$
HTML Decimal Code
$
HTML Hex Code
$
CSS content (\XXXX)
\0024
JavaScript Unicode (\uXXXX)
\u0024
URL Percent Encoded
%24

Real-World Implementation Snippets

HTML5 Document
<p>Example: &#36;</p>
CSS ::before / ::after
.badge::before { content: '\0024 '; }
React JSX / TypeScript
<span>{"\u0024"}</span>
Frequently Asked Questions

Dollar Sign ($) HTML Entity FAQ

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

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