Clockwise Closed Circle Arrow

Shortcodes

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

Unicode
U+2941
HTML Code
⥁
HEX Code
⥁
CSS Code
\2941
JS/JSON
\u2941
Unix/C/PHP/JAVA
0x2941
URL-encode
%E2%A5%81

Customize Clockwise Closed Circle Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⥁</span>
HTML Code:
<span>&#10561;</span>
HEX Code:
<span>&#x2941;</span>

Add with CSS

.clockwise-closed-circle-arrow::before {
  content: '\\2941';
}

Set it in JavaScript

document.querySelector('.clockwise-closed-circle-arrow').textContent = '⥁';
copied