| Nom du symbole | Triangle With Underbar |
| Version Unicode | 3.2 |
| Unicode | U+29CB |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \29CB |
| Code hexadécimal | 0x29CB |
| Code HTML | ⧋ |
| LaTeX | \text{TRIANGLEWITHUNDERBAR} |
| Symbole | ⧋ |
| Encodage URL (pourcent UTF-8) | %E2%A7%8B |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole triangle with underbar sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Triangle With Underbar dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |