C:
char c = '\u599A';
printf("%c\n", c); // Output: 妚
JavaScript:
const char = '\u599A';
console.log(char); // Output: 妚
Java:
char c = '\u599A';
System.out.println(c); // Output: 妚
JSON:
{"text": "\u599A"} // Value: 妚
Python:
char = '\u599A'
print(char) # Output: 妚
Perl:
my $char = "\x{599A}";
print $char; # Output: 妚
PHP:
$char = "\x{599A}";
echo $char; // Output: 妚
Ruby:
char = "\u{599A}"
puts char # Output: 妚
Rust:
let c = '\u{599A}';
println!("{}", c); // Output: 妚
Go:
char := '\u599A'
fmt.Printf("%c\n", char) // Output: 妚
CSS:
/* CSS content property */
.element::before {
content: "\00599A"; /* 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%9A
MD5:
1b54bc68ac1eba148c7664e72b646859
SHA1:
84b8d1bab6cc50ac66fe70b187a34a96b51c40ca
Base64:
5aaa