C:
char c = '\u5588';
printf("%c\n", c); // Output: 喈
JavaScript:
const char = '\u5588';
console.log(char); // Output: 喈
Java:
char c = '\u5588';
System.out.println(c); // Output: 喈
JSON:
{"text": "\u5588"} // Value: 喈
Python:
char = '\u5588'
print(char) # Output: 喈
Perl:
my $char = "\x{5588}";
print $char; # Output: 喈
PHP:
$char = "\x{5588}";
echo $char; // Output: 喈
Ruby:
char = "\u{5588}"
puts char # Output: 喈
Rust:
let c = '\u{5588}';
println!("{}", c); // Output: 喈
Go:
char := '\u5588'
fmt.Printf("%c\n", char) // Output: 喈
CSS:
/* CSS content property */
.element::before {
content: "\005588"; /* 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%88
MD5:
f35a83ae18bd48592ffe8f0471564d6d
SHA1:
2c3c7e64cf69edec7e1ac1bda6a8f095e5b90147
Base64:
5ZaI