Circled Vertical Bar

Shortcodes

Copy useful codes for circled vertical bar symbol ⦶ to use in websites, apps, blogs, and docs.

Unicode
U+29B6
HTML Code
⦶
HEX Code
⦶
CSS Code
\29B6
JS/JSON
\u29B6
Unix/C/PHP/JAVA
0x29B6
URL-encode
%E2%A6%B6

Customize Circled Vertical Bar

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

  

How to use Circled Vertical Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦶</span>
HTML Code:
<span>&#10678;</span>
HEX Code:
<span>&#x29B6;</span>

Add with CSS

.circled-vertical-bar::before {
  content: '\\29B6';
}

Set it in JavaScript

document.querySelector('.circled-vertical-bar').textContent = '⦶';
copied