Circle With Horizontal Bar

Shortcodes

Copy useful codes for circle with horizontal bar symbol ⦵ to use in websites, apps, blogs, and docs.

Unicode
U+29B5
HTML Code
⦵
HEX Code
⦵
CSS Code
\29B5
JS/JSON
\u29B5
Unix/C/PHP/JAVA
0x29B5
URL-encode
%E2%A6%B5

Customize Circle With Horizontal Bar

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

  

How to use Circle With Horizontal Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦵</span>
HTML Code:
<span>&#10677;</span>
HEX Code:
<span>&#x29B5;</span>

Add with CSS

.circle-with-horizontal-bar::before {
  content: '\\29B5';
}

Set it in JavaScript

document.querySelector('.circle-with-horizontal-bar').textContent = '⦵';
copied