C:
char c = '\u7328';
printf("%c\n", c); // Output: 猨
JavaScript:
const char = '\u7328';
console.log(char); // Output: 猨
Java:
char c = '\u7328';
System.out.println(c); // Output: 猨
JSON:
{"text": "\u7328"} // Value: 猨
Python:
char = '\u7328'
print(char) # Output: 猨
Perl:
my $char = "\x{7328}";
print $char; # Output: 猨
PHP:
$char = "\x{7328}";
echo $char; // Output: 猨
Ruby:
char = "\u{7328}"
puts char # Output: 猨
Rust:
let c = '\u{7328}';
println!("{}", c); // Output: 猨
Go:
char := '\u7328'
fmt.Printf("%c\n", char) // Output: 猨
CSS:
/* CSS content property */
.element::before {
content: "\007328"; /* 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%A8
MD5:
ab42424b1b3c777e2a831dbeacd46456
SHA1:
c5e9cecf6122a88663dfd058d44d520f5a72d6b5
Base64:
54yo