C:
char c = '\u7363';
printf("%c\n", c); // Output: 獣
JavaScript:
const char = '\u7363';
console.log(char); // Output: 獣
Java:
char c = '\u7363';
System.out.println(c); // Output: 獣
JSON:
{"text": "\u7363"} // Value: 獣
Python:
char = '\u7363'
print(char) # Output: 獣
Perl:
my $char = "\x{7363}";
print $char; # Output: 獣
PHP:
$char = "\x{7363}";
echo $char; // Output: 獣
Ruby:
char = "\u{7363}"
puts char # Output: 獣
Rust:
let c = '\u{7363}';
println!("{}", c); // Output: 獣
Go:
char := '\u7363'
fmt.Printf("%c\n", char) // Output: 獣
CSS:
/* CSS content property */
.element::before {
content: "\007363"; /* 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%A3
MD5:
611c0da21e30bb29b9a70f5e41e56bb2
SHA1:
69226bc534660d1181a19c4dc061128ee154e54e
Base64:
542j