C:
char c = '\u88E3';
printf("%c\n", c); // Output: 裣
JavaScript:
const char = '\u88E3';
console.log(char); // Output: 裣
Java:
char c = '\u88E3';
System.out.println(c); // Output: 裣
JSON:
{"text": "\u88E3"} // Value: 裣
Python:
char = '\u88E3'
print(char) # Output: 裣
Perl:
my $char = "\x{88E3}";
print $char; # Output: 裣
PHP:
$char = "\x{88E3}";
echo $char; // Output: 裣
Ruby:
char = "\u{88E3}"
puts char # Output: 裣
Rust:
let c = '\u{88E3}';
println!("{}", c); // Output: 裣
Go:
char := '\u88E3'
fmt.Printf("%c\n", char) // Output: 裣
CSS:
/* CSS content property */
.element::before {
content: "\0088E3"; /* 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%A3%A3
MD5:
b588c32bc81500e5ed21306878e18c9b
SHA1:
9ea039d09bd3012e77af3091c36d59322922ba9a
Base64:
6KOj