| Nome del simbolo | Indian Rupee Sign |
| Versione Unicode | 6.0 |
| Unicode | U+20B9 |
| Blocco Unicode | |
| Categoria generale | Currency Symbol (Sc) |
| Codice CSS | \20B9 |
| Codice esadecimale | 0x20B9 |
| Codice HTML | ₹ |
| LaTeX | \textindianrupee |
| Simbolo | ₹ |
| Codifica URL (percentuale UTF-8) | %E2%82%B9 |
| Nome parlato / screen reader | Indian Rupee Sign |
| UTF-8 | E2 82 B9 |
| UTF-16 | 20B9 |
| UTF-32 | 000020B9 |
1\documentclass{article}2\usepackage{pifont}3\textindianrupee4\end{document}Puoi digitare il simbolo indian rupee sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8377 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "rupee", or enable Unicode Hex Input.
Ctrl + Shift + U, type 20b9, then Enter (layout-dependent).
Long-press the $ key, or use the symbol picker.
Long-press the $ key on many keyboards, or paste from this page.
1span.rupee::before { content: "\20B9"; }1<span>₹</span>La rappresentazione del simbolo Indian Rupee Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u20B9' or String.fromCodePoint(0x20B9) |
| Python | '\N{INDIAN RUPEE SIGN}' or chr(8377) |
| Rust | '\u{20B9}' |
| C / C++ | UTF-8 source or wchar_t with U+20B9 |
| Go | string(rune(0x20B9)) |
| Ruby | "\u20B9" |