C:
char c = '\u8964';
printf("%c\n", c); // Output: 襤
JavaScript:
const char = '\u8964';
console.log(char); // Output: 襤
Java:
char c = '\u8964';
System.out.println(c); // Output: 襤
JSON:
{"text": "\u8964"} // Value: 襤
Python:
char = '\u8964'
print(char) # Output: 襤
Perl:
my $char = "\x{8964}";
print $char; # Output: 襤
PHP:
$char = "\x{8964}";
echo $char; // Output: 襤
Ruby:
char = "\u{8964}"
puts char # Output: 襤
Rust:
let c = '\u{8964}';
println!("{}", c); // Output: 襤
Go:
char := '\u8964'
fmt.Printf("%c\n", char) // Output: 襤
CSS:
/* CSS content property */
.element::before {
content: "\008964"; /* 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%A4
MD5:
1fec877355b2ffbddf940acf63ea7a51
SHA1:
54452a089a8b486c5c95b81e103cf7f252dcbadf
Base64:
6KWk