| Nombre del símbolo | Rupee Sign |
| Versión Unicode | 1.1 |
| Unicode | U+20A8 |
| Bloque Unicode | |
| Categoría general | Currency Symbol (Sc) |
| Código CSS | \20A8 |
| Código hexadecimal | 0x20A8 |
| Código HTML | ₨ |
| LaTeX | \textrupee |
| Símbolo | ₨ |
| Codificación URL (porcentaje UTF-8) | %E2%82%A8 |
| Nombre oral / lector de pantalla | Rupee Sign |
| UTF-8 | E2 82 A8 |
| UTF-16 | 20A8 |
| UTF-32 | 000020A8 |
1\documentclass{article}2\usepackage{pifont}3\textrupee4\end{document}Puedes escribir el símbolo rupee sign en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8360 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "rupee", or enable Unicode Hex Input.
Ctrl + Shift + U, type 20a8, then Enter (layout-dependent).
Paste from this page or use the symbol picker.
Paste from this page or select from extended symbol panels.
1span.rupee-old::before { content: "\20A8"; }1<span>₨</span>La representación del símbolo Rupee Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u20A8' or String.fromCodePoint(0x20A8) |
| Python | '\N{RUPEE SIGN}' or chr(8360) |
| Rust | '\u{20A8}' |
| C / C++ | UTF-8 source or wchar_t with U+20A8 |
| Go | string(rune(0x20A8)) |
| Ruby | "\u20A8" |