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