C:
char c = '\u7998';
printf("%c\n", c); // Output: 禘
JavaScript:
const char = '\u7998';
console.log(char); // Output: 禘
Java:
char c = '\u7998';
System.out.println(c); // Output: 禘
JSON:
{"text": "\u7998"} // Value: 禘
Python:
char = '\u7998'
print(char) # Output: 禘
Perl:
my $char = "\x{7998}";
print $char; # Output: 禘
PHP:
$char = "\x{7998}";
echo $char; // Output: 禘
Ruby:
char = "\u{7998}"
puts char # Output: 禘
Rust:
let c = '\u{7998}';
println!("{}", c); // Output: 禘
Go:
char := '\u7998'
fmt.Printf("%c\n", char) // Output: 禘
CSS:
/* CSS content property */
.element::before {
content: "\007998"; /* 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%98
MD5:
83b4734b6d3f220169bc63df9b2ebc0c
SHA1:
daf6c3fbc13dc8a66e9d9717fe13e3045a2d5fdc
Base64:
56aY