C:
char c = '\u5494';
printf("%c\n", c); // Output: 咔
JavaScript:
const char = '\u5494';
console.log(char); // Output: 咔
Java:
char c = '\u5494';
System.out.println(c); // Output: 咔
JSON:
{"text": "\u5494"} // Value: 咔
Python:
char = '\u5494'
print(char) # Output: 咔
Perl:
my $char = "\x{5494}";
print $char; # Output: 咔
PHP:
$char = "\x{5494}";
echo $char; // Output: 咔
Ruby:
char = "\u{5494}"
puts char # Output: 咔
Rust:
let c = '\u{5494}';
println!("{}", c); // Output: 咔
Go:
char := '\u5494'
fmt.Printf("%c\n", char) // Output: 咔
CSS:
/* CSS content property */
.element::before {
content: "\005494"; /* 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%92%94
MD5:
98d1ebbf3e2c1f38cff8c19734efd34d
SHA1:
97a8d8750386df22461c2943d663cad142920037
Base64:
5ZKU