| Nom du symbole | Reversed Prime |
| Version Unicode | 1.1 |
| Unicode | U+2035 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \2035 |
| Code hexadécimal | 0x2035 |
| Code HTML | ‵ |
| LaTeX | \text{REVERSEDPRIME} |
| Symbole | ‵ |
| Encodage URL (pourcent UTF-8) | %E2%80%B5 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole reversed prime sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Reversed Prime dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |