Triple Vertical Bar With Horizontal Stroke

Shortcodes

Copy useful codes for triple vertical bar with horizontal stroke symbol ⫵ to use in websites, apps, blogs, and docs.

Unicode
U+2AF5
HTML Code
⫵
HEX Code
⫵
CSS Code
\2AF5
JS/JSON
\u2AF5
Unix/C/PHP/JAVA
0x2AF5
URL-encode
%E2%AB%B5

Customize Triple Vertical Bar With Horizontal Stroke

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

  

How to use Triple Vertical Bar With Horizontal Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫵</span>
HTML Code:
<span>&#10997;</span>
HEX Code:
<span>&#x2AF5;</span>

Add with CSS

.triple-vertical-bar-with-horizontal-stroke::before {
  content: '\\2AF5';
}

Set it in JavaScript

document.querySelector('.triple-vertical-bar-with-horizontal-stroke').textContent = '⫵';
copied