Top Arc Anticlockwise Arrow

Shortcodes

Copy useful codes for top arc anticlockwise arrow symbol ⤺ to use in websites, apps, blogs, and docs.

Unicode
U+293A
HTML Code
⤺
HEX Code
⤺
CSS Code
\293A
JS/JSON
\u293A
Unix/C/PHP/JAVA
0x293A
URL-encode
%E2%A4%BA

Customize Top Arc Anticlockwise Arrow

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

  

How to use Top Arc Anticlockwise Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤺</span>
HTML Code:
<span>&#10554;</span>
HEX Code:
<span>&#x293A;</span>

Add with CSS

.top-arc-anticlockwise-arrow::before {
  content: '\\293A';
}

Set it in JavaScript

document.querySelector('.top-arc-anticlockwise-arrow').textContent = '⤺';
copied