| Nombre del símbolo | Envelope |
| Versión Unicode | 1.1 |
| Unicode | U+2709 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2709 |
| Código hexadecimal | 0x2709 |
| Código HTML | ✉ |
| LaTeX | \Envelope |
| Símbolo | ✉ |
| Codificación URL (porcentaje UTF-8) | %E2%9C%89 |
| Nombre oral / lector de pantalla | Envelope |
| UTF-8 | E2 9C 89 |
| UTF-16 | 2709 |
| UTF-32 | 00002709 |
1\documentclass{article}2\usepackage{pifont}3\Envelope4\end{document}Puedes escribir el símbolo envelope en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Envelope en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |