C:
char c = '\u8954';
printf("%c\n", c); // Output: 襔
JavaScript:
const char = '\u8954';
console.log(char); // Output: 襔
Java:
char c = '\u8954';
System.out.println(c); // Output: 襔
JSON:
{"text": "\u8954"} // Value: 襔
Python:
char = '\u8954'
print(char) # Output: 襔
Perl:
my $char = "\x{8954}";
print $char; # Output: 襔
PHP:
$char = "\x{8954}";
echo $char; // Output: 襔
Ruby:
char = "\u{8954}"
puts char # Output: 襔
Rust:
let c = '\u{8954}';
println!("{}", c); // Output: 襔
Go:
char := '\u8954'
fmt.Printf("%c\n", char) // Output: 襔
CSS:
/* CSS content property */
.element::before {
content: "\008954"; /* 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%A5%94
MD5:
e2bf85ae1fee5030f5dfec52aaa52b1b
SHA1:
7593ce10d059084c6f3837b74a17118b0b650ab3
Base64:
6KWU