C:
char c = '\u5ACC';
printf("%c\n", c); // Output: 嫌
JavaScript:
const char = '\u5ACC';
console.log(char); // Output: 嫌
Java:
char c = '\u5ACC';
System.out.println(c); // Output: 嫌
JSON:
{"text": "\u5ACC"} // Value: 嫌
Python:
char = '\u5ACC'
print(char) # Output: 嫌
Perl:
my $char = "\x{5ACC}";
print $char; # Output: 嫌
PHP:
$char = "\x{5ACC}";
echo $char; // Output: 嫌
Ruby:
char = "\u{5ACC}"
puts char # Output: 嫌
Rust:
let c = '\u{5ACC}';
println!("{}", c); // Output: 嫌
Go:
char := '\u5ACC'
fmt.Printf("%c\n", char) // Output: 嫌
CSS:
/* CSS content property */
.element::before {
content: "\005ACC"; /* 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%AB%8C
MD5:
f6d976f0939acff568891775e00fe31d
SHA1:
7b59b16db1db258c2c0b8d55229d7a2a7aad8f34
Base64:
5auM