C:
char c = '\u8951';
printf("%c\n", c); // Output: 襑
JavaScript:
const char = '\u8951';
console.log(char); // Output: 襑
Java:
char c = '\u8951';
System.out.println(c); // Output: 襑
JSON:
{"text": "\u8951"} // Value: 襑
Python:
char = '\u8951'
print(char) # Output: 襑
Perl:
my $char = "\x{8951}";
print $char; # Output: 襑
PHP:
$char = "\x{8951}";
echo $char; // Output: 襑
Ruby:
char = "\u{8951}"
puts char # Output: 襑
Rust:
let c = '\u{8951}';
println!("{}", c); // Output: 襑
Go:
char := '\u8951'
fmt.Printf("%c\n", char) // Output: 襑
CSS:
/* CSS content property */
.element::before {
content: "\008951"; /* 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%91
MD5:
527bc4c105a17423e1c188efd798307e
SHA1:
2221d46c45388de1eebb15ad553108894b90d955
Base64:
6KWR