C:
char c = '\u7331';
printf("%c\n", c); // Output: 猱
JavaScript:
const char = '\u7331';
console.log(char); // Output: 猱
Java:
char c = '\u7331';
System.out.println(c); // Output: 猱
JSON:
{"text": "\u7331"} // Value: 猱
Python:
char = '\u7331'
print(char) # Output: 猱
Perl:
my $char = "\x{7331}";
print $char; # Output: 猱
PHP:
$char = "\x{7331}";
echo $char; // Output: 猱
Ruby:
char = "\u{7331}"
puts char # Output: 猱
Rust:
let c = '\u{7331}';
println!("{}", c); // Output: 猱
Go:
char := '\u7331'
fmt.Printf("%c\n", char) // Output: 猱
CSS:
/* CSS content property */
.element::before {
content: "\007331"; /* 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%B1
MD5:
f162c9dc0a0e1db7aa6d5cfbc11fc37c
SHA1:
4958fdd74a5db7ea79aeecc7f410d2bbb6e61a81
Base64:
54yx