Circled Anticlockwise-rotated Division Sign

Shortcodes

Copy useful codes for circled anticlockwise-rotated division sign ⦼ to use in websites, apps, blogs, and docs.

Unicode
U+29BC
HTML Code
⦼
HEX Code
⦼
CSS Code
\29BC
JS/JSON
\u29BC
Unix/C/PHP/JAVA
0x29BC
URL-encode
%E2%A6%BC

Customize Circled Anticlockwise-rotated Division Sign

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

  

How to use Circled Anticlockwise-rotated Division Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦼</span>
HTML Code:
<span>&#10684;</span>
HEX Code:
<span>&#x29BC;</span>

Add with CSS

.circled-anticlockwise-rotated-division-sign::before {
  content: '\\29BC';
}

Set it in JavaScript

document.querySelector('.circled-anticlockwise-rotated-division-sign').textContent = '⦼';
copied