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