C:
char c = '\u7993';
printf("%c\n", c); // Output: 禓
JavaScript:
const char = '\u7993';
console.log(char); // Output: 禓
Java:
char c = '\u7993';
System.out.println(c); // Output: 禓
JSON:
{"text": "\u7993"} // Value: 禓
Python:
char = '\u7993'
print(char) # Output: 禓
Perl:
my $char = "\x{7993}";
print $char; # Output: 禓
PHP:
$char = "\x{7993}";
echo $char; // Output: 禓
Ruby:
char = "\u{7993}"
puts char # Output: 禓
Rust:
let c = '\u{7993}';
println!("{}", c); // Output: 禓
Go:
char := '\u7993'
fmt.Printf("%c\n", char) // Output: 禓
CSS:
/* CSS content property */
.element::before {
content: "\007993"; /* 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%93
MD5:
f9b9e6ed43cbdbf7bb510ef13db5f558
SHA1:
22efa0590ac7a487aa57239da5789a41f428fb3a
Base64:
56aT