Bottom Arc Anticlockwise Arrow

Shortcodes

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

Unicode
U+293B
HTML Code
⤻
HEX Code
⤻
CSS Code
\293B
JS/JSON
\u293B
Unix/C/PHP/JAVA
0x293B
URL-encode
%E2%A4%BB

Customize Bottom Arc Anticlockwise Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤻</span>
HTML Code:
<span>&#10555;</span>
HEX Code:
<span>&#x293B;</span>

Add with CSS

.bottom-arc-anticlockwise-arrow::before {
  content: '\\293B';
}

Set it in JavaScript

document.querySelector('.bottom-arc-anticlockwise-arrow').textContent = '⤻';
copied