C:
char c = '\u7356';
printf("%c\n", c); // Output: 獖
JavaScript:
const char = '\u7356';
console.log(char); // Output: 獖
Java:
char c = '\u7356';
System.out.println(c); // Output: 獖
JSON:
{"text": "\u7356"} // Value: 獖
Python:
char = '\u7356'
print(char) # Output: 獖
Perl:
my $char = "\x{7356}";
print $char; # Output: 獖
PHP:
$char = "\x{7356}";
echo $char; // Output: 獖
Ruby:
char = "\u{7356}"
puts char # Output: 獖
Rust:
let c = '\u{7356}';
println!("{}", c); // Output: 獖
Go:
char := '\u7356'
fmt.Printf("%c\n", char) // Output: 獖
CSS:
/* CSS content property */
.element::before {
content: "\007356"; /* 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%96
MD5:
f2053127ff582cbc9088dd1c1df601f6
SHA1:
28d0000d8ec099c17034bc023e9f01aaf3323ff8
Base64:
542W