| 記号名 | S In Triangle |
| Unicodeバージョン | 3.2 |
| Unicode | U+29CC |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \29CC |
| 16進コード | 0x29CC |
| HTMLコード | ⧌ |
| LaTeX | \text{SINTRIANGLE} |
| 記号 | ⧌ |
| URLエンコード(UTF-8パーセント) | %E2%A7%8C |
| 読み上げ名 / スクリーンリーダー | S In Triangle |
| UTF-8 | E2 A7 8C |
| UTF-16 | 29CC |
| UTF-32 | 000029CC |
1\documentclass{article}2\usepackage{pifont}3\text{SINTRIANGLE}4\end{document}以下の方法でほとんどの最新デバイスでs in triangle記号を入力できます:
Alt + 10700 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "s in triangle", or use Unicode Hex Input with 29CC.
Ctrl + Shift + U, type 29cc, 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.s-in-triangle::before { content: "\29CC"; }1<span>⧌</span>各プログラミング言語におけるS In Triangle記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u29CC' or String.fromCodePoint(10700) |
| Python | '\N{S IN TRIANGLE}' or chr(10700) |
| Rust | '\u{29CC}' |
| C / C++ | UTF-8 source or wchar_t with U+29CC |
| Go | string(rune(0x29CC)) |
| Ruby | "\u{29CC}" |