C:
char c = '\u8897';
printf("%c\n", c); // Output: 袗
JavaScript:
const char = '\u8897';
console.log(char); // Output: 袗
Java:
char c = '\u8897';
System.out.println(c); // Output: 袗
JSON:
{"text": "\u8897"} // Value: 袗
Python:
char = '\u8897'
print(char) # Output: 袗
Perl:
my $char = "\x{8897}";
print $char; # Output: 袗
PHP:
$char = "\x{8897}";
echo $char; // Output: 袗
Ruby:
char = "\u{8897}"
puts char # Output: 袗
Rust:
let c = '\u{8897}';
println!("{}", c); // Output: 袗
Go:
char := '\u8897'
fmt.Printf("%c\n", char) // Output: 袗
CSS:
/* CSS content property */
.element::before {
content: "\008897"; /* 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%97
MD5:
551c092f04ba4e813426922732a39183
SHA1:
ed1cfab4145797abb9af3bc8c44db4eb77df0eeb
Base64:
6KKX