C:
char c = '\u56E9';
printf("%c\n", c); // Output: 囩
JavaScript:
const char = '\u56E9';
console.log(char); // Output: 囩
Java:
char c = '\u56E9';
System.out.println(c); // Output: 囩
JSON:
{"text": "\u56E9"} // Value: 囩
Python:
char = '\u56E9'
print(char) # Output: 囩
Perl:
my $char = "\x{56E9}";
print $char; # Output: 囩
PHP:
$char = "\x{56E9}";
echo $char; // Output: 囩
Ruby:
char = "\u{56E9}"
puts char # Output: 囩
Rust:
let c = '\u{56E9}';
println!("{}", c); // Output: 囩
Go:
char := '\u56E9'
fmt.Printf("%c\n", char) // Output: 囩
CSS:
/* CSS content property */
.element::before {
content: "\0056E9"; /* 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%9B%A9
MD5:
7eb6826885ab49cbb0a3aad5eb639638
SHA1:
b1475d0006d2406684a6bf9a884ec6a70794b962
Base64:
5Zup