C:
char c = '\u8957';
printf("%c\n", c); // Output: 襗
JavaScript:
const char = '\u8957';
console.log(char); // Output: 襗
Java:
char c = '\u8957';
System.out.println(c); // Output: 襗
JSON:
{"text": "\u8957"} // Value: 襗
Python:
char = '\u8957'
print(char) # Output: 襗
Perl:
my $char = "\x{8957}";
print $char; # Output: 襗
PHP:
$char = "\x{8957}";
echo $char; // Output: 襗
Ruby:
char = "\u{8957}"
puts char # Output: 襗
Rust:
let c = '\u{8957}';
println!("{}", c); // Output: 襗
Go:
char := '\u8957'
fmt.Printf("%c\n", char) // Output: 襗
CSS:
/* CSS content property */
.element::before {
content: "\008957"; /* 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%97
MD5:
6ffba1686f549e185297a0cb2a56d17c
SHA1:
951167e2fe71807f98cc150374c2c6524b2b723a
Base64:
6KWX