C:
char c = '\u7986';
printf("%c\n", c); // Output: 禆
JavaScript:
const char = '\u7986';
console.log(char); // Output: 禆
Java:
char c = '\u7986';
System.out.println(c); // Output: 禆
JSON:
{"text": "\u7986"} // Value: 禆
Python:
char = '\u7986'
print(char) # Output: 禆
Perl:
my $char = "\x{7986}";
print $char; # Output: 禆
PHP:
$char = "\x{7986}";
echo $char; // Output: 禆
Ruby:
char = "\u{7986}"
puts char # Output: 禆
Rust:
let c = '\u{7986}';
println!("{}", c); // Output: 禆
Go:
char := '\u7986'
fmt.Printf("%c\n", char) // Output: 禆
CSS:
/* CSS content property */
.element::before {
content: "\007986"; /* 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%86
MD5:
467072b56d7cfbfe65afea51b4954820
SHA1:
3200bcf3d719f59e111553006eac0c45e8c3f176
Base64:
56aG