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