C:
char c = '\u8881';
printf("%c\n", c); // Output: 袁
JavaScript:
const char = '\u8881';
console.log(char); // Output: 袁
Java:
char c = '\u8881';
System.out.println(c); // Output: 袁
JSON:
{"text": "\u8881"} // Value: 袁
Python:
char = '\u8881'
print(char) # Output: 袁
Perl:
my $char = "\x{8881}";
print $char; # Output: 袁
PHP:
$char = "\x{8881}";
echo $char; // Output: 袁
Ruby:
char = "\u{8881}"
puts char # Output: 袁
Rust:
let c = '\u{8881}';
println!("{}", c); // Output: 袁
Go:
char := '\u8881'
fmt.Printf("%c\n", char) // Output: 袁
CSS:
/* CSS content property */
.element::before {
content: "\008881"; /* 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%81
MD5:
44e610e792f27ecb295e835390a00766
SHA1:
505646da9e1fcd45bbe9c62e62b2ab6134e6ed6c
Base64:
6KKB