C:
char c = '\u5B28';
printf("%c\n", c); // Output: 嬨
JavaScript:
const char = '\u5B28';
console.log(char); // Output: 嬨
Java:
char c = '\u5B28';
System.out.println(c); // Output: 嬨
JSON:
{"text": "\u5B28"} // Value: 嬨
Python:
char = '\u5B28'
print(char) # Output: 嬨
Perl:
my $char = "\x{5B28}";
print $char; # Output: 嬨
PHP:
$char = "\x{5B28}";
echo $char; // Output: 嬨
Ruby:
char = "\u{5B28}"
puts char # Output: 嬨
Rust:
let c = '\u{5B28}';
println!("{}", c); // Output: 嬨
Go:
char := '\u5B28'
fmt.Printf("%c\n", char) // Output: 嬨
CSS:
/* CSS content property */
.element::before {
content: "\005B28"; /* Display: 嬨 */
}
HTML Decimal:
<p>HTML decimal: 嬨</p> <!-- Display: 嬨 -->
HTML Hexadecimal:
<p>HTML hex: 嬨</p> <!-- Display: 嬨 -->
URL Encoding:
// 嬨 URL encoding
https://unicodefinder.com/search.php?query=%E5%AC%A8
MD5:
efb73085a9e83a6d00daf9b45779e32b
SHA1:
e8e6ea30b50d6fb9deb4d8af739164f3f33ac6a1
Base64:
5ayo