Anticlockwise Open Circle Arrow

Shortcodes

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

Unicode
U+21BA
HTML Code
↺
HEX Code
↺
CSS Code
\21BA
JS/JSON
\u21BA
Unix/C/PHP/JAVA
0x21BA
URL-encode
%E2%86%BA

Customize Anticlockwise Open Circle Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>↺</span>
HTML Code:
<span>&#8634;</span>
HEX Code:
<span>&#x21BA;</span>

Add with CSS

.anticlockwise-open-circle-arrow::before {
  content: '\\21BA';
}

Set it in JavaScript

document.querySelector('.anticlockwise-open-circle-arrow').textContent = '↺';
copied