C:
char c = '\u0077';
printf("%c\n", c); // Output: w
JavaScript:
const char = '\u0077';
console.log(char); // Output: w
Java:
char c = '\u0077';
System.out.println(c); // Output: w
JSON:
{"text": "\u0077"} // Value: w
Python:
char = '\u0077'
print(char) # Output: w
Perl:
my $char = "\x{0077}";
print $char; # Output: w
PHP:
$char = "\x{0077}";
echo $char; // Output: w
Ruby:
char = "\u{0077}"
puts char # Output: w
Rust:
let c = '\u{77}';
println!("{}", c); // Output: w
Go:
char := '\u0077'
fmt.Printf("%c\n", char) // Output: w
CSS:
/* CSS content property */
.element::before {
content: "\000077"; /* 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:
f1290186a5d0b1ceab27f4e77c0c5d68
SHA1:
aff024fe4ab0fece4091de044c58c9ae4233383a
Base64:
dw==