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