C:
char c = '\u7997';
printf("%c\n", c); // Output: 禗
JavaScript:
const char = '\u7997';
console.log(char); // Output: 禗
Java:
char c = '\u7997';
System.out.println(c); // Output: 禗
JSON:
{"text": "\u7997"} // Value: 禗
Python:
char = '\u7997'
print(char) # Output: 禗
Perl:
my $char = "\x{7997}";
print $char; # Output: 禗
PHP:
$char = "\x{7997}";
echo $char; // Output: 禗
Ruby:
char = "\u{7997}"
puts char # Output: 禗
Rust:
let c = '\u{7997}';
println!("{}", c); // Output: 禗
Go:
char := '\u7997'
fmt.Printf("%c\n", char) // Output: 禗
CSS:
/* CSS content property */
.element::before {
content: "\007997"; /* 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%97
MD5:
d8bbcecccf29a4eb5344e0ad67ab10b0
SHA1:
9ca5e5db24c7235fe40f6dc85ef7bca7fdb61b3d
Base64:
56aX