| Symbol Name | Electric Arrow |
| Unicode Version | 3.0 |
| Unicode | U+2301 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2301 |
| Hex Code | 0x2301 |
| HTML Code | ⌁ |
| LaTeX | \text{ELECTRICARROW} |
| Symbol | ⌁ |
| URL encode (UTF-8 percent) | %E2%8C%81 |
| Spoken / screen reader name | 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}You can type the electric arrow symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |