Double Vertical Line

Shortcodes

Copy and paste codes for Double Vertical Line symbol ‖ to use in your websites, apps, blogs, and more.

Unicode
U+2016
HTML Code
‖
HEX Code
‖
CSS Code
\2016
JS/JSON
\u2016
Unix/C/PHP/JAVA
0x2016
URL-encode
%E2%80%96
copied

Customize Double Vertical Line Symbol

Customize ‖ symbol as you like and download Double Vertical Line 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 Double Vertical Line symbol in HTML, CSS, and JS?

Insert ‖ Double Vertical Line using HTML

1. Copy-paste Double Vertical Line directly:
<span>‖</span>
2. HTML Decimal Code:
<span>&#8214;</span>
3. Hexadecimal Code:
<span>&#x2016;</span>
Preview:

Add Double Vertical Line symbol with CSS

.double-vertical-line::before {
    content: '\\2016';
}
Preview: Double Vertical Line

Double Vertical Line JavaScript Code

1. Direct Symbol:
document.querySelector('.double-vertical-line').textContent = '‖';
2. Unicode Escape for ‖:
document.querySelector('.double-vertical-line').textContent = '\u2016';
Preview: