C:
char c = '\u8916';
printf("%c\n", c); // Output: 褖
JavaScript:
const char = '\u8916';
console.log(char); // Output: 褖
Java:
char c = '\u8916';
System.out.println(c); // Output: 褖
JSON:
{"text": "\u8916"} // Value: 褖
Python:
char = '\u8916'
print(char) # Output: 褖
Perl:
my $char = "\x{8916}";
print $char; # Output: 褖
PHP:
$char = "\x{8916}";
echo $char; // Output: 褖
Ruby:
char = "\u{8916}"
puts char # Output: 褖
Rust:
let c = '\u{8916}';
println!("{}", c); // Output: 褖
Go:
char := '\u8916'
fmt.Printf("%c\n", char) // Output: 褖
CSS:
/* CSS content property */
.element::before {
content: "\008916"; /* 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=%E8%A4%96
MD5:
bdab14bb4ed84d88b32c2dffb4fa54fb
SHA1:
314d079ba5638c73113a4cb0833622559cfd8867
Base64:
6KSW