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