C:
char c = '\u045A';
printf("%c\n", c); // Output: њ
JavaScript:
const char = '\u045A';
console.log(char); // Output: њ
Java:
char c = '\u045A';
System.out.println(c); // Output: њ
JSON:
{"text": "\u045A"} // Value: њ
Python:
char = '\u045A'
print(char) # Output: њ
Perl:
my $char = "\x{045A}";
print $char; # Output: њ
PHP:
$char = "\x{045A}";
echo $char; // Output: њ
Ruby:
char = "\u{045A}"
puts char # Output: њ
Rust:
let c = '\u{45A}';
println!("{}", c); // Output: њ
Go:
char := '\u045A'
fmt.Printf("%c\n", char) // Output: њ
CSS:
/* CSS content property */
.element::before {
content: "\00045A"; /* 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%9A
MD5:
09e6a4b40c9de2b779b238ceeebdbac2
SHA1:
65792c92a16dd4278af3cf53ce7e2feda6e3d0cb
Base64:
0Zo=