| Nome del simbolo | Latin Small Letter Lambda |
| Versione Unicode | 16.0 |
| Unicode | U+A7DB |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \A7DB |
| Codice esadecimale | 0xA7DB |
| Codice HTML | ꟛ |
| LaTeX | \text{LATINSMALLLETTERLAMBDA} |
| Simbolo | |
| Codifica URL (percentuale UTF-8) | %EA%9F%9B |
| Nome parlato / screen reader | Latin Small Letter Lambda |
| UTF-8 | EA 9F 9B |
| UTF-16 | A7DB |
| UTF-32 | 0000A7DB |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERLAMBDA}4\end{document}Puoi digitare il simbolo latin small letter lambda sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 42971 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter lambda", or use Unicode Hex Input with A7DB.
Ctrl + Shift + U, type a7db, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-letter-lambda::before { content: "\A7DB"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ꟛ</span>La rappresentazione del simbolo Latin Small Letter Lambda nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uA7DB' or String.fromCodePoint(42971) |
| Python | '\N{LATIN SMALL LETTER LAMBDA}' or chr(42971) |
| Rust | '\u{A7DB}' |
| C / C++ | UTF-8 source or wchar_t with U+A7DB |
| Go | string(rune(0xA7DB)) |
| Ruby | "\u{A7DB}" |