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