Vertical Line With Circle Below

Shortcodes

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

Unicode
U+2AF0
HTML Code
⫰
HEX Code
⫰
CSS Code
\2AF0
JS/JSON
\u2AF0
Unix/C/PHP/JAVA
0x2AF0
URL-encode
%E2%AB%B0

Customize Vertical Line With Circle Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫰</span>
HTML Code:
<span>&#10992;</span>
HEX Code:
<span>&#x2AF0;</span>

Add with CSS

.vertical-line-with-circle-below::before {
  content: '\\2AF0';
}

Set it in JavaScript

document.querySelector('.vertical-line-with-circle-below').textContent = '⫰';
copied