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