C:
char c = '\u84DC';
printf("%c\n", c); // Output: 蓜
JavaScript:
const char = '\u84DC';
console.log(char); // Output: 蓜
Java:
char c = '\u84DC';
System.out.println(c); // Output: 蓜
JSON:
{"text": "\u84DC"} // Value: 蓜
Python:
char = '\u84DC'
print(char) # Output: 蓜
Perl:
my $char = "\x{84DC}";
print $char; # Output: 蓜
PHP:
$char = "\x{84DC}";
echo $char; // Output: 蓜
Ruby:
char = "\u{84DC}"
puts char # Output: 蓜
Rust:
let c = '\u{84DC}';
println!("{}", c); // Output: 蓜
Go:
char := '\u84DC'
fmt.Printf("%c\n", char) // Output: 蓜
CSS:
/* CSS content property */
.element::before {
content: "\0084DC"; /* 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%9C
MD5:
9c80f3fe974fa185eeee4a006fc711ca
SHA1:
b6ab76b066e1543a370b5005cf38723c1f461add
Base64:
6JOc