Triple Vertical Bar Binary Relation

Shortcodes

Copy useful codes for triple vertical bar binary relation symbol ⫴ to use in websites, apps, blogs, and docs.

Unicode
U+2AF4
HTML Code
⫴
HEX Code
⫴
CSS Code
\2AF4
JS/JSON
\u2AF4
Unix/C/PHP/JAVA
0x2AF4
URL-encode
%E2%AB%B4

Customize Triple Vertical Bar Binary Relation

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

  

How to use Triple Vertical Bar Binary Relation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫴</span>
HTML Code:
<span>&#10996;</span>
HEX Code:
<span>&#x2AF4;</span>

Add with CSS

.triple-vertical-bar-binary-relation::before {
  content: '\\2AF4';
}

Set it in JavaScript

document.querySelector('.triple-vertical-bar-binary-relation').textContent = '⫴';
copied