| Nombre del símbolo | Greek Capital Letter Delta |
| Versión Unicode | 1.1 |
| Unicode | U+0394 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \0394 |
| Código hexadecimal | 0x0394 |
| Código HTML | Δ |
| LaTeX | \Delta |
| Símbolo | Δ |
| Codificación URL (porcentaje UTF-8) | %CE%94 |
| Nombre oral / lector de pantalla | Greek Capital Letter Delta |
| UTF-8 | CE 94 |
| UTF-16 | 0394 |
| UTF-32 | 00000394 |
1\documentclass{article}2\usepackage{pifont}3\Delta4\end{document}Puedes escribir el símbolo greek capital letter delta en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 916 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter delta", or use Unicode Hex Input with 0394.
Ctrl + Shift + U, type 0394, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.capital-delta::before { content: "\0394"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Δ</span>La representación del símbolo Greek Capital Letter Delta en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u0394' or String.fromCodePoint(916) |
| Python | '\N{GREEK CAPITAL LETTER DELTA}' or chr(916) |
| Rust | '\u{0394}' |
| C / C++ | UTF-8 source or wchar_t with U+0394 |
| Go | string(rune(0x0394)) |
| Ruby | "\u{0394}" |