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