| Nom du symbole | Turned Semicolon |
| Version Unicode | 6.1 |
| Unicode | U+2E35 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \2E35 |
| Code hexadécimal | 0x2E35 |
| Code HTML | ⸵ |
| LaTeX | \text{TURNEDSEMICOLON} |
| Symbole | ⸵ |
| Encodage URL (pourcent UTF-8) | %E2%B8%B5 |
| Nom oral / lecteur d’écran | Turned Semicolon |
| UTF-8 | E2 B8 B5 |
| UTF-16 | 2E35 |
| UTF-32 | 00002E35 |
1\documentclass{article}2\usepackage{pifont}3\text{TURNEDSEMICOLON}4\end{document}Vous pouvez saisir le symbole turned semicolon sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 11829 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "turned semicolon", or use Unicode Hex Input with 2E35.
Ctrl + Shift + U, type 2e35, 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.turned-semicolon::before { content: "\2E35"; }1<span>⸵</span>La représentation du symbole Turned Semicolon dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2E35' or String.fromCodePoint(11829) |
| Python | '\N{TURNED SEMICOLON}' or chr(11829) |
| Rust | '\u{2E35}' |
| C / C++ | UTF-8 source or wchar_t with U+2E35 |
| Go | string(rune(0x2E35)) |
| Ruby | "\u{2E35}" |