Lower Right Semicircular Clockwise Arrow

Shortcodes

Copy useful codes for lower right semicircular clockwise arrow symbol ⤾ to use in websites, apps, blogs, and docs.

Unicode
U+293E
HTML Code
⤾
HEX Code
⤾
CSS Code
\293E
JS/JSON
\u293E
Unix/C/PHP/JAVA
0x293E
URL-encode
%E2%A4%BE

Customize Lower Right Semicircular Clockwise Arrow

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

  

How to use Lower Right Semicircular Clockwise Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤾</span>
HTML Code:
<span>&#10558;</span>
HEX Code:
<span>&#x293E;</span>

Add with CSS

.lower-right-semicircular-clockwise-arrow::before {
  content: '\\293E';
}

Set it in JavaScript

document.querySelector('.lower-right-semicircular-clockwise-arrow').textContent = '⤾';
copied