C:
char c = '\u7379';
printf("%c\n", c); // Output: 獹
JavaScript:
const char = '\u7379';
console.log(char); // Output: 獹
Java:
char c = '\u7379';
System.out.println(c); // Output: 獹
JSON:
{"text": "\u7379"} // Value: 獹
Python:
char = '\u7379'
print(char) # Output: 獹
Perl:
my $char = "\x{7379}";
print $char; # Output: 獹
PHP:
$char = "\x{7379}";
echo $char; // Output: 獹
Ruby:
char = "\u{7379}"
puts char # Output: 獹
Rust:
let c = '\u{7379}';
println!("{}", c); // Output: 獹
Go:
char := '\u7379'
fmt.Printf("%c\n", char) // Output: 獹
CSS:
/* CSS content property */
.element::before {
content: "\007379"; /* 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%8D%B9
MD5:
de90586f5652eb81b8f925b3539b29d7
SHA1:
aabd3734a6229f63a2ef89a272072192b79655c3
Base64:
5425