N-ary White Vertical Bar

⫿

Shortcodes

Copy useful codes for n-ary white vertical bar symbol ⫿ to use in websites, apps, blogs, and docs.

Unicode
U+2AFF
HTML Code
⫿
HEX Code
⫿
CSS Code
\2AFF
JS/JSON
\u2AFF
Unix/C/PHP/JAVA
0x2AFF
URL-encode
%E2%AB%BF

Customize N-ary White Vertical Bar

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

⫿
  

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

Insert in HTML

1. Direct symbol:
<span>⫿</span>
HTML Code:
<span>&#11007;</span>
HEX Code:
<span>&#x2AFF;</span>

Add with CSS

.n-ary-white-vertical-bar::before {
  content: '\\2AFF';
}

Set it in JavaScript

document.querySelector('.n-ary-white-vertical-bar').textContent = '⫿';
copied