C:
char c = '\u03BB';
printf("%c\n", c); // Output: λ
JavaScript:
const char = '\u03BB';
console.log(char); // Output: λ
Java:
char c = '\u03BB';
System.out.println(c); // Output: λ
JSON:
{"text": "\u03BB"} // Value: λ
Python:
char = '\u03BB'
print(char) # Output: λ
Perl:
my $char = "\x{03BB}";
print $char; # Output: λ
PHP:
$char = "\x{03BB}";
echo $char; // Output: λ
Ruby:
char = "\u{03BB}"
puts char # Output: λ
Rust:
let c = '\u{3BB}';
println!("{}", c); // Output: λ
Go:
char := '\u03BB'
fmt.Printf("%c\n", char) // Output: λ
CSS:
/* CSS content property */
.element::before {
content: "\0003BB"; /* Display: λ */
}
HTML Decimal:
<p>HTML decimal: λ</p> <!-- Display: λ -->
HTML Hexadecimal:
<p>HTML hex: λ</p> <!-- Display: λ -->
URL Encoding:
// λ URL encoding
https://unicodefinder.com/search.php?query=%CE%BB
MD5:
6af8e2f02f674b41b6ccf43debc252d2
SHA1:
7bb1c28b6af9429f89cecd1b6357d88f410c5bb5
Base64:
zrs=