Circle Divided By Horizontal Bar And Top Half Divided By Vertical Bar

Shortcodes

Copy useful codes for circle divided by horizontal bar and top half divided by vertical bar symbol ⦺ to use in websites, apps, blogs, and docs.

Unicode
U+29BA
HTML Code
⦺
HEX Code
⦺
CSS Code
\29BA
JS/JSON
\u29BA
Unix/C/PHP/JAVA
0x29BA
URL-encode
%E2%A6%BA

Customize Circle Divided By Horizontal Bar And Top Half Divided By Vertical Bar

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

  

How to use Circle Divided By Horizontal Bar And Top Half Divided By Vertical Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦺</span>
HTML Code:
<span>&#10682;</span>
HEX Code:
<span>&#x29BA;</span>

Add with CSS

.circle-divided-by-horizontal-bar-and-top-half-divided-by-vertical-bar::before {
  content: '\\29BA';
}

Set it in JavaScript

document.querySelector('.circle-divided-by-horizontal-bar-and-top-half-divided-by-vertical-bar').textContent = '⦺';
copied