Vertical Line With Circle Above

Shortcodes

Copy useful codes for vertical line with circle above symbol ⫯ to use in websites, apps, blogs, and docs.

Unicode
U+2AEF
HTML Code
⫯
HEX Code
⫯
CSS Code
\2AEF
JS/JSON
\u2AEF
Unix/C/PHP/JAVA
0x2AEF
URL-encode
%E2%AB%AF

Customize Vertical Line With Circle Above

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

  

How to use Vertical Line With Circle Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫯</span>
HTML Code:
<span>&#10991;</span>
HEX Code:
<span>&#x2AEF;</span>

Add with CSS

.vertical-line-with-circle-above::before {
  content: '\\2AEF';
}

Set it in JavaScript

document.querySelector('.vertical-line-with-circle-above').textContent = '⫯';
copied