C:
char c = '\u8883';
printf("%c\n", c); // Output: 袃
JavaScript:
const char = '\u8883';
console.log(char); // Output: 袃
Java:
char c = '\u8883';
System.out.println(c); // Output: 袃
JSON:
{"text": "\u8883"} // Value: 袃
Python:
char = '\u8883'
print(char) # Output: 袃
Perl:
my $char = "\x{8883}";
print $char; # Output: 袃
PHP:
$char = "\x{8883}";
echo $char; // Output: 袃
Ruby:
char = "\u{8883}"
puts char # Output: 袃
Rust:
let c = '\u{8883}';
println!("{}", c); // Output: 袃
Go:
char := '\u8883'
fmt.Printf("%c\n", char) // Output: 袃
CSS:
/* CSS content property */
.element::before {
content: "\008883"; /* 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%83
MD5:
d150f096597e544eeda7818ae5c3c85f
SHA1:
80f9ef8a065b8c8ec9d744ff4430b0493c3cf564
Base64:
6KKD