C:
char c = '\u84CF';
printf("%c\n", c); // Output: 蓏
JavaScript:
const char = '\u84CF';
console.log(char); // Output: 蓏
Java:
char c = '\u84CF';
System.out.println(c); // Output: 蓏
JSON:
{"text": "\u84CF"} // Value: 蓏
Python:
char = '\u84CF'
print(char) # Output: 蓏
Perl:
my $char = "\x{84CF}";
print $char; # Output: 蓏
PHP:
$char = "\x{84CF}";
echo $char; // Output: 蓏
Ruby:
char = "\u{84CF}"
puts char # Output: 蓏
Rust:
let c = '\u{84CF}';
println!("{}", c); // Output: 蓏
Go:
char := '\u84CF'
fmt.Printf("%c\n", char) // Output: 蓏
CSS:
/* CSS content property */
.element::before {
content: "\0084CF"; /* 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%93%8F
MD5:
5ea93345022f7e0b01d11cdd75c7658f
SHA1:
0a63bf33cb91350244c245af9e1c81c14a71a12f
Base64:
6JOP