Envelope

Shortcodes

Copy and paste codes for Envelope symbol ✉ to use in your websites, apps, blogs, and more.

Unicode
U+2709
HTML Code
✉
HEX Code
✉
CSS Code
\2709
JS/JSON
\u2709
Unix/C/PHP/JAVA
0x2709
URL-encode
%E2%9C%89
copied

Customize Envelope Symbol

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

Insert ✉ Envelope using HTML

1. Copy-paste Envelope directly:
<span>✉</span>
2. HTML Decimal Code:
<span>&#9993;</span>
3. Hexadecimal Code:
<span>&#x2709;</span>
Preview:

Add Envelope symbol with CSS

.envelope::before {
    content: '\\2709';
}
Preview: Envelope

Envelope JavaScript Code

1. Direct Symbol:
document.querySelector('.envelope').textContent = '✉';
2. Unicode Escape for ✉:
document.querySelector('.envelope').textContent = '\u2709';
Preview: