| Nome del simbolo | Electric Arrow |
| Versione Unicode | 3.0 |
| Unicode | U+2301 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2301 |
| Codice esadecimale | 0x2301 |
| Codice HTML | ⌁ |
| LaTeX | \text{ELECTRICARROW} |
| Simbolo | ⌁ |
| Codifica URL (percentuale UTF-8) | %E2%8C%81 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo electric arrow sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Electric Arrow nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |