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