C:
char c = '\u8960';
printf("%c\n", c); // Output: 襠
JavaScript:
const char = '\u8960';
console.log(char); // Output: 襠
Java:
char c = '\u8960';
System.out.println(c); // Output: 襠
JSON:
{"text": "\u8960"} // Value: 襠
Python:
char = '\u8960'
print(char) # Output: 襠
Perl:
my $char = "\x{8960}";
print $char; # Output: 襠
PHP:
$char = "\x{8960}";
echo $char; // Output: 襠
Ruby:
char = "\u{8960}"
puts char # Output: 襠
Rust:
let c = '\u{8960}';
println!("{}", c); // Output: 襠
Go:
char := '\u8960'
fmt.Printf("%c\n", char) // Output: 襠
CSS:
/* CSS content property */
.element::before {
content: "\008960"; /* 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%A0
MD5:
14bf70837c4aa75ed5f5d4d0b06e6d9c
SHA1:
ffbbbe5bcb4244387fe4fded01e256b937b10154
Base64:
6KWg