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