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