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