C:
char c = '\u0459';
printf("%c\n", c); // Output: љ
JavaScript:
const char = '\u0459';
console.log(char); // Output: љ
Java:
char c = '\u0459';
System.out.println(c); // Output: љ
JSON:
{"text": "\u0459"} // Value: љ
Python:
char = '\u0459'
print(char) # Output: љ
Perl:
my $char = "\x{0459}";
print $char; # Output: љ
PHP:
$char = "\x{0459}";
echo $char; // Output: љ
Ruby:
char = "\u{0459}"
puts char # Output: љ
Rust:
let c = '\u{459}';
println!("{}", c); // Output: љ
Go:
char := '\u0459'
fmt.Printf("%c\n", char) // Output: љ
CSS:
/* CSS content property */
.element::before {
content: "\000459"; /* 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=%D1%99
MD5:
a3b4b275e9aebe019f3d28560d0d5327
SHA1:
274c6ac290b10a91a251b52409e2da92b04eee8e
Base64:
0Zk=