| Nombre del símbolo | Electric Arrow |
| Versión Unicode | 3.0 |
| Unicode | U+2301 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2301 |
| Código hexadecimal | 0x2301 |
| Código HTML | ⌁ |
| LaTeX | \text{ELECTRICARROW} |
| Símbolo | ⌁ |
| Codificación URL (porcentaje UTF-8) | %E2%8C%81 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo electric arrow en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Electric Arrow en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |