C:
char c = '\u8354';
printf("%c\n", c); // Output: 荔
JavaScript:
const char = '\u8354';
console.log(char); // Output: 荔
Java:
char c = '\u8354';
System.out.println(c); // Output: 荔
JSON:
{"text": "\u8354"} // Value: 荔
Python:
char = '\u8354'
print(char) # Output: 荔
Perl:
my $char = "\x{8354}";
print $char; # Output: 荔
PHP:
$char = "\x{8354}";
echo $char; // Output: 荔
Ruby:
char = "\u{8354}"
puts char # Output: 荔
Rust:
let c = '\u{8354}';
println!("{}", c); // Output: 荔
Go:
char := '\u8354'
fmt.Printf("%c\n", char) // Output: 荔
CSS:
/* CSS content property */
.element::before {
content: "\008354"; /* 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%8D%94
MD5:
42344f71d02af04b1fd4fdbdda76e267
SHA1:
741cea67c913df1411c01f3490f98ae24a1f6e7b
Base64:
6I2U