White Vertical Bar

Shortcodes

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

Unicode
U+2AFE
HTML Code
⫾
HEX Code
⫾
CSS Code
\2AFE
JS/JSON
\u2AFE
Unix/C/PHP/JAVA
0x2AFE
URL-encode
%E2%AB%BE

Customize White Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫾</span>
HTML Code:
<span>&#11006;</span>
HEX Code:
<span>&#x2AFE;</span>

Add with CSS

.white-vertical-bar::before {
  content: '\\2AFE';
}

Set it in JavaScript

document.querySelector('.white-vertical-bar').textContent = '⫾';
copied