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