Clockwise Open Circle Arrow

Shortcodes

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

Unicode
U+21BB
HTML Code
↻
HEX Code
↻
CSS Code
\21BB
JS/JSON
\u21BB
Unix/C/PHP/JAVA
0x21BB
URL-encode
%E2%86%BB

Customize Clockwise Open Circle Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>↻</span>
HTML Code:
<span>&#8635;</span>
HEX Code:
<span>&#x21BB;</span>

Add with CSS

.clockwise-open-circle-arrow::before {
  content: '\\21BB';
}

Set it in JavaScript

document.querySelector('.clockwise-open-circle-arrow').textContent = '↻';
copied