Double Hyphen

Shortcodes

Copy and paste codes for Double Hyphen symbol ⹀ to use in your websites, apps, blogs, and more.

Unicode
U+2E40
HTML Code
⹀
HEX Code
⹀
CSS Code
\2E40
JS/JSON
\u2E40
Unix/C/PHP/JAVA
0x2E40
URL-encode
%E2%B9%80
copied

Customize Double Hyphen Symbol

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

Insert ⹀ Double Hyphen using HTML

1. Copy-paste Double Hyphen directly:
<span>⹀</span>
2. HTML Decimal Code:
<span>&#11840;</span>
3. Hexadecimal Code:
<span>&#x2E40;</span>
Preview:

Add Double Hyphen symbol with CSS

.double-hyphen::before {
    content: '\\2E40';
}
Preview: Double Hyphen

Double Hyphen JavaScript Code

1. Direct Symbol:
document.querySelector('.double-hyphen').textContent = '⹀';
2. Unicode Escape for ⹀:
document.querySelector('.double-hyphen').textContent = '\u2E40';
Preview: