C:
char c = '\u7302';
printf("%c\n", c); // Output: 猂
JavaScript:
const char = '\u7302';
console.log(char); // Output: 猂
Java:
char c = '\u7302';
System.out.println(c); // Output: 猂
JSON:
{"text": "\u7302"} // Value: 猂
Python:
char = '\u7302'
print(char) # Output: 猂
Perl:
my $char = "\x{7302}";
print $char; # Output: 猂
PHP:
$char = "\x{7302}";
echo $char; // Output: 猂
Ruby:
char = "\u{7302}"
puts char # Output: 猂
Rust:
let c = '\u{7302}';
println!("{}", c); // Output: 猂
Go:
char := '\u7302'
fmt.Printf("%c\n", char) // Output: 猂
CSS:
/* CSS content property */
.element::before {
content: "\007302"; /* 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%82
MD5:
06a00921c7c48185791336814c6f0b76
SHA1:
7be409bdeb53b576b97e565e87eb338b23f9d76f
Base64:
54yC