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