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