C:
char c = '\u8854';
printf("%c\n", c); // Output: 衔
JavaScript:
const char = '\u8854';
console.log(char); // Output: 衔
Java:
char c = '\u8854';
System.out.println(c); // Output: 衔
JSON:
{"text": "\u8854"} // Value: 衔
Python:
char = '\u8854'
print(char) # Output: 衔
Perl:
my $char = "\x{8854}";
print $char; # Output: 衔
PHP:
$char = "\x{8854}";
echo $char; // Output: 衔
Ruby:
char = "\u{8854}"
puts char # Output: 衔
Rust:
let c = '\u{8854}';
println!("{}", c); // Output: 衔
Go:
char := '\u8854'
fmt.Printf("%c\n", char) // Output: 衔
CSS:
/* CSS content property */
.element::before {
content: "\008854"; /* 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%94
MD5:
09e7e22209a4a45c92738f5a7dc8b674
SHA1:
64b4628b71d49e7edcc8a9bd4b3051f60e62e95d
Base64:
6KGU