Lower Left Semicircular Anticlockwise Arrow

⤿

Shortcodes

Copy useful codes for lower left semicircular anticlockwise arrow symbol ⤿ to use in websites, apps, blogs, and docs.

Unicode
U+293F
HTML Code
⤿
HEX Code
⤿
CSS Code
\293F
JS/JSON
\u293F
Unix/C/PHP/JAVA
0x293F
URL-encode
%E2%A4%BF

Customize Lower Left Semicircular Anticlockwise Arrow

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

⤿
  

How to use Lower Left Semicircular Anticlockwise Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤿</span>
HTML Code:
<span>&#10559;</span>
HEX Code:
<span>&#x293F;</span>

Add with CSS

.lower-left-semicircular-anticlockwise-arrow::before {
  content: '\\293F';
}

Set it in JavaScript

document.querySelector('.lower-left-semicircular-anticlockwise-arrow').textContent = '⤿';
copied