C:
char c = '\u8889';
printf("%c\n", c); // Output: 袉
JavaScript:
const char = '\u8889';
console.log(char); // Output: 袉
Java:
char c = '\u8889';
System.out.println(c); // Output: 袉
JSON:
{"text": "\u8889"} // Value: 袉
Python:
char = '\u8889'
print(char) # Output: 袉
Perl:
my $char = "\x{8889}";
print $char; # Output: 袉
PHP:
$char = "\x{8889}";
echo $char; // Output: 袉
Ruby:
char = "\u{8889}"
puts char # Output: 袉
Rust:
let c = '\u{8889}';
println!("{}", c); // Output: 袉
Go:
char := '\u8889'
fmt.Printf("%c\n", char) // Output: 袉
CSS:
/* CSS content property */
.element::before {
content: "\008889"; /* 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%89
MD5:
02b628bb5fb825de50a50b0735244afd
SHA1:
b7a3ec9599e1ffa4525a80437ef11b6786cebf64
Base64:
6KKJ