| Symbol Name | Right Triangle |
| Unicode Version | 1.1 |
| Unicode | U+22BF |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \22BF |
| Hex Code | 0x22BF |
| HTML Code | ⊿ |
| LaTeX | \triangle |
| Symbol | ⊿ |
| URL encode (UTF-8 percent) | %E2%8A%BF |
| Spoken / screen reader name | Right Triangle |
| UTF-8 | E2 8A BF |
| UTF-16 | 22BF |
| UTF-32 | 000022BF |
1\documentclass{article}2\usepackage{pifont}3\triangle 4\end{document}You can type the right triangle symbol on most modern devices with the help of following methods:
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>Right Triangle symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |