C:
char c = '\u5566';
printf("%c\n", c); // Output: 啦
JavaScript:
const char = '\u5566';
console.log(char); // Output: 啦
Java:
char c = '\u5566';
System.out.println(c); // Output: 啦
JSON:
{"text": "\u5566"} // Value: 啦
Python:
char = '\u5566'
print(char) # Output: 啦
Perl:
my $char = "\x{5566}";
print $char; # Output: 啦
PHP:
$char = "\x{5566}";
echo $char; // Output: 啦
Ruby:
char = "\u{5566}"
puts char # Output: 啦
Rust:
let c = '\u{5566}';
println!("{}", c); // Output: 啦
Go:
char := '\u5566'
fmt.Printf("%c\n", char) // Output: 啦
CSS:
/* CSS content property */
.element::before {
content: "\005566"; /* 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%95%A6
MD5:
19cfa68224c46933d3363f5662b87fa4
SHA1:
0fe8758c66399df6586ce36a085f2e83b2f8970f
Base64:
5ZWm