C:
char c = '\u5A00';
printf("%c\n", c); // Output: 娀
JavaScript:
const char = '\u5A00';
console.log(char); // Output: 娀
Java:
char c = '\u5A00';
System.out.println(c); // Output: 娀
JSON:
{"text": "\u5A00"} // Value: 娀
Python:
char = '\u5A00'
print(char) # Output: 娀
Perl:
my $char = "\x{5A00}";
print $char; # Output: 娀
PHP:
$char = "\x{5A00}";
echo $char; // Output: 娀
Ruby:
char = "\u{5A00}"
puts char # Output: 娀
Rust:
let c = '\u{5A00}';
println!("{}", c); // Output: 娀
Go:
char := '\u5A00'
fmt.Printf("%c\n", char) // Output: 娀
CSS:
/* CSS content property */
.element::before {
content: "\005A00"; /* 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%A8%80
MD5:
99ce8eac2fadec2931a2a0feb8925808
SHA1:
2db34572bffd0ae99f69ea2810044a2e749e526e
Base64:
5aiA