C:
char c = '\u8893';
printf("%c\n", c); // Output: 袓
JavaScript:
const char = '\u8893';
console.log(char); // Output: 袓
Java:
char c = '\u8893';
System.out.println(c); // Output: 袓
JSON:
{"text": "\u8893"} // Value: 袓
Python:
char = '\u8893'
print(char) # Output: 袓
Perl:
my $char = "\x{8893}";
print $char; # Output: 袓
PHP:
$char = "\x{8893}";
echo $char; // Output: 袓
Ruby:
char = "\u{8893}"
puts char # Output: 袓
Rust:
let c = '\u{8893}';
println!("{}", c); // Output: 袓
Go:
char := '\u8893'
fmt.Printf("%c\n", char) // Output: 袓
CSS:
/* CSS content property */
.element::before {
content: "\008893"; /* 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%93
MD5:
62491ec42579c81aff6f1fa57c9838ec
SHA1:
ea9e45d35acd427ed8627f960ebfeca9a5396608
Base64:
6KKT