C:
char c = '\u8962';
printf("%c\n", c); // Output: 襢
JavaScript:
const char = '\u8962';
console.log(char); // Output: 襢
Java:
char c = '\u8962';
System.out.println(c); // Output: 襢
JSON:
{"text": "\u8962"} // Value: 襢
Python:
char = '\u8962'
print(char) # Output: 襢
Perl:
my $char = "\x{8962}";
print $char; # Output: 襢
PHP:
$char = "\x{8962}";
echo $char; // Output: 襢
Ruby:
char = "\u{8962}"
puts char # Output: 襢
Rust:
let c = '\u{8962}';
println!("{}", c); // Output: 襢
Go:
char := '\u8962'
fmt.Printf("%c\n", char) // Output: 襢
CSS:
/* CSS content property */
.element::before {
content: "\008962"; /* 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%A2
MD5:
90e080b43e6e01ece3a4d0c3a070bc84
SHA1:
70902203c311bf45cdb8174838b6c0292d4cf5d7
Base64:
6KWi