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