| 記号名 | Leftwards Double Arrow-tail |
| Unicodeバージョン | 3.2 |
| Unicode | U+291B |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \291B |
| 16進コード | 0x291B |
| HTMLコード | ⤛ |
| LaTeX | \text{LEFTWARDSDOUBLEARROW-TAIL} |
| 記号 | ⤛ |
| URLエンコード(UTF-8パーセント) | %E2%A4%9B |
| 読み上げ名 / スクリーンリーダー | Leftwards Double Arrow-tail |
| UTF-8 | E2 A4 9B |
| UTF-16 | 291B |
| UTF-32 | 0000291B |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTWARDSDOUBLEARROW-TAIL}4\end{document}以下の方法でほとんどの最新デバイスでleftwards double arrow-tail記号を入力できます:
Alt + 10523 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "leftwards double arrow-tail", or use Unicode Hex Input with 291B.
Ctrl + Shift + U, type 291b, 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 arrow symbol support.
1span.leftwards-double-arrow-tail::before { content: "\291B"; }1<span>⤛</span>各プログラミング言語におけるLeftwards Double Arrow-tail記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u291B' or String.fromCodePoint(10523) |
| Python | '\N{LEFTWARDS DOUBLE ARROW-TAIL}' or chr(10523) |
| Rust | '\u{291B}' |
| C / C++ | UTF-8 source or wchar_t with U+291B |
| Go | string(rune(0x291B)) |
| Ruby | "\u{291B}" |