C:
char c = '\u5988';
printf("%c\n", c); // Output: 妈
JavaScript:
const char = '\u5988';
console.log(char); // Output: 妈
Java:
char c = '\u5988';
System.out.println(c); // Output: 妈
JSON:
{"text": "\u5988"} // Value: 妈
Python:
char = '\u5988'
print(char) # Output: 妈
Perl:
my $char = "\x{5988}";
print $char; # Output: 妈
PHP:
$char = "\x{5988}";
echo $char; // Output: 妈
Ruby:
char = "\u{5988}"
puts char # Output: 妈
Rust:
let c = '\u{5988}';
println!("{}", c); // Output: 妈
Go:
char := '\u5988'
fmt.Printf("%c\n", char) // Output: 妈
CSS:
/* CSS content property */
.element::before {
content: "\005988"; /* 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%88
MD5:
11148107cdfb3e2a1b93e8a77a773c55
SHA1:
e3918a99aa057ec83dcdc83e42860f1b76dccf71
Base64:
5aaI