Top Arc Anticlockwise Arrow With Plus

Shortcodes

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

Unicode
U+293D
HTML Code
⤽
HEX Code
⤽
CSS Code
\293D
JS/JSON
\u293D
Unix/C/PHP/JAVA
0x293D
URL-encode
%E2%A4%BD

Customize Top Arc Anticlockwise Arrow With Plus

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤽</span>
HTML Code:
<span>&#10557;</span>
HEX Code:
<span>&#x293D;</span>

Add with CSS

.top-arc-anticlockwise-arrow-with-plus::before {
  content: '\\293D';
}

Set it in JavaScript

document.querySelector('.top-arc-anticlockwise-arrow-with-plus').textContent = '⤽';
copied