| Symbol Name | Indian Rupee Sign |
| Unicode Version | 6.0 |
| Unicode | U+20B9 |
| Unicode block | |
| General category | Currency Symbol (Sc) |
| CSS Code | \20B9 |
| Hex Code | 0x20B9 |
| HTML Code | ₹ |
| LaTeX | \textindianrupee |
| Symbol | ₹ |
| URL encode (UTF-8 percent) | %E2%82%B9 |
| Spoken / screen reader name | Indian Rupee Sign |
| UTF-8 | E2 82 B9 |
| UTF-16 | 20B9 |
| UTF-32 | 000020B9 |
1\documentclass{article}2\usepackage{pifont}3\textindianrupee4\end{document}You can type the indian rupee sign symbol on most modern devices with the help of following methods:
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>Indian Rupee Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |