C:
char c = '\u5587';
printf("%c\n", c); // Output: 喇
JavaScript:
const char = '\u5587';
console.log(char); // Output: 喇
Java:
char c = '\u5587';
System.out.println(c); // Output: 喇
JSON:
{"text": "\u5587"} // Value: 喇
Python:
char = '\u5587'
print(char) # Output: 喇
Perl:
my $char = "\x{5587}";
print $char; # Output: 喇
PHP:
$char = "\x{5587}";
echo $char; // Output: 喇
Ruby:
char = "\u{5587}"
puts char # Output: 喇
Rust:
let c = '\u{5587}';
println!("{}", c); // Output: 喇
Go:
char := '\u5587'
fmt.Printf("%c\n", char) // Output: 喇
CSS:
/* CSS content property */
.element::before {
content: "\005587"; /* 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%96%87
MD5:
509e482bb4127f31d8286d9a87aa1581
SHA1:
b8aad89d022d073eb48cdb13aa036b5f80e80514
Base64:
5ZaH