C:
char c = '\u8399';
printf("%c\n", c); // Output: 莙
JavaScript:
const char = '\u8399';
console.log(char); // Output: 莙
Java:
char c = '\u8399';
System.out.println(c); // Output: 莙
JSON:
{"text": "\u8399"} // Value: 莙
Python:
char = '\u8399'
print(char) # Output: 莙
Perl:
my $char = "\x{8399}";
print $char; # Output: 莙
PHP:
$char = "\x{8399}";
echo $char; // Output: 莙
Ruby:
char = "\u{8399}"
puts char # Output: 莙
Rust:
let c = '\u{8399}';
println!("{}", c); // Output: 莙
Go:
char := '\u8399'
fmt.Printf("%c\n", char) // Output: 莙
CSS:
/* CSS content property */
.element::before {
content: "\008399"; /* 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%99
MD5:
45fa016530c88c22396b60441451042a
SHA1:
6cea461e0e59fe6d4144ccb2f6ee1941e890745f
Base64:
6I6Z