| Nome del simbolo | Triangle With Underbar |
| Versione Unicode | 3.2 |
| Unicode | U+29CB |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \29CB |
| Codice esadecimale | 0x29CB |
| Codice HTML | ⧋ |
| LaTeX | \text{TRIANGLEWITHUNDERBAR} |
| Simbolo | ⧋ |
| Codifica URL (percentuale UTF-8) | %E2%A7%8B |
| Nome parlato / screen reader | Triangle With Underbar |
| UTF-8 | E2 A7 8B |
| UTF-16 | 29CB |
| UTF-32 | 000029CB |
1\documentclass{article}2\usepackage{pifont}3\text{TRIANGLEWITHUNDERBAR}4\end{document}Puoi digitare il simbolo triangle with underbar sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 10699 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "triangle with underbar", or use Unicode Hex Input with 29CB.
Ctrl + Shift + U, type 29cb, 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.triangle-with-underbar::before { content: "\29CB"; }1<span>⧋</span>La rappresentazione del simbolo Triangle With Underbar nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u29CB' or String.fromCodePoint(10699) |
| Python | '\N{TRIANGLE WITH UNDERBAR}' or chr(10699) |
| Rust | '\u{29CB}' |
| C / C++ | UTF-8 source or wchar_t with U+29CB |
| Go | string(rune(0x29CB)) |
| Ruby | "\u{29CB}" |