| Symbol Name | Upper Right Triangle |
| Unicode Version | 3.2 |
| Unicode | U+25F9 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \25F9 |
| Hex Code | 0x25F9 |
| HTML Code | ◹ |
| LaTeX | \text{UPPERRIGHTTRIANGLE} |
| Symbol | ◹ |
| URL encode (UTF-8 percent) | %E2%97%B9 |
| Spoken / screen reader name | 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}You can type the upper right triangle symbol on most modern devices with the help of following methods:
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>Upper Right Triangle symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |