| Symbol Name | Triangle With Underbar |
| Unicode Version | 3.2 |
| Unicode | U+29CB |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \29CB |
| Hex Code | 0x29CB |
| HTML Code | ⧋ |
| LaTeX | \text{TRIANGLEWITHUNDERBAR} |
| Symbol | ⧋ |
| URL encode (UTF-8 percent) | %E2%A7%8B |
| Spoken / screen reader name | 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}You can type the triangle with underbar symbol on most modern devices with the help of following methods:
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>Triangle With Underbar symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |