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