C:
char c = '\u7378';
printf("%c\n", c); // Output: 獸
JavaScript:
const char = '\u7378';
console.log(char); // Output: 獸
Java:
char c = '\u7378';
System.out.println(c); // Output: 獸
JSON:
{"text": "\u7378"} // Value: 獸
Python:
char = '\u7378'
print(char) # Output: 獸
Perl:
my $char = "\x{7378}";
print $char; # Output: 獸
PHP:
$char = "\x{7378}";
echo $char; // Output: 獸
Ruby:
char = "\u{7378}"
puts char # Output: 獸
Rust:
let c = '\u{7378}';
println!("{}", c); // Output: 獸
Go:
char := '\u7378'
fmt.Printf("%c\n", char) // Output: 獸
CSS:
/* CSS content property */
.element::before {
content: "\007378"; /* 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%B8
MD5:
af925b67bca3872118a6763f50f466be
SHA1:
b4806511afab9e282e8796d54cb95a64cb6be52a
Base64:
5424