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