| Nome del simbolo | Reversed Prime |
| Versione Unicode | 1.1 |
| Unicode | U+2035 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2035 |
| Codice esadecimale | 0x2035 |
| Codice HTML | ‵ |
| LaTeX | \text{REVERSEDPRIME} |
| Simbolo | ‵ |
| Codifica URL (percentuale UTF-8) | %E2%80%B5 |
| Nome parlato / screen reader | Reversed Prime |
| UTF-8 | E2 80 B5 |
| UTF-16 | 2035 |
| UTF-32 | 00002035 |
1\documentclass{article}2\usepackage{pifont}3\text{REVERSEDPRIME}4\end{document}Puoi digitare il simbolo reversed prime sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8245 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "reversed prime", or use Unicode Hex Input with 2035.
Ctrl + Shift + U, type 2035, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.reversed-prime::before { content: "\2035"; }1<span>‵</span>La rappresentazione del simbolo Reversed Prime nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2035' or String.fromCodePoint(8245) |
| Python | '\N{REVERSED PRIME}' or chr(8245) |
| Rust | '\u{2035}' |
| C / C++ | UTF-8 source or wchar_t with U+2035 |
| Go | string(rune(0x2035)) |
| Ruby | "\u{2035}" |