Left-side Arc Anticlockwise Arrow

Shortcodes

Copy useful codes for left-side arc anticlockwise arrow symbol ⤹ to use in websites, apps, blogs, and docs.

Unicode
U+2939
HTML Code
⤹
HEX Code
⤹
CSS Code
\2939
JS/JSON
\u2939
Unix/C/PHP/JAVA
0x2939
URL-encode
%E2%A4%B9

Customize Left-side Arc Anticlockwise Arrow

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

  

How to use Left-side Arc Anticlockwise Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤹</span>
HTML Code:
<span>&#10553;</span>
HEX Code:
<span>&#x2939;</span>

Add with CSS

.left-side-arc-anticlockwise-arrow::before {
  content: '\\2939';
}

Set it in JavaScript

document.querySelector('.left-side-arc-anticlockwise-arrow').textContent = '⤹';
copied