Double Low Line

Shortcodes

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

Unicode
U+2017
HTML Code
‗
HEX Code
‗
CSS Code
\2017
JS/JSON
\u2017
Unix/C/PHP/JAVA
0x2017
URL-encode
%E2%80%97
copied

Customize Double Low Line Symbol

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

Insert ‗ Double Low Line using HTML

1. Copy-paste Double Low Line directly:
<span>‗</span>
2. HTML Decimal Code:
<span>&#8215;</span>
3. Hexadecimal Code:
<span>&#x2017;</span>
Preview:

Add Double Low Line symbol with CSS

.double-low-line::before {
    content: '\\2017';
}
Preview: Double Low Line

Double Low Line JavaScript Code

1. Direct Symbol:
document.querySelector('.double-low-line').textContent = '‗';
2. Unicode Escape for ‗:
document.querySelector('.double-low-line').textContent = '\u2017';
Preview: