C:
char c = '\u8384';
printf("%c\n", c); // Output: 莄
JavaScript:
const char = '\u8384';
console.log(char); // Output: 莄
Java:
char c = '\u8384';
System.out.println(c); // Output: 莄
JSON:
{"text": "\u8384"} // Value: 莄
Python:
char = '\u8384'
print(char) # Output: 莄
Perl:
my $char = "\x{8384}";
print $char; # Output: 莄
PHP:
$char = "\x{8384}";
echo $char; // Output: 莄
Ruby:
char = "\u{8384}"
puts char # Output: 莄
Rust:
let c = '\u{8384}';
println!("{}", c); // Output: 莄
Go:
char := '\u8384'
fmt.Printf("%c\n", char) // Output: 莄
CSS:
/* CSS content property */
.element::before {
content: "\008384"; /* 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%84
MD5:
d550ded2fb84d784afef6ae17f6d57c7
SHA1:
f28805fae6fe0e3c982631a79e70954bdb8b700d
Base64:
6I6E