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