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