C:
char c = '\u8969';
printf("%c\n", c); // Output: 襩
JavaScript:
const char = '\u8969';
console.log(char); // Output: 襩
Java:
char c = '\u8969';
System.out.println(c); // Output: 襩
JSON:
{"text": "\u8969"} // Value: 襩
Python:
char = '\u8969'
print(char) # Output: 襩
Perl:
my $char = "\x{8969}";
print $char; # Output: 襩
PHP:
$char = "\x{8969}";
echo $char; // Output: 襩
Ruby:
char = "\u{8969}"
puts char # Output: 襩
Rust:
let c = '\u{8969}';
println!("{}", c); // Output: 襩
Go:
char := '\u8969'
fmt.Printf("%c\n", char) // Output: 襩
CSS:
/* CSS content property */
.element::before {
content: "\008969"; /* 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%A9
MD5:
0415ac787db95501f454a53a1e7b3e06
SHA1:
56802e8f179dc9d762a6a1827f58e942f52d8fe6
Base64:
6KWp