| Symbol Name | Envelope |
| Unicode Version | 1.1 |
| Unicode | U+2709 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2709 |
| Hex Code | 0x2709 |
| HTML Code | ✉ |
| LaTeX | \Envelope |
| Symbol | ✉ |
| URL encode (UTF-8 percent) | %E2%9C%89 |
| Spoken / screen reader name | Envelope |
| UTF-8 | E2 9C 89 |
| UTF-16 | 2709 |
| UTF-32 | 00002709 |
1\documentclass{article}2\usepackage{pifont}3\Envelope4\end{document}You can type the envelope symbol on most modern devices with the help of following methods:
Alt + 9993 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "envelope".
Ctrl + Shift + U, type 2709, then Enter (layout-dependent).
Use the emoji/symbol picker or paste from this page.
Use the emoji/symbol picker or paste from this page.
1span.envelope::before { content: "\2709"; }1<span>✉</span>Envelope symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2709' or String.fromCodePoint(0x2709) |
| Python | '\N{ENVELOPE}' or chr(9993) |
| Rust | '\u{2709}' |
| C / C++ | UTF-8 source or wchar_t with U+2709 |
| Go | string(rune(0x2709)) |
| Ruby | "\u2709" |