C:
char c = '\u7996';
printf("%c\n", c); // Output: 禖
JavaScript:
const char = '\u7996';
console.log(char); // Output: 禖
Java:
char c = '\u7996';
System.out.println(c); // Output: 禖
JSON:
{"text": "\u7996"} // Value: 禖
Python:
char = '\u7996'
print(char) # Output: 禖
Perl:
my $char = "\x{7996}";
print $char; # Output: 禖
PHP:
$char = "\x{7996}";
echo $char; // Output: 禖
Ruby:
char = "\u{7996}"
puts char # Output: 禖
Rust:
let c = '\u{7996}';
println!("{}", c); // Output: 禖
Go:
char := '\u7996'
fmt.Printf("%c\n", char) // Output: 禖
CSS:
/* CSS content property */
.element::before {
content: "\007996"; /* 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%96
MD5:
482d45d7d413bad62e82a85f71057161
SHA1:
c5afc89a1f5ffa5c0948b3b8d5045e7894d42551
Base64:
56aW