C:
char c = '\u0452';
printf("%c\n", c); // Output: ђ
JavaScript:
const char = '\u0452';
console.log(char); // Output: ђ
Java:
char c = '\u0452';
System.out.println(c); // Output: ђ
JSON:
{"text": "\u0452"} // Value: ђ
Python:
char = '\u0452'
print(char) # Output: ђ
Perl:
my $char = "\x{0452}";
print $char; # Output: ђ
PHP:
$char = "\x{0452}";
echo $char; // Output: ђ
Ruby:
char = "\u{0452}"
puts char # Output: ђ
Rust:
let c = '\u{452}';
println!("{}", c); // Output: ђ
Go:
char := '\u0452'
fmt.Printf("%c\n", char) // Output: ђ
CSS:
/* CSS content property */
.element::before {
content: "\000452"; /* 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%92
MD5:
0473973588a141a8d6cbb05a5c11b348
SHA1:
24aedf72c6a32a56da263c588ef94d7de0d18ce9
Base64:
0ZI=