| 記号名 | Triangle With Underbar |
| Unicodeバージョン | 3.2 |
| Unicode | U+29CB |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \29CB |
| 16進コード | 0x29CB |
| HTMLコード | ⧋ |
| LaTeX | \text{TRIANGLEWITHUNDERBAR} |
| 記号 | ⧋ |
| URLエンコード(UTF-8パーセント) | %E2%A7%8B |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでtriangle with underbar記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |