C:
char c = '\u8968';
printf("%c\n", c); // Output: 襨
JavaScript:
const char = '\u8968';
console.log(char); // Output: 襨
Java:
char c = '\u8968';
System.out.println(c); // Output: 襨
JSON:
{"text": "\u8968"} // Value: 襨
Python:
char = '\u8968'
print(char) # Output: 襨
Perl:
my $char = "\x{8968}";
print $char; # Output: 襨
PHP:
$char = "\x{8968}";
echo $char; // Output: 襨
Ruby:
char = "\u{8968}"
puts char # Output: 襨
Rust:
let c = '\u{8968}';
println!("{}", c); // Output: 襨
Go:
char := '\u8968'
fmt.Printf("%c\n", char) // Output: 襨
CSS:
/* CSS content property */
.element::before {
content: "\008968"; /* 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%A8
MD5:
385c4b9b105014337de1814818d57fac
SHA1:
d954bd3ee40c093c60792523e1337e1ffc631690
Base64:
6KWo