| Nome del simbolo | Upper Right Triangle |
| Versione Unicode | 3.2 |
| Unicode | U+25F9 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \25F9 |
| Codice esadecimale | 0x25F9 |
| Codice HTML | ◹ |
| LaTeX | \text{UPPERRIGHTTRIANGLE} |
| Simbolo | ◹ |
| Codifica URL (percentuale UTF-8) | %E2%97%B9 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo upper right triangle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Upper Right Triangle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |