C:
char c = '\u8965';
printf("%c\n", c); // Output: 襥
JavaScript:
const char = '\u8965';
console.log(char); // Output: 襥
Java:
char c = '\u8965';
System.out.println(c); // Output: 襥
JSON:
{"text": "\u8965"} // Value: 襥
Python:
char = '\u8965'
print(char) # Output: 襥
Perl:
my $char = "\x{8965}";
print $char; # Output: 襥
PHP:
$char = "\x{8965}";
echo $char; // Output: 襥
Ruby:
char = "\u{8965}"
puts char # Output: 襥
Rust:
let c = '\u{8965}';
println!("{}", c); // Output: 襥
Go:
char := '\u8965'
fmt.Printf("%c\n", char) // Output: 襥
CSS:
/* CSS content property */
.element::before {
content: "\008965"; /* 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%A5
MD5:
107a0514dcc0463e1b8f564530f6d592
SHA1:
453b3d21b1a1085faa0cac6e6058b4e80c240f44
Base64:
6KWl