C:
char c = '\u7944';
printf("%c\n", c); // Output: 祄
JavaScript:
const char = '\u7944';
console.log(char); // Output: 祄
Java:
char c = '\u7944';
System.out.println(c); // Output: 祄
JSON:
{"text": "\u7944"} // Value: 祄
Python:
char = '\u7944'
print(char) # Output: 祄
Perl:
my $char = "\x{7944}";
print $char; # Output: 祄
PHP:
$char = "\x{7944}";
echo $char; // Output: 祄
Ruby:
char = "\u{7944}"
puts char # Output: 祄
Rust:
let c = '\u{7944}';
println!("{}", c); // Output: 祄
Go:
char := '\u7944'
fmt.Printf("%c\n", char) // Output: 祄
CSS:
/* CSS content property */
.element::before {
content: "\007944"; /* 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%A5%84
MD5:
77bcb14d2ddfab5e22a3efee46a964ae
SHA1:
2949fe397be23d92fc0ba6bb9d6411192d49893c
Base64:
56WE