Greek Capital Letter Lambda

Λ

Shortcodes

Copy useful codes for greek capital letter lambda symbol Λ to use in websites, apps, blogs, and docs.

Unicode
U+039B
HTML Code
Λ
HTML Entity
Λ
HEX Code
Λ
CSS Code
\039B
JS/JSON
\u039B
Unix/C/PHP/JAVA
0x039B
URL-encode
%CE%9B

Customize Greek Capital Letter Lambda

Customize Λ, download it as SVG or PNG, or copy the generated HTML snippet.

Λ
  

How to use Greek Capital Letter Lambda Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Λ</span>
HTML Code:
<span>&#923;</span>
HTML Entity:
<span>&Lambda;</span>
HEX Code:
<span>&#x39B;</span>

Add with CSS

.greek-capital-letter-lambda::before {
  content: '\\039B';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-lambda').textContent = 'Λ';
copied