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