HTML Entity for Bengali Rupee Mark (৲)

What You'll Learn
How to display the Bengali Rupee Mark (৲) in HTML using numeric character references and CSS. This character is U+09F2 in the Bengali script block (U+0980–U+09FF). Unicode describes it as the historic taka mark; the modern Bangladeshi taka is often shown with the separate Bengali Rupee Sign (৳, U+09F3) in contemporary typography.
There is no named HTML entity for U+09F2. Use ৲ or ৲ in markup, or \09F2 in stylesheet content. Pair with a Bengali-capable webfont so the mark aligns with surrounding Bangla text.
⚡ Quick Reference — Bengali Rupee Mark
U+09F2Bengali block
৲Hexadecimal reference
৲Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+09F2
Hex code ৲
HTML code ৲
Named entity —
CSS code \09F2Complete HTML Example
This example demonstrates the Bengali Rupee Mark using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\09F2";
}
</style>
</head>
<body>
<p>Bengali Rupee Mark using Hexa Decimal: ৲</p>
<p>Bengali Rupee Mark using HTML Code: ৲</p>
<p id="point">Bengali Rupee Mark using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+09F2 renders whenever Bengali script fonts are available (system Noto / Kalpurush / embedded webfonts):
👀 Live Preview
Compare the historic mark (৲, U+09F2) with the modern Bengali rupee / taka sign (৳, U+09F3) in sample copy:
🧠 How It Works
Hexadecimal Code
৲ references code point U+09F2 using hex digits 09F2 after the #x prefix.
Decimal HTML Code
৲ is the decimal equivalent (2546) for the same Bengali Rupee Mark character.
CSS Entity
\09F2 is the CSS escape for U+09F2, 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+09F3).
Use Cases
The Bengali Rupee Mark (৲) is commonly used for:
Regional landing pages, news, and catalogs with historic typography.
Price chips when design calls for the traditional mark alongside Bangla digits.
PDF or HTML invoices that must match legacy printed forms.
Exhibits and textbooks discussing historic currency forms.
Locale-specific currency rows next to ISO codes and Latin labels.
Decorative marks in marketing copy (always pair real amounts with BDT clarity).
Expose currency with words (aria-label, visible BDT/Taka) so AT users are not guessing from a glyph alone.
💡 Best Practices
Do
- Ship
Noto Sans Bengali,Kalpurush, or equivalent in@font-facewhen ৲ must match body Bangla - Use
৲or৲consistently within one document - Document when you mean historic mark (U+09F2) vs modern sign (U+09F3)
- Use
\09F2only inside CSScontent, not pasted into HTML text - Combine with
lang="bn"on the element or ancestor for correct shaping
Don’t
- Use ৲ as the default taka symbol for new products if your style guide expects ৳ (U+09F3)
- Assume every Latin-first UI font includes Bengali currency glyphs
- Hide monetary amounts behind icons only—show digits and ISO 4217 (
BDT) for clarity - Mix multiple currency glyphs in one price without explaining each
- 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
\09F2U+09F2 historic mark · U+09F3 modern ৳ (different code point)
Bengali block—embed a Bengali webfont for reliable rendering
Spell amounts and currency for accessibility; glyphs decorate the layout
❓ Frequently Asked Questions
৲ (hex), ৲ (decimal), or \09F2 in CSS content. There is no named entity; all valid methods render ৲.U+09F2 (hex 09F2, decimal 2546). It lives in the Bengali block and is not the same character as the Bengali rupee sign (U+09F3, ৳).\09F2 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.৲, ৲, or \09F2 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
