| Nom du symbole | Right Tack |
| Version Unicode | 1.1 |
| Unicode | U+22A2 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \22A2 |
| Code hexadécimal | 0x22A2 |
| Code HTML | ⊢ |
| LaTeX | \vdash |
| Symbole | ⊢ |
| Encodage URL (pourcent UTF-8) | %E2%8A%A2 |
| Nom oral / lecteur d’écran | Right Tack |
| UTF-8 | E2 8A A2 |
| UTF-16 | 22A2 |
| UTF-32 | 000022A2 |
1\documentclass{article}2\usepackage{pifont}3\vdash 4\end{document}Vous pouvez saisir le symbole right tack sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8866 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right tack", or use Unicode Hex Input with 22A2.
Ctrl + Shift + U, type 22a2, 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 math symbol support.
1span.right-tack::before { content: "\22A2"; }1<span>⊢</span>La représentation du symbole Right Tack dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u22A2' or String.fromCodePoint(0x22A2) |
| Python | '\N{RIGHT TACK}' or chr(8866) |
| Rust | '\u{22A2}' |
| C / C++ | UTF-8 source or wchar_t with U+22A2 |
| Go | string(rune(0x22A2)) |
| Ruby | "\u22A2" |