Large Triple Vertical Bar Operator

Shortcodes

Copy useful codes for large triple vertical bar operator symbol ⫼ to use in websites, apps, blogs, and docs.

Unicode
U+2AFC
HTML Code
⫼
HEX Code
⫼
CSS Code
\2AFC
JS/JSON
\u2AFC
Unix/C/PHP/JAVA
0x2AFC
URL-encode
%E2%AB%BC

Customize Large Triple Vertical Bar Operator

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

  

How to use Large Triple Vertical Bar Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫼</span>
HTML Code:
<span>&#11004;</span>
HEX Code:
<span>&#x2AFC;</span>

Add with CSS

.large-triple-vertical-bar-operator::before {
  content: '\\2AFC';
}

Set it in JavaScript

document.querySelector('.large-triple-vertical-bar-operator').textContent = '⫼';
copied