Envelope

Shortcodes

Copy useful codes for envelope symbol ✉ to use in websites, apps, blogs, and docs.

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

Customize Envelope

Customize ✉, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Envelope Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✉</span>
HTML Code:
<span>&#9993;</span>
HEX Code:
<span>&#x2709;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.envelope').textContent = '✉';
copied