Triple Vertical Bar Delimiter

Shortcodes

Copy useful codes for triple vertical bar delimiter symbol ⦀ to use in websites, apps, blogs, and docs.

Unicode
U+2980
HTML Code
⦀
HEX Code
⦀
CSS Code
\2980
JS/JSON
\u2980
Unix/C/PHP/JAVA
0x2980
URL-encode
%E2%A6%80

Customize Triple Vertical Bar Delimiter

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦀</span>
HTML Code:
<span>&#10624;</span>
HEX Code:
<span>&#x2980;</span>

Add with CSS

.triple-vertical-bar-delimiter::before {
  content: '\\2980';
}

Set it in JavaScript

document.querySelector('.triple-vertical-bar-delimiter').textContent = '⦀';
copied