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