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