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