| Nome del simbolo | Bengali Rupee Mark |
| Versione Unicode | 1.1 |
| Unicode | U+09F2 |
| Blocco Unicode | |
| Categoria generale | Currency Symbol (Sc) |
| Codice CSS | \09F2 |
| Codice esadecimale | 0x09F2 |
| Codice HTML | ৲ |
| LaTeX | \textbengalirupee |
| Simbolo | ৲ |
| Codifica URL (percentuale UTF-8) | %E0%A7%B2 |
| Nome parlato / screen reader | Bengali Rupee Mark |
| UTF-8 | E0 A7 B2 |
| UTF-16 | 09F2 |
| UTF-32 | 000009F2 |
1\documentclass{article}2\usepackage{pifont}3\textbengalirupee4\end{document}Puoi digitare il simbolo bengali rupee mark sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 2546 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "rupee", or enable Unicode Hex Input.
Ctrl + Shift + U, type 09f2, then Enter (layout-dependent).
Paste from this page or use the symbol picker.
Paste from this page or select from extended symbol panels.
1span.bengali-rupee::before { content: "\09F2"; }1<span>৲</span>La rappresentazione del simbolo Bengali Rupee Mark nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u09F2' or String.fromCodePoint(0x09F2) |
| Python | '\N{BENGALI RUPEE MARK}' or chr(2546) |
| Rust | '\u{09F2}' |
| C / C++ | UTF-8 source or wchar_t with U+09F2 |
| Go | string(rune(0x09F2)) |
| Ruby | "\u09F2" |