C:
char c = '\u007A';
printf("%c\n", c); // Output: z
JavaScript:
const char = '\u007A';
console.log(char); // Output: z
Java:
char c = '\u007A';
System.out.println(c); // Output: z
JSON:
{"text": "\u007A"} // Value: z
Python:
char = '\u007A'
print(char) # Output: z
Perl:
my $char = "\x{007A}";
print $char; # Output: z
PHP:
$char = "\x{007A}";
echo $char; // Output: z
Ruby:
char = "\u{007A}"
puts char # Output: z
Rust:
let c = '\u{7A}';
println!("{}", c); // Output: z
Go:
char := '\u007A'
fmt.Printf("%c\n", char) // Output: z
CSS:
/* CSS content property */
.element::before {
content: "\00007A"; /* 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:
fbade9e36a3f36d3d676c1b808451dd7
SHA1:
395df8f7c51f007019cb30201c49e884b46b92fa
Base64:
eg==