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