C:
char c = '\u8389';
printf("%c\n", c); // Output: 莉
JavaScript:
const char = '\u8389';
console.log(char); // Output: 莉
Java:
char c = '\u8389';
System.out.println(c); // Output: 莉
JSON:
{"text": "\u8389"} // Value: 莉
Python:
char = '\u8389'
print(char) # Output: 莉
Perl:
my $char = "\x{8389}";
print $char; # Output: 莉
PHP:
$char = "\x{8389}";
echo $char; // Output: 莉
Ruby:
char = "\u{8389}"
puts char # Output: 莉
Rust:
let c = '\u{8389}';
println!("{}", c); // Output: 莉
Go:
char := '\u8389'
fmt.Printf("%c\n", char) // Output: 莉
CSS:
/* CSS content property */
.element::before {
content: "\008389"; /* 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%8E%89
MD5:
61c6bf68cb9961fa582ee04184ac56d6
SHA1:
6fc0c685edb94969cef1bb795d2353711af66107
Base64:
6I6J