C:
char c = '\u5412';
printf("%c\n", c); // Output: 吒
JavaScript:
const char = '\u5412';
console.log(char); // Output: 吒
Java:
char c = '\u5412';
System.out.println(c); // Output: 吒
JSON:
{"text": "\u5412"} // Value: 吒
Python:
char = '\u5412'
print(char) # Output: 吒
Perl:
my $char = "\x{5412}";
print $char; # Output: 吒
PHP:
$char = "\x{5412}";
echo $char; // Output: 吒
Ruby:
char = "\u{5412}"
puts char # Output: 吒
Rust:
let c = '\u{5412}';
println!("{}", c); // Output: 吒
Go:
char := '\u5412'
fmt.Printf("%c\n", char) // Output: 吒
CSS:
/* CSS content property */
.element::before {
content: "\005412"; /* 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%90%92
MD5:
43e54cdeae02152439c0bffcc652c59b
SHA1:
5a7eacc90bd65a95e93ec5f91c4c72ee6c5d19a4
Base64:
5ZCS