| Symboolnaam | Upper Left Triangle |
| Unicode-versie | 3.2 |
| Unicode | U+25F8 |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \25F8 |
| Hexadecimale code | 0x25F8 |
| HTML-code | ◸ |
| LaTeX | \text{UPPERLEFTTRIANGLE} |
| Symbool | ◸ |
| URL-codering (UTF-8 procent) | %E2%97%B8 |
| Uitgesproken naam / schermlezer | Upper Left Triangle |
| UTF-8 | E2 97 B8 |
| UTF-16 | 25F8 |
| UTF-32 | 000025F8 |
1\documentclass{article}2\usepackage{pifont}3\text{UPPERLEFTTRIANGLE}4\end{document}Je kunt het upper left triangle-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 9720 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "upper left triangle", or use Unicode Hex Input with 25F8.
Ctrl + Shift + U, type 25f8, 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-left-triangle::before { content: "\25F8"; }1<span>◸</span>De weergave van het Upper Left Triangle-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u25F8' or String.fromCodePoint(9720) |
| Python | '\N{UPPER LEFT TRIANGLE}' or chr(9720) |
| Rust | '\u{25F8}' |
| C / C++ | UTF-8 source or wchar_t with U+25F8 |
| Go | string(rune(0x25F8)) |
| Ruby | "\u{25F8}" |