| Nombre del símbolo | Indian Rupee Sign |
| Versión Unicode | 6.0 |
| Unicode | U+20B9 |
| Bloque Unicode | |
| Categoría general | Currency Symbol (Sc) |
| Código CSS | \20B9 |
| Código hexadecimal | 0x20B9 |
| Código HTML | ₹ |
| LaTeX | \textindianrupee |
| Símbolo | ₹ |
| Codificación URL (porcentaje UTF-8) | %E2%82%B9 |
| Nombre oral / lector de pantalla | Indian Rupee Sign |
| UTF-8 | E2 82 B9 |
| UTF-16 | 20B9 |
| UTF-32 | 000020B9 |
1\documentclass{article}2\usepackage{pifont}3\textindianrupee4\end{document}Puedes escribir el símbolo indian rupee sign en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Indian Rupee Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |