Bengali Rupee Sign

Shortcodes

Copy useful codes for bengali rupee sign ৳ to use in websites, apps, blogs, and docs.

Unicode
U+09F3
HTML Code
৳
HEX Code
৳
CSS Code
\09F3
JS/JSON
\u09F3
Unix/C/PHP/JAVA
0x9F3
URL-encode
%E0%A7%B3

Customize Bengali Rupee Sign

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

  

How to use Bengali Rupee Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>৳</span>
HTML Code:
<span>&#2547;</span>
HEX Code:
<span>&#x09F3;</span>

Add with CSS

.bengali-rupee-sign::before {
  content: '\\09F3';
}

Set it in JavaScript

document.querySelector('.bengali-rupee-sign').textContent = '৳';
copied