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