C:
char c = '\u8942';
printf("%c\n", c); // Output: 襂
JavaScript:
const char = '\u8942';
console.log(char); // Output: 襂
Java:
char c = '\u8942';
System.out.println(c); // Output: 襂
JSON:
{"text": "\u8942"} // Value: 襂
Python:
char = '\u8942'
print(char) # Output: 襂
Perl:
my $char = "\x{8942}";
print $char; # Output: 襂
PHP:
$char = "\x{8942}";
echo $char; // Output: 襂
Ruby:
char = "\u{8942}"
puts char # Output: 襂
Rust:
let c = '\u{8942}';
println!("{}", c); // Output: 襂
Go:
char := '\u8942'
fmt.Printf("%c\n", char) // Output: 襂
CSS:
/* CSS content property */
.element::before {
content: "\008942"; /* 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%82
MD5:
6c0ae6647c33d41fe5c837a9b6c4160f
SHA1:
6bf016c921c6d36516b3f6c99bea00f8464e5f6b
Base64:
6KWC