Leftwards Arrow With Loop

Shortcodes

Copy useful codes for leftwards arrow with loop symbol ↫ to use in websites, apps, blogs, and docs.

Unicode
U+21AB
HTML Code
↫
HEX Code
↫
CSS Code
\21AB
JS/JSON
\u21AB
Unix/C/PHP/JAVA
0x21AB
URL-encode
%E2%86%AB

Customize Leftwards Arrow With Loop

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

  

How to use Leftwards Arrow With Loop Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>↫</span>
HTML Code:
<span>&#8619;</span>
HEX Code:
<span>&#x21AB;</span>

Add with CSS

.leftwards-arrow-with-loop::before {
  content: '\\21AB';
}

Set it in JavaScript

document.querySelector('.leftwards-arrow-with-loop').textContent = '↫';
copied