HTML Entity for Bengali Rupee Sign (৳)

What You'll Learn
How to display the Bengali Rupee Sign (৳) in HTML using numeric character references and CSS. This character is U+09F3 in the Bengali script block (U+0980–U+09FF). It is the standard currency symbol for the Bangladeshi taka (ISO 4217: BDT) in modern apps and websites. The older Bengali Rupee Mark (৲, U+09F2) is a different code point used for historic typography.
There is no named HTML entity for U+09F3. Use ৳ or ৳ in markup, or \09F3 in stylesheet content. Use a Bengali-capable webfont and lang="bn" so prices line up with surrounding Bangla.
⚡ Quick Reference — Bengali Rupee Sign
U+09F3Bengali block (BDT)
৳Hexadecimal reference
৳Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+09F3
Hex code ৳
HTML code ৳
Named entity —
CSS code \09F3Complete HTML Example
This example demonstrates the Bengali Rupee Sign using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\09F3";
}
</style>
</head>
<body>
<p>Bengali Rupee Sign using Hexa Decimal: ৳</p>
<p>Bengali Rupee Sign using HTML Code: ৳</p>
<p id="point">Bengali Rupee Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+09F3 renders whenever Bengali script fonts are available (system Noto / Kalpurush / embedded webfonts):
👀 Live Preview
Compare the modern taka sign (৳, U+09F3) with the historic mark (৲, U+09F2):
🧠 How It Works
Hexadecimal Code
৳ references code point U+09F3 using hex digits 09F3 after the #x prefix.
Decimal HTML Code
৳ is the decimal equivalent (2547) for the same Bengali Rupee Sign character.
CSS Entity
\09F3 is the CSS escape for U+09F3, used in the content property of ::before or ::after.
Same visual result
Hex, decimal, and CSS escapes all produce ৳. There is no named HTML entity; do not confuse with ৲ (U+09F2).
Use Cases
The Bengali Rupee Sign (৳) is commonly used for:
Product tiles, PDP prices, and localized headers for Bangladesh.
Subtotals, shipping lines, and payment summaries in taka.
Balances, statements, and loan calculators for BDT accounts.
PDF and HTML bills aligned with current taka branding.
Rate boards and remittance copy beside ISO BDT.
Locale rows that switch glyph + number shape for bn-BD.
Expose “Bangladeshi taka” or aria-label with digits; the ৳ glyph should not be the only price signal.
💡 Best Practices
Do
- Prefer ৳ for new Bangladesh-facing products unless design explicitly needs the historic mark (U+09F2)
- Show numeric amounts with grouping rules for bn-BD and include
BDTor “Taka” in finance flows - Load
Noto Sans Bengali/Kalpurushvia@font-facewhen system coverage is uncertain - Use
\09F3only inside CSScontent, not pasted into HTML text - Set
lang="bn"on price containers for correct shaping with Bangla digits
Don’t
- Swap ৳ and ৲ without telling users which legacy or modern meaning you intend
- Rely on a bare glyph for compliance-sensitive totals (add digits and currency words)
- Assume every global sans font ships U+09F3 at the same weight as Latin digits
- Hard-code only the symbol when
Intl.NumberFormator ICU can format full bn-BD currency strings - Use CSS escapes inside HTML markup (they belong in stylesheets)
Key Takeaways
Two numeric references render the same glyph
৳ ৳In CSS content, use the escape
\09F3U+09F3 is the standard taka sign; U+09F2 is the historic mark
Pair with ISO BDT and Bengali fonts for production-ready pricing
Spell amounts for screen readers; ৳ is visual shorthand, not the whole price
❓ Frequently Asked Questions
৳ (hex), ৳ (decimal), or \09F3 in CSS content. There is no named entity; all valid methods render ৳.U+09F3 (hex 09F3, decimal 2547). It lives in the Bengali block and encodes the Bangladeshi taka currency sign, distinct from the historic mark U+09F2 (৲).\09F3 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.৳, ৳, or \09F3 in CSS depending on whether you are authoring markup or styles.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
