C:
char c = '\u041B';
printf("%c\n", c); // Output: Л
JavaScript:
const char = '\u041B';
console.log(char); // Output: Л
Java:
char c = '\u041B';
System.out.println(c); // Output: Л
JSON:
{"text": "\u041B"} // Value: Л
Python:
char = '\u041B'
print(char) # Output: Л
Perl:
my $char = "\x{041B}";
print $char; # Output: Л
PHP:
$char = "\x{041B}";
echo $char; // Output: Л
Ruby:
char = "\u{041B}"
puts char # Output: Л
Rust:
let c = '\u{41B}';
println!("{}", c); // Output: Л
Go:
char := '\u041B'
fmt.Printf("%c\n", char) // Output: Л
CSS:
/* CSS content property */
.element::before {
content: "\00041B"; /* 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=%D0%9B
MD5:
74ee1fab343a72c89c629718780de092
SHA1:
21238b2e77506e8b4f1d4509588e9ac588a59382
Base64:
0Js=