C:
char c = '\u7994';
printf("%c\n", c); // Output: 禔
JavaScript:
const char = '\u7994';
console.log(char); // Output: 禔
Java:
char c = '\u7994';
System.out.println(c); // Output: 禔
JSON:
{"text": "\u7994"} // Value: 禔
Python:
char = '\u7994'
print(char) # Output: 禔
Perl:
my $char = "\x{7994}";
print $char; # Output: 禔
PHP:
$char = "\x{7994}";
echo $char; // Output: 禔
Ruby:
char = "\u{7994}"
puts char # Output: 禔
Rust:
let c = '\u{7994}';
println!("{}", c); // Output: 禔
Go:
char := '\u7994'
fmt.Printf("%c\n", char) // Output: 禔
CSS:
/* CSS content property */
.element::before {
content: "\007994"; /* 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%A6%94
MD5:
2afcc8cdd4dfbcaa0e247e435f724bdb
SHA1:
08ba0248d18d1d5dc5b83d4f73a7744237d971af
Base64:
56aU