C:
char c = '\u0142';
printf("%c\n", c); // Output: ł
JavaScript:
const char = '\u0142';
console.log(char); // Output: ł
Java:
char c = '\u0142';
System.out.println(c); // Output: ł
JSON:
{"text": "\u0142"} // Value: ł
Python:
char = '\u0142'
print(char) # Output: ł
Perl:
my $char = "\x{0142}";
print $char; # Output: ł
PHP:
$char = "\x{0142}";
echo $char; // Output: ł
Ruby:
char = "\u{0142}"
puts char # Output: ł
Rust:
let c = '\u{142}';
println!("{}", c); // Output: ł
Go:
char := '\u0142'
fmt.Printf("%c\n", char) // Output: ł
CSS:
/* CSS content property */
.element::before {
content: "\000142"; /* 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=%C5%82
MD5:
333e453a2632e137d102c9e7455ccbfc
SHA1:
d8d824647b9ebeea3ede7cf0f9f5d2405881bf20
Base64:
xYI=