Circle With Two Horizontal Strokes To The Right

Shortcodes

Copy useful codes for circle with two horizontal strokes to the right symbol ⧃ to use in websites, apps, blogs, and docs.

Unicode
U+29C3
HTML Code
⧃
HEX Code
⧃
CSS Code
\29C3
JS/JSON
\u29C3
Unix/C/PHP/JAVA
0x29C3
URL-encode
%E2%A7%83

Customize Circle With Two Horizontal Strokes To The Right

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

  

How to use Circle With Two Horizontal Strokes To The Right Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧃</span>
HTML Code:
<span>&#10691;</span>
HEX Code:
<span>&#x29C3;</span>

Add with CSS

.circle-with-two-horizontal-strokes-to-the-right::before {
  content: '\\29C3';
}

Set it in JavaScript

document.querySelector('.circle-with-two-horizontal-strokes-to-the-right').textContent = '⧃';
copied