C:
char c = '\u5452';
printf("%c\n", c); // Output: 呒
JavaScript:
const char = '\u5452';
console.log(char); // Output: 呒
Java:
char c = '\u5452';
System.out.println(c); // Output: 呒
JSON:
{"text": "\u5452"} // Value: 呒
Python:
char = '\u5452'
print(char) # Output: 呒
Perl:
my $char = "\x{5452}";
print $char; # Output: 呒
PHP:
$char = "\x{5452}";
echo $char; // Output: 呒
Ruby:
char = "\u{5452}"
puts char # Output: 呒
Rust:
let c = '\u{5452}';
println!("{}", c); // Output: 呒
Go:
char := '\u5452'
fmt.Printf("%c\n", char) // Output: 呒
CSS:
/* CSS content property */
.element::before {
content: "\005452"; /* 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%91%92
MD5:
18dcca3877e9681cb3c86d469bfa00af
SHA1:
be987dc74aa5b7c384630c306b6b1fab0fb3d8c2
Base64:
5ZGS