C:
char c = '\u5616';
printf("%c\n", c); // Output: 嘖
JavaScript:
const char = '\u5616';
console.log(char); // Output: 嘖
Java:
char c = '\u5616';
System.out.println(c); // Output: 嘖
JSON:
{"text": "\u5616"} // Value: 嘖
Python:
char = '\u5616'
print(char) # Output: 嘖
Perl:
my $char = "\x{5616}";
print $char; # Output: 嘖
PHP:
$char = "\x{5616}";
echo $char; // Output: 嘖
Ruby:
char = "\u{5616}"
puts char # Output: 嘖
Rust:
let c = '\u{5616}';
println!("{}", c); // Output: 嘖
Go:
char := '\u5616'
fmt.Printf("%c\n", char) // Output: 嘖
CSS:
/* CSS content property */
.element::before {
content: "\005616"; /* 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%98%96
MD5:
7b7cf5cab3491c2b58dae2935e97a2be
SHA1:
2a3a68ba267105162e25b60b41ebe24b2072974b
Base64:
5ZiW