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