C:
char c = '\u5596';
printf("%c\n", c); // Output: 喖
JavaScript:
const char = '\u5596';
console.log(char); // Output: 喖
Java:
char c = '\u5596';
System.out.println(c); // Output: 喖
JSON:
{"text": "\u5596"} // Value: 喖
Python:
char = '\u5596'
print(char) # Output: 喖
Perl:
my $char = "\x{5596}";
print $char; # Output: 喖
PHP:
$char = "\x{5596}";
echo $char; // Output: 喖
Ruby:
char = "\u{5596}"
puts char # Output: 喖
Rust:
let c = '\u{5596}';
println!("{}", c); // Output: 喖
Go:
char := '\u5596'
fmt.Printf("%c\n", char) // Output: 喖
CSS:
/* CSS content property */
.element::before {
content: "\005596"; /* 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%96
MD5:
278a525c44a26fc75d163d60730affe9
SHA1:
1f719ea061833e284cfcd41573caf59adf2d9162
Base64:
5ZaW