C:
char c = '\u7304';
printf("%c\n", c); // Output: 猄
JavaScript:
const char = '\u7304';
console.log(char); // Output: 猄
Java:
char c = '\u7304';
System.out.println(c); // Output: 猄
JSON:
{"text": "\u7304"} // Value: 猄
Python:
char = '\u7304'
print(char) # Output: 猄
Perl:
my $char = "\x{7304}";
print $char; # Output: 猄
PHP:
$char = "\x{7304}";
echo $char; // Output: 猄
Ruby:
char = "\u{7304}"
puts char # Output: 猄
Rust:
let c = '\u{7304}';
println!("{}", c); // Output: 猄
Go:
char := '\u7304'
fmt.Printf("%c\n", char) // Output: 猄
CSS:
/* CSS content property */
.element::before {
content: "\007304"; /* 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%84
MD5:
6a11203dfa250a46a69809cfc8dba6ac
SHA1:
d05b3ad3e4792dee3c134fa5768de7a206fb5c98
Base64:
54yE