| Nombre del símbolo | Greek Capital Letter Lamda |
| Versión Unicode | 1.1 |
| Unicode | U+039B |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \039B |
| Código hexadecimal | 0x039B |
| Código HTML | Λ |
| LaTeX | \Lambda |
| Símbolo | Λ |
| Codificación URL (porcentaje UTF-8) | %CE%9B |
| Nombre oral / lector de pantalla | Greek Capital Letter Lamda |
| UTF-8 | CE 9B |
| UTF-16 | 039B |
| UTF-32 | 0000039B |
1\documentclass{article}2\usepackage{pifont}3\Lambda4\end{document}Puedes escribir el símbolo greek capital letter lamda en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 923 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter lamda", or use Unicode Hex Input with 039B.
Ctrl + Shift + U, type 039b, 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-lambda::before { content: "\039B"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Λ</span>La representación del símbolo Greek Capital Letter Lamda en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u039B' or String.fromCodePoint(923) |
| Python | '\N{GREEK CAPITAL LETTER LAMDA}' or chr(923) |
| Rust | '\u{039B}' |
| C / C++ | UTF-8 source or wchar_t with U+039B |
| Go | string(rune(0x039B)) |
| Ruby | "\u{039B}" |