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