Left Right Wave Arrow

Shortcodes

Copy useful codes for left right wave arrow symbol ↭ to use in websites, apps, blogs, and docs.

Unicode
U+21AD
HTML Code
↭
HEX Code
↭
CSS Code
\21AD
JS/JSON
\u21AD
Unix/C/PHP/JAVA
0x21AD
URL-encode
%E2%86%AD

Customize Left Right Wave Arrow

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

  

How to use Left Right Wave Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>↭</span>
HTML Code:
<span>&#8621;</span>
HEX Code:
<span>&#x21AD;</span>

Add with CSS

.left-right-wave-arrow::before {
  content: '\\21AD';
}

Set it in JavaScript

document.querySelector('.left-right-wave-arrow').textContent = '↭';
copied