Top Arc Clockwise Arrow With Minus

Shortcodes

Copy useful codes for top arc clockwise arrow with minus symbol ⤼ to use in websites, apps, blogs, and docs.

Unicode
U+293C
HTML Code
⤼
HEX Code
⤼
CSS Code
\293C
JS/JSON
\u293C
Unix/C/PHP/JAVA
0x293C
URL-encode
%E2%A4%BC

Customize Top Arc Clockwise Arrow With Minus

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

  

How to use Top Arc Clockwise Arrow With Minus Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤼</span>
HTML Code:
<span>&#10556;</span>
HEX Code:
<span>&#x293C;</span>

Add with CSS

.top-arc-clockwise-arrow-with-minus::before {
  content: '\\293C';
}

Set it in JavaScript

document.querySelector('.top-arc-clockwise-arrow-with-minus').textContent = '⤼';
copied