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