| Nome del simbolo | Ruble Sign |
| Versione Unicode | 7.0 |
| Unicode | U+20BD |
| Blocco Unicode | |
| Categoria generale | Currency Symbol (Sc) |
| Codice CSS | \20BD |
| Codice esadecimale | 0x20BD |
| Codice HTML | ₽ |
| LaTeX | \textruble |
| Simbolo | ₽ |
| Codifica URL (percentuale UTF-8) | %E2%82%BD |
| Nome parlato / screen reader | Ruble Sign |
| UTF-8 | E2 82 BD |
| UTF-16 | 20BD |
| UTF-32 | 000020BD |
1\documentclass{article}2\usepackage{pifont}3\textruble4\end{document}Puoi digitare il simbolo ruble sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Ruble Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |