| 記号名 | Modifier Letter Low Left Arrow |
| Unicodeバージョン | 4.0 |
| Unicode | U+02FF |
| Unicodeブロック | |
| 一般カテゴリ | Modifier Symbol (Sk) |
| CSSコード | \02FF |
| 16進コード | 0x02FF |
| HTMLコード | ˿ |
| LaTeX | \text{MODIFIERLETTERLOWLEFTARROW} |
| 記号 | ˿ |
| URLエンコード(UTF-8パーセント) | %CB%BF |
| 読み上げ名 / スクリーンリーダー | Modifier Letter Low Left Arrow |
| UTF-8 | CB BF |
| UTF-16 | 02FF |
| UTF-32 | 000002FF |
1\documentclass{article}2\usepackage{pifont}3\text{MODIFIERLETTERLOWLEFTARROW}4\end{document}以下の方法でほとんどの最新デバイスでmodifier letter low left arrow記号を入力できます:
Alt + 767 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "modifier letter low left arrow", or use Unicode Hex Input with 02FF.
Ctrl + Shift + U, type 02ff, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.modifier-letter-low-left-arrow::before { content: "\02FF"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>˿</span>各プログラミング言語におけるModifier Letter Low Left Arrow記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u02FF' or String.fromCodePoint(767) |
| Python | '\N{MODIFIER LETTER LOW LEFT ARROW}' or chr(767) |
| Rust | '\u{02FF}' |
| C / C++ | UTF-8 source or wchar_t with U+02FF |
| Go | string(rune(0x02FF)) |
| Ruby | "\u{02FF}" |