C:
char c = '\u7340';
printf("%c\n", c); // Output: 獀
JavaScript:
const char = '\u7340';
console.log(char); // Output: 獀
Java:
char c = '\u7340';
System.out.println(c); // Output: 獀
JSON:
{"text": "\u7340"} // Value: 獀
Python:
char = '\u7340'
print(char) # Output: 獀
Perl:
my $char = "\x{7340}";
print $char; # Output: 獀
PHP:
$char = "\x{7340}";
echo $char; // Output: 獀
Ruby:
char = "\u{7340}"
puts char # Output: 獀
Rust:
let c = '\u{7340}';
println!("{}", c); // Output: 獀
Go:
char := '\u7340'
fmt.Printf("%c\n", char) // Output: 獀
CSS:
/* CSS content property */
.element::before {
content: "\007340"; /* 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%80
MD5:
33542d6f7a1ae4af9f2d1e0963133e86
SHA1:
56be914128caee202a9a77daf127fdaf18440d0f
Base64:
542A