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