| Symboolnaam | Indian Rupee Sign |
| Unicode-versie | 6.0 |
| Unicode | U+20B9 |
| Unicode-blok | |
| Algemene categorie | Currency Symbol (Sc) |
| CSS-code | \20B9 |
| Hexadecimale code | 0x20B9 |
| HTML-code | ₹ |
| LaTeX | \textindianrupee |
| Symbool | ₹ |
| URL-codering (UTF-8 procent) | %E2%82%B9 |
| Uitgesproken naam / schermlezer | Indian Rupee Sign |
| UTF-8 | E2 82 B9 |
| UTF-16 | 20B9 |
| UTF-32 | 000020B9 |
1\documentclass{article}2\usepackage{pifont}3\textindianrupee4\end{document}Je kunt het indian rupee sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Indian Rupee Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |