C:
char c = '\u7973';
printf("%c\n", c); // Output: 祳
JavaScript:
const char = '\u7973';
console.log(char); // Output: 祳
Java:
char c = '\u7973';
System.out.println(c); // Output: 祳
JSON:
{"text": "\u7973"} // Value: 祳
Python:
char = '\u7973'
print(char) # Output: 祳
Perl:
my $char = "\x{7973}";
print $char; # Output: 祳
PHP:
$char = "\x{7973}";
echo $char; // Output: 祳
Ruby:
char = "\u{7973}"
puts char # Output: 祳
Rust:
let c = '\u{7973}';
println!("{}", c); // Output: 祳
Go:
char := '\u7973'
fmt.Printf("%c\n", char) // Output: 祳
CSS:
/* CSS content property */
.element::before {
content: "\007973"; /* 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%B3
MD5:
7158c69c3e284a949acf664f61613e23
SHA1:
30a3ecf7a0e91e0ba6c83d67cb19a1b3b41382b8
Base64:
56Wz