C:
char c = '\u5487';
printf("%c\n", c); // Output: 咇
JavaScript:
const char = '\u5487';
console.log(char); // Output: 咇
Java:
char c = '\u5487';
System.out.println(c); // Output: 咇
JSON:
{"text": "\u5487"} // Value: 咇
Python:
char = '\u5487'
print(char) # Output: 咇
Perl:
my $char = "\x{5487}";
print $char; # Output: 咇
PHP:
$char = "\x{5487}";
echo $char; // Output: 咇
Ruby:
char = "\u{5487}"
puts char # Output: 咇
Rust:
let c = '\u{5487}';
println!("{}", c); // Output: 咇
Go:
char := '\u5487'
fmt.Printf("%c\n", char) // Output: 咇
CSS:
/* CSS content property */
.element::before {
content: "\005487"; /* 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%87
MD5:
0e7ef3bfd47d85e5290034b08a96f487
SHA1:
403a1067ed453b5bfcc3a6c5f334f884e0df4de4
Base64:
5ZKH