| Nom du symbole | Envelope |
| Version Unicode | 1.1 |
| Unicode | U+2709 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2709 |
| Code hexadécimal | 0x2709 |
| Code HTML | ✉ |
| LaTeX | \Envelope |
| Symbole | ✉ |
| Encodage URL (pourcent UTF-8) | %E2%9C%89 |
| Nom oral / lecteur d’écran | Envelope |
| UTF-8 | E2 9C 89 |
| UTF-16 | 2709 |
| UTF-32 | 00002709 |
1\documentclass{article}2\usepackage{pifont}3\Envelope4\end{document}Vous pouvez saisir le symbole envelope sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Envelope dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |