C:
char c = '\u8856';
printf("%c\n", c); // Output: 衖
JavaScript:
const char = '\u8856';
console.log(char); // Output: 衖
Java:
char c = '\u8856';
System.out.println(c); // Output: 衖
JSON:
{"text": "\u8856"} // Value: 衖
Python:
char = '\u8856'
print(char) # Output: 衖
Perl:
my $char = "\x{8856}";
print $char; # Output: 衖
PHP:
$char = "\x{8856}";
echo $char; // Output: 衖
Ruby:
char = "\u{8856}"
puts char # Output: 衖
Rust:
let c = '\u{8856}';
println!("{}", c); // Output: 衖
Go:
char := '\u8856'
fmt.Printf("%c\n", char) // Output: 衖
CSS:
/* CSS content property */
.element::before {
content: "\008856"; /* 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%A1%96
MD5:
e2ab52a4168c166829f0a683342235ae
SHA1:
ac02c2e242a45faad382c1534713e6b2a856e1b8
Base64:
6KGW