| Nome del simbolo | Right Triangle |
| Versione Unicode | 1.1 |
| Unicode | U+22BF |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \22BF |
| Codice esadecimale | 0x22BF |
| Codice HTML | ⊿ |
| LaTeX | \triangle |
| Simbolo | ⊿ |
| Codifica URL (percentuale UTF-8) | %E2%8A%BF |
| Nome parlato / screen reader | Right Triangle |
| UTF-8 | E2 8A BF |
| UTF-16 | 22BF |
| UTF-32 | 000022BF |
1\documentclass{article}2\usepackage{pifont}3\triangle 4\end{document}Puoi digitare il simbolo right triangle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Right Triangle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |