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