Bengali Abbreviation Sign

Shortcodes

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

Unicode
U+09FD
HTML Code
৽
HEX Code
৽
CSS Code
\09FD
JS/JSON
\u09FD
Unix/C/PHP/JAVA
0x9FD
URL-encode
%E0%A7%BD

Customize Bengali Abbreviation Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>৽</span>
HTML Code:
<span>&#2557;</span>
HEX Code:
<span>&#x09FD;</span>

Add with CSS

.bengali-abbreviation-sign::before {
  content: '\\09FD';
}

Set it in JavaScript

document.querySelector('.bengali-abbreviation-sign').textContent = '৽';
copied