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