Banknote With Dollar Sign

๐Ÿ’ต

Shortcodes

Copy useful codes for banknote with dollar sign ๐Ÿ’ต to use in websites, apps, blogs, and docs.

Unicode
U+1F4B5
HTML Code
💵
HEX Code
💵
CSS Code
\1F4B5
JS/JSON
\u1F4B5
Unix/C/PHP/JAVA
0x1F4B5
URL-encode
%F0%9F%92%B5

Customize Banknote With Dollar Sign

Customize ๐Ÿ’ต, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿ’ต
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ’ต</span>
HTML Code:
<span>&#128181;</span>
HEX Code:
<span>&#x1F4B5;</span>

Add with CSS

.banknote-with-dollar-sign::before {
  content: '\\1F4B5';
}

Set it in JavaScript

document.querySelector('.banknote-with-dollar-sign').textContent = '๐Ÿ’ต';
copied