C:
char c = '\u005A';
printf("%c\n", c); // Output: Z
JavaScript:
const char = '\u005A';
console.log(char); // Output: Z
Java:
char c = '\u005A';
System.out.println(c); // Output: Z
JSON:
{"text": "\u005A"} // Value: Z
Python:
char = '\u005A'
print(char) # Output: Z
Perl:
my $char = "\x{005A}";
print $char; # Output: Z
PHP:
$char = "\x{005A}";
echo $char; // Output: Z
Ruby:
char = "\u{005A}"
puts char # Output: Z
Rust:
let c = '\u{5A}';
println!("{}", c); // Output: Z
Go:
char := '\u005A'
fmt.Printf("%c\n", char) // Output: Z
CSS:
/* CSS content property */
.element::before {
content: "\00005A"; /* Display: Z */
}
HTML Decimal:
<p>HTML decimal: Z</p> <!-- Display: Z -->
HTML Hexadecimal:
<p>HTML hex: Z</p> <!-- Display: Z -->
URL Encoding:
// Z URL encoding
https://unicodefinder.com/search.php?query=Z
MD5:
21c2e59531c8710156d34a3c30ac81d5
SHA1:
909f99a779adb66a76fc53ab56c7dd1caf35d0fd
Base64:
Wg==