C:
char c = '\u5491';
printf("%c\n", c); // Output: 咑
JavaScript:
const char = '\u5491';
console.log(char); // Output: 咑
Java:
char c = '\u5491';
System.out.println(c); // Output: 咑
JSON:
{"text": "\u5491"} // Value: 咑
Python:
char = '\u5491'
print(char) # Output: 咑
Perl:
my $char = "\x{5491}";
print $char; # Output: 咑
PHP:
$char = "\x{5491}";
echo $char; // Output: 咑
Ruby:
char = "\u{5491}"
puts char # Output: 咑
Rust:
let c = '\u{5491}';
println!("{}", c); // Output: 咑
Go:
char := '\u5491'
fmt.Printf("%c\n", char) // Output: 咑
CSS:
/* CSS content property */
.element::before {
content: "\005491"; /* 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%91
MD5:
55b163429534f0b158a2195089e97aee
SHA1:
74bd50fe6138d60f86053e4b15cc53f24c1258eb
Base64:
5ZKR