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