C:
char c = '\u8940';
printf("%c\n", c); // Output: 襀
JavaScript:
const char = '\u8940';
console.log(char); // Output: 襀
Java:
char c = '\u8940';
System.out.println(c); // Output: 襀
JSON:
{"text": "\u8940"} // Value: 襀
Python:
char = '\u8940'
print(char) # Output: 襀
Perl:
my $char = "\x{8940}";
print $char; # Output: 襀
PHP:
$char = "\x{8940}";
echo $char; // Output: 襀
Ruby:
char = "\u{8940}"
puts char # Output: 襀
Rust:
let c = '\u{8940}';
println!("{}", c); // Output: 襀
Go:
char := '\u8940'
fmt.Printf("%c\n", char) // Output: 襀
CSS:
/* CSS content property */
.element::before {
content: "\008940"; /* 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%80
MD5:
76bceeb4b513472460139dca9a6de8d3
SHA1:
5d182fae94299530d8356b845d574b20e190443c
Base64:
6KWA