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