C:
char c = '\u0402';
printf("%c\n", c); // Output: Ђ
JavaScript:
const char = '\u0402';
console.log(char); // Output: Ђ
Java:
char c = '\u0402';
System.out.println(c); // Output: Ђ
JSON:
{"text": "\u0402"} // Value: Ђ
Python:
char = '\u0402'
print(char) # Output: Ђ
Perl:
my $char = "\x{0402}";
print $char; # Output: Ђ
PHP:
$char = "\x{0402}";
echo $char; // Output: Ђ
Ruby:
char = "\u{0402}"
puts char # Output: Ђ
Rust:
let c = '\u{402}';
println!("{}", c); // Output: Ђ
Go:
char := '\u0402'
fmt.Printf("%c\n", char) // Output: Ђ
CSS:
/* CSS content property */
.element::before {
content: "\000402"; /* 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%82
MD5:
dd16423879a39932784a923ebb8dd9ed
SHA1:
4a3534317f31a18033ccc2856a238d8b504e6b11
Base64:
0II=