Anticlockwise Closed Circle Arrow

Shortcodes

Copy useful codes for anticlockwise closed circle arrow symbol ⥀ to use in websites, apps, blogs, and docs.

Unicode
U+2940
HTML Code
⥀
HEX Code
⥀
CSS Code
\2940
JS/JSON
\u2940
Unix/C/PHP/JAVA
0x2940
URL-encode
%E2%A5%80

Customize Anticlockwise Closed Circle Arrow

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

  

How to use Anticlockwise Closed Circle Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥀</span>
HTML Code:
<span>&#10560;</span>
HEX Code:
<span>&#x2940;</span>

Add with CSS

.anticlockwise-closed-circle-arrow::before {
  content: '\\2940';
}

Set it in JavaScript

document.querySelector('.anticlockwise-closed-circle-arrow').textContent = '⥀';
copied