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