C:
char c = '\u5696';
printf("%c\n", c); // Output: 嚖
JavaScript:
const char = '\u5696';
console.log(char); // Output: 嚖
Java:
char c = '\u5696';
System.out.println(c); // Output: 嚖
JSON:
{"text": "\u5696"} // Value: 嚖
Python:
char = '\u5696'
print(char) # Output: 嚖
Perl:
my $char = "\x{5696}";
print $char; # Output: 嚖
PHP:
$char = "\x{5696}";
echo $char; // Output: 嚖
Ruby:
char = "\u{5696}"
puts char # Output: 嚖
Rust:
let c = '\u{5696}';
println!("{}", c); // Output: 嚖
Go:
char := '\u5696'
fmt.Printf("%c\n", char) // Output: 嚖
CSS:
/* CSS content property */
.element::before {
content: "\005696"; /* 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%9A%96
MD5:
f6779508adacfd13b513af2615a4353b
SHA1:
58f29a41547f77c05cc9fd4417d72f477e6120e4
Base64:
5ZqW