Downwards Zigzag Arrow

Shortcodes

Copy useful codes for downwards zigzag arrow symbol ↯ to use in websites, apps, blogs, and docs.

Unicode
U+21AF
HTML Code
↯
HEX Code
↯
CSS Code
\21AF
JS/JSON
\u21AF
Unix/C/PHP/JAVA
0x21AF
URL-encode
%E2%86%AF

Customize Downwards Zigzag Arrow

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

  

How to use Downwards Zigzag Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>↯</span>
HTML Code:
<span>&#8623;</span>
HEX Code:
<span>&#x21AF;</span>

Add with CSS

.downwards-zigzag-arrow::before {
  content: '\\21AF';
}

Set it in JavaScript

document.querySelector('.downwards-zigzag-arrow').textContent = '↯';
copied