C:
char c = '\u7324';
printf("%c\n", c); // Output: 猤
JavaScript:
const char = '\u7324';
console.log(char); // Output: 猤
Java:
char c = '\u7324';
System.out.println(c); // Output: 猤
JSON:
{"text": "\u7324"} // Value: 猤
Python:
char = '\u7324'
print(char) # Output: 猤
Perl:
my $char = "\x{7324}";
print $char; # Output: 猤
PHP:
$char = "\x{7324}";
echo $char; // Output: 猤
Ruby:
char = "\u{7324}"
puts char # Output: 猤
Rust:
let c = '\u{7324}';
println!("{}", c); // Output: 猤
Go:
char := '\u7324'
fmt.Printf("%c\n", char) // Output: 猤
CSS:
/* CSS content property */
.element::before {
content: "\007324"; /* 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=%E7%8C%A4
MD5:
938cbde0aa73a734abf96ad1d8b8d9b6
SHA1:
32e8e96a68d28eaf91e8839e2805e9748cc8fa04
Base64:
54yk