C:
char c = '\u7961';
printf("%c\n", c); // Output: 祡
JavaScript:
const char = '\u7961';
console.log(char); // Output: 祡
Java:
char c = '\u7961';
System.out.println(c); // Output: 祡
JSON:
{"text": "\u7961"} // Value: 祡
Python:
char = '\u7961'
print(char) # Output: 祡
Perl:
my $char = "\x{7961}";
print $char; # Output: 祡
PHP:
$char = "\x{7961}";
echo $char; // Output: 祡
Ruby:
char = "\u{7961}"
puts char # Output: 祡
Rust:
let c = '\u{7961}';
println!("{}", c); // Output: 祡
Go:
char := '\u7961'
fmt.Printf("%c\n", char) // Output: 祡
CSS:
/* CSS content property */
.element::before {
content: "\007961"; /* 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%A1
MD5:
4440a1a4fb24ff0f5531d804c0b36b9a
SHA1:
1445cf81936b1cbaae84d2fdc2c1b43b334d2db6
Base64:
56Wh