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