Triple Vertical Bar Delimiter

Shortcodes

Copy and paste codes for Triple Vertical Bar Delimiter symbol ⦀ to use in your websites, apps, blogs, and more.

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

Customize Triple Vertical Bar Delimiter Symbol

Customize ⦀ symbol as you like and download Triple Vertical Bar Delimiter as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Triple Vertical Bar Delimiter symbol in HTML, CSS, and JS?

Insert ⦀ Triple Vertical Bar Delimiter using HTML

1. Copy-paste Triple Vertical Bar Delimiter directly:
<span>⦀</span>
2. HTML Decimal Code:
<span>&#10624;</span>
3. Hexadecimal Code:
<span>&#x2980;</span>
Preview:

Add Triple Vertical Bar Delimiter symbol with CSS

.triple-vertical-bar-delimiter::before {
    content: '\\2980';
}
Preview: Triple Vertical Bar Delimiter

Triple Vertical Bar Delimiter JavaScript Code

1. Direct Symbol:
document.querySelector('.triple-vertical-bar-delimiter').textContent = '⦀';
2. Unicode Escape for ⦀:
document.querySelector('.triple-vertical-bar-delimiter').textContent = '\u2980';
Preview: