C:
char c = '\u8943';
printf("%c\n", c); // Output: 襃
JavaScript:
const char = '\u8943';
console.log(char); // Output: 襃
Java:
char c = '\u8943';
System.out.println(c); // Output: 襃
JSON:
{"text": "\u8943"} // Value: 襃
Python:
char = '\u8943'
print(char) # Output: 襃
Perl:
my $char = "\x{8943}";
print $char; # Output: 襃
PHP:
$char = "\x{8943}";
echo $char; // Output: 襃
Ruby:
char = "\u{8943}"
puts char # Output: 襃
Rust:
let c = '\u{8943}';
println!("{}", c); // Output: 襃
Go:
char := '\u8943'
fmt.Printf("%c\n", char) // Output: 襃
CSS:
/* CSS content property */
.element::before {
content: "\008943"; /* 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%83
MD5:
d28edbdcee0ba242044cee7a5a311d7e
SHA1:
93777326832b8df4081f0c0c625e315d3c0c0fee
Base64:
6KWD