C:
char c = '\u5604';
printf("%c\n", c); // Output: 嘄
JavaScript:
const char = '\u5604';
console.log(char); // Output: 嘄
Java:
char c = '\u5604';
System.out.println(c); // Output: 嘄
JSON:
{"text": "\u5604"} // Value: 嘄
Python:
char = '\u5604'
print(char) # Output: 嘄
Perl:
my $char = "\x{5604}";
print $char; # Output: 嘄
PHP:
$char = "\x{5604}";
echo $char; // Output: 嘄
Ruby:
char = "\u{5604}"
puts char # Output: 嘄
Rust:
let c = '\u{5604}';
println!("{}", c); // Output: 嘄
Go:
char := '\u5604'
fmt.Printf("%c\n", char) // Output: 嘄
CSS:
/* CSS content property */
.element::before {
content: "\005604"; /* 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%84
MD5:
de8e5aef8f3ac31d9f0d68fe9a3a4c8d
SHA1:
b8136af1e85f2435943d5321b95dee8c1600cab2
Base64:
5ZiE