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