| 記号名 | Greek Small Letter Lamda |
| Unicodeバージョン | 1.1 |
| Unicode | U+03BB |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \03BB |
| 16進コード | 0x03BB |
| HTMLコード | λ |
| LaTeX | \lambda |
| 記号 | λ |
| URLエンコード(UTF-8パーセント) | %CE%BB |
| 読み上げ名 / スクリーンリーダー | Greek Small Letter Lamda |
| UTF-8 | CE BB |
| UTF-16 | 03BB |
| UTF-32 | 000003BB |
1\documentclass{article}2\usepackage{pifont}3\lambda4\end{document}以下の方法でほとんどの最新デバイスでgreek small letter lamda記号を入力できます:
Alt + 955 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter lamda", or use Unicode Hex Input with 03BB.
Ctrl + Shift + U, type 03bb, 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.lambda::before { content: "\03BB"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>λ</span>各プログラミング言語におけるGreek Small Letter Lamda記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u03BB' or String.fromCodePoint(955) |
| Python | '\N{GREEK SMALL LETTER LAMDA}' or chr(955) |
| Rust | '\u{03BB}' |
| C / C++ | UTF-8 source or wchar_t with U+03BB |
| Go | string(rune(0x03BB)) |
| Ruby | "\u{03BB}" |