C:
char c = '\u0064';
printf("%c\n", c); // Output: d
JavaScript:
const char = '\u0064';
console.log(char); // Output: d
Java:
char c = '\u0064';
System.out.println(c); // Output: d
JSON:
{"text": "\u0064"} // Value: d
Python:
char = '\u0064'
print(char) # Output: d
Perl:
my $char = "\x{0064}";
print $char; # Output: d
PHP:
$char = "\x{0064}";
echo $char; // Output: d
Ruby:
char = "\u{0064}"
puts char # Output: d
Rust:
let c = '\u{64}';
println!("{}", c); // Output: d
Go:
char := '\u0064'
fmt.Printf("%c\n", char) // Output: d
CSS:
/* CSS content property */
.element::before {
content: "\000064"; /* Display: d */
}
HTML Decimal:
<p>HTML decimal: d</p> <!-- Display: d -->
HTML Hexadecimal:
<p>HTML hex: d</p> <!-- Display: d -->
URL Encoding:
// d URL encoding
https://unicodefinder.com/search.php?query=d
MD5:
8277e0910d750195b448797616e091ad
SHA1:
3c363836cf4e16666669a25da280a1865c2d2874
Base64:
ZA==