C:
char c = '\u8891';
printf("%c\n", c); // Output: 袑
JavaScript:
const char = '\u8891';
console.log(char); // Output: 袑
Java:
char c = '\u8891';
System.out.println(c); // Output: 袑
JSON:
{"text": "\u8891"} // Value: 袑
Python:
char = '\u8891'
print(char) # Output: 袑
Perl:
my $char = "\x{8891}";
print $char; # Output: 袑
PHP:
$char = "\x{8891}";
echo $char; // Output: 袑
Ruby:
char = "\u{8891}"
puts char # Output: 袑
Rust:
let c = '\u{8891}';
println!("{}", c); // Output: 袑
Go:
char := '\u8891'
fmt.Printf("%c\n", char) // Output: 袑
CSS:
/* CSS content property */
.element::before {
content: "\008891"; /* 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%91
MD5:
0ddc4d8798d588ff99d45b68ac17abc2
SHA1:
c2ae9b8402d09be866e57c9b33ca93eb6c220c03
Base64:
6KKR