C:
char c = '\u5998';
printf("%c\n", c); // Output: 妘
JavaScript:
const char = '\u5998';
console.log(char); // Output: 妘
Java:
char c = '\u5998';
System.out.println(c); // Output: 妘
JSON:
{"text": "\u5998"} // Value: 妘
Python:
char = '\u5998'
print(char) # Output: 妘
Perl:
my $char = "\x{5998}";
print $char; # Output: 妘
PHP:
$char = "\x{5998}";
echo $char; // Output: 妘
Ruby:
char = "\u{5998}"
puts char # Output: 妘
Rust:
let c = '\u{5998}';
println!("{}", c); // Output: 妘
Go:
char := '\u5998'
fmt.Printf("%c\n", char) // Output: 妘
CSS:
/* CSS content property */
.element::before {
content: "\005998"; /* 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=%E5%A6%98
MD5:
4565814fdab66ff178db97bd58bec06a
SHA1:
bcc1aa4fee8bdecad9e56c36f5a11812b05da782
Base64:
5aaY