C:
char c = '\u7969';
printf("%c\n", c); // Output: 祩
JavaScript:
const char = '\u7969';
console.log(char); // Output: 祩
Java:
char c = '\u7969';
System.out.println(c); // Output: 祩
JSON:
{"text": "\u7969"} // Value: 祩
Python:
char = '\u7969'
print(char) # Output: 祩
Perl:
my $char = "\x{7969}";
print $char; # Output: 祩
PHP:
$char = "\x{7969}";
echo $char; // Output: 祩
Ruby:
char = "\u{7969}"
puts char # Output: 祩
Rust:
let c = '\u{7969}';
println!("{}", c); // Output: 祩
Go:
char := '\u7969'
fmt.Printf("%c\n", char) // Output: 祩
CSS:
/* CSS content property */
.element::before {
content: "\007969"; /* 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%A9
MD5:
63eb27589d9b726c0fb824939bae1c14
SHA1:
8bd0f4269bd9c4a42dbd7aad12215d21fe23455b
Base64:
56Wp