C:
char c = '\u8887';
printf("%c\n", c); // Output: 袇
JavaScript:
const char = '\u8887';
console.log(char); // Output: 袇
Java:
char c = '\u8887';
System.out.println(c); // Output: 袇
JSON:
{"text": "\u8887"} // Value: 袇
Python:
char = '\u8887'
print(char) # Output: 袇
Perl:
my $char = "\x{8887}";
print $char; # Output: 袇
PHP:
$char = "\x{8887}";
echo $char; // Output: 袇
Ruby:
char = "\u{8887}"
puts char # Output: 袇
Rust:
let c = '\u{8887}';
println!("{}", c); // Output: 袇
Go:
char := '\u8887'
fmt.Printf("%c\n", char) // Output: 袇
CSS:
/* CSS content property */
.element::before {
content: "\008887"; /* 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%87
MD5:
1ddf31c137882ad42c7d3bca9b0306f7
SHA1:
33f11ac927082599eb2826f45be24785d820e9c7
Base64:
6KKH