C:
char c = '\u8895';
printf("%c\n", c); // Output: 袕
JavaScript:
const char = '\u8895';
console.log(char); // Output: 袕
Java:
char c = '\u8895';
System.out.println(c); // Output: 袕
JSON:
{"text": "\u8895"} // Value: 袕
Python:
char = '\u8895'
print(char) # Output: 袕
Perl:
my $char = "\x{8895}";
print $char; # Output: 袕
PHP:
$char = "\x{8895}";
echo $char; // Output: 袕
Ruby:
char = "\u{8895}"
puts char # Output: 袕
Rust:
let c = '\u{8895}';
println!("{}", c); // Output: 袕
Go:
char := '\u8895'
fmt.Printf("%c\n", char) // Output: 袕
CSS:
/* CSS content property */
.element::before {
content: "\008895"; /* 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%95
MD5:
4b0f5f8b136302c9ccb882dbf2726e29
SHA1:
92040440afab707cdf671609585ac580735af6a1
Base64:
6KKV