C:
char c = '\u7964';
printf("%c\n", c); // Output: 祤
JavaScript:
const char = '\u7964';
console.log(char); // Output: 祤
Java:
char c = '\u7964';
System.out.println(c); // Output: 祤
JSON:
{"text": "\u7964"} // Value: 祤
Python:
char = '\u7964'
print(char) # Output: 祤
Perl:
my $char = "\x{7964}";
print $char; # Output: 祤
PHP:
$char = "\x{7964}";
echo $char; // Output: 祤
Ruby:
char = "\u{7964}"
puts char # Output: 祤
Rust:
let c = '\u{7964}';
println!("{}", c); // Output: 祤
Go:
char := '\u7964'
fmt.Printf("%c\n", char) // Output: 祤
CSS:
/* CSS content property */
.element::before {
content: "\007964"; /* 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%A4
MD5:
2554f574f08ac1a5a7e0780c07c801db
SHA1:
b749414c6034857ead23ffc18cbe2e7409f74040
Base64:
56Wk