C:
char c = '\u7310';
printf("%c\n", c); // Output: 猐
JavaScript:
const char = '\u7310';
console.log(char); // Output: 猐
Java:
char c = '\u7310';
System.out.println(c); // Output: 猐
JSON:
{"text": "\u7310"} // Value: 猐
Python:
char = '\u7310'
print(char) # Output: 猐
Perl:
my $char = "\x{7310}";
print $char; # Output: 猐
PHP:
$char = "\x{7310}";
echo $char; // Output: 猐
Ruby:
char = "\u{7310}"
puts char # Output: 猐
Rust:
let c = '\u{7310}';
println!("{}", c); // Output: 猐
Go:
char := '\u7310'
fmt.Printf("%c\n", char) // Output: 猐
CSS:
/* CSS content property */
.element::before {
content: "\007310"; /* 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%90
MD5:
fee82bb8fda9a473fa5a96065018b133
SHA1:
083615dec3d9bc6a3f2ed1002d31f51be236c38c
Base64:
54yQ