C:
char c = '\u83A4';
printf("%c\n", c); // Output: 莤
JavaScript:
const char = '\u83A4';
console.log(char); // Output: 莤
Java:
char c = '\u83A4';
System.out.println(c); // Output: 莤
JSON:
{"text": "\u83A4"} // Value: 莤
Python:
char = '\u83A4'
print(char) # Output: 莤
Perl:
my $char = "\x{83A4}";
print $char; # Output: 莤
PHP:
$char = "\x{83A4}";
echo $char; // Output: 莤
Ruby:
char = "\u{83A4}"
puts char # Output: 莤
Rust:
let c = '\u{83A4}';
println!("{}", c); // Output: 莤
Go:
char := '\u83A4'
fmt.Printf("%c\n", char) // Output: 莤
CSS:
/* CSS content property */
.element::before {
content: "\0083A4"; /* 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%A4
MD5:
03b96dfc4f39aa69cb7fd9d9ec1964fa
SHA1:
11046eed2be10882e108ee0ce17a10612a087b3e
Base64:
6I6k