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