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