C:
char c = '\u8382';
printf("%c\n", c); // Output: 莂
JavaScript:
const char = '\u8382';
console.log(char); // Output: 莂
Java:
char c = '\u8382';
System.out.println(c); // Output: 莂
JSON:
{"text": "\u8382"} // Value: 莂
Python:
char = '\u8382'
print(char) # Output: 莂
Perl:
my $char = "\x{8382}";
print $char; # Output: 莂
PHP:
$char = "\x{8382}";
echo $char; // Output: 莂
Ruby:
char = "\u{8382}"
puts char # Output: 莂
Rust:
let c = '\u{8382}';
println!("{}", c); // Output: 莂
Go:
char := '\u8382'
fmt.Printf("%c\n", char) // Output: 莂
CSS:
/* CSS content property */
.element::before {
content: "\008382"; /* 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%82
MD5:
53ba240fc6f2c5a6713038cb4802b807
SHA1:
aa75998445986ba3d5bb9c48aed46f0e51f4d6f4
Base64:
6I6C