C:
char c = '\u0409';
printf("%c\n", c); // Output: Љ
JavaScript:
const char = '\u0409';
console.log(char); // Output: Љ
Java:
char c = '\u0409';
System.out.println(c); // Output: Љ
JSON:
{"text": "\u0409"} // Value: Љ
Python:
char = '\u0409'
print(char) # Output: Љ
Perl:
my $char = "\x{0409}";
print $char; # Output: Љ
PHP:
$char = "\x{0409}";
echo $char; // Output: Љ
Ruby:
char = "\u{0409}"
puts char # Output: Љ
Rust:
let c = '\u{409}';
println!("{}", c); // Output: Љ
Go:
char := '\u0409'
fmt.Printf("%c\n", char) // Output: Љ
CSS:
/* CSS content property */
.element::before {
content: "\000409"; /* 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%89
MD5:
84a7de96a5d6910407fb6b21e8ccfd90
SHA1:
678e2637f06872f6bddc6658cfa1d23daa8c270a
Base64:
0Ik=