C:
char c = '\u5453';
printf("%c\n", c); // Output: 呓
JavaScript:
const char = '\u5453';
console.log(char); // Output: 呓
Java:
char c = '\u5453';
System.out.println(c); // Output: 呓
JSON:
{"text": "\u5453"} // Value: 呓
Python:
char = '\u5453'
print(char) # Output: 呓
Perl:
my $char = "\x{5453}";
print $char; # Output: 呓
PHP:
$char = "\x{5453}";
echo $char; // Output: 呓
Ruby:
char = "\u{5453}"
puts char # Output: 呓
Rust:
let c = '\u{5453}';
println!("{}", c); // Output: 呓
Go:
char := '\u5453'
fmt.Printf("%c\n", char) // Output: 呓
CSS:
/* CSS content property */
.element::before {
content: "\005453"; /* 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%93
MD5:
5770182458a0e70523d5f24fd35a5de5
SHA1:
045e048a747b03ac6ff6cf18b0712aff4e3e9e05
Base64:
5ZGT