C:
char c = '\u5644';
printf("%c\n", c); // Output: 噄
JavaScript:
const char = '\u5644';
console.log(char); // Output: 噄
Java:
char c = '\u5644';
System.out.println(c); // Output: 噄
JSON:
{"text": "\u5644"} // Value: 噄
Python:
char = '\u5644'
print(char) # Output: 噄
Perl:
my $char = "\x{5644}";
print $char; # Output: 噄
PHP:
$char = "\x{5644}";
echo $char; // Output: 噄
Ruby:
char = "\u{5644}"
puts char # Output: 噄
Rust:
let c = '\u{5644}';
println!("{}", c); // Output: 噄
Go:
char := '\u5644'
fmt.Printf("%c\n", char) // Output: 噄
CSS:
/* CSS content property */
.element::before {
content: "\005644"; /* 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%99%84
MD5:
f7854563105d86c19ad38a6ef256c14a
SHA1:
7be8f5e11f8a01757db5b6b1c7568f3c86130926
Base64:
5ZmE