C:
char c = '\u8383';
printf("%c\n", c); // Output: 莃
JavaScript:
const char = '\u8383';
console.log(char); // Output: 莃
Java:
char c = '\u8383';
System.out.println(c); // Output: 莃
JSON:
{"text": "\u8383"} // Value: 莃
Python:
char = '\u8383'
print(char) # Output: 莃
Perl:
my $char = "\x{8383}";
print $char; # Output: 莃
PHP:
$char = "\x{8383}";
echo $char; // Output: 莃
Ruby:
char = "\u{8383}"
puts char # Output: 莃
Rust:
let c = '\u{8383}';
println!("{}", c); // Output: 莃
Go:
char := '\u8383'
fmt.Printf("%c\n", char) // Output: 莃
CSS:
/* CSS content property */
.element::before {
content: "\008383"; /* 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%83
MD5:
30aac76071214fc6a9b82814fcfa38b0
SHA1:
11301ae2515dda54ed9345ee31f867b9bfc226f1
Base64:
6I6D