C:
char c = '\u5608';
printf("%c\n", c); // Output: 嘈
JavaScript:
const char = '\u5608';
console.log(char); // Output: 嘈
Java:
char c = '\u5608';
System.out.println(c); // Output: 嘈
JSON:
{"text": "\u5608"} // Value: 嘈
Python:
char = '\u5608'
print(char) # Output: 嘈
Perl:
my $char = "\x{5608}";
print $char; # Output: 嘈
PHP:
$char = "\x{5608}";
echo $char; // Output: 嘈
Ruby:
char = "\u{5608}"
puts char # Output: 嘈
Rust:
let c = '\u{5608}';
println!("{}", c); // Output: 嘈
Go:
char := '\u5608'
fmt.Printf("%c\n", char) // Output: 嘈
CSS:
/* CSS content property */
.element::before {
content: "\005608"; /* 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%88
MD5:
7f02264a9657b032a14c3729a190f192
SHA1:
325ee265edc2e51e6c81d41eb282d5557ce4981e
Base64:
5ZiI