C:
char c = '\u5624';
printf("%c\n", c); // Output: 嘤
JavaScript:
const char = '\u5624';
console.log(char); // Output: 嘤
Java:
char c = '\u5624';
System.out.println(c); // Output: 嘤
JSON:
{"text": "\u5624"} // Value: 嘤
Python:
char = '\u5624'
print(char) # Output: 嘤
Perl:
my $char = "\x{5624}";
print $char; # Output: 嘤
PHP:
$char = "\x{5624}";
echo $char; // Output: 嘤
Ruby:
char = "\u{5624}"
puts char # Output: 嘤
Rust:
let c = '\u{5624}';
println!("{}", c); // Output: 嘤
Go:
char := '\u5624'
fmt.Printf("%c\n", char) // Output: 嘤
CSS:
/* CSS content property */
.element::before {
content: "\005624"; /* 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%A4
MD5:
0902ccc1c53854b6385af1e43b15964c
SHA1:
e47ac32f70a0551ed6ec94a7506e32e25f80f108
Base64:
5Zik