Electric Arrow

Shortcodes

Copy useful codes for electric arrow symbol ⌁ to use in websites, apps, blogs, and docs.

Unicode
U+2301
HTML Code
⌁
HEX Code
⌁
CSS Code
\2301
JS/JSON
\u2301
Unix/C/PHP/JAVA
0x2301
URL-encode
%E2%8C%81

Customize Electric Arrow

Customize ⌁, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Electric Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌁</span>
HTML Code:
<span>&#8961;</span>
HEX Code:
<span>&#x2301;</span>

Add with CSS

.electric-arrow::before {
  content: '\\2301';
}

Set it in JavaScript

document.querySelector('.electric-arrow').textContent = '⌁';
copied