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