C:
char c = '\u78ED';
printf("%c\n", c); // Output: 磭
JavaScript:
const char = '\u78ED';
console.log(char); // Output: 磭
Java:
char c = '\u78ED';
System.out.println(c); // Output: 磭
JSON:
{"text": "\u78ED"} // Value: 磭
Python:
char = '\u78ED'
print(char) # Output: 磭
Perl:
my $char = "\x{78ED}";
print $char; # Output: 磭
PHP:
$char = "\x{78ED}";
echo $char; // Output: 磭
Ruby:
char = "\u{78ED}"
puts char # Output: 磭
Rust:
let c = '\u{78ED}';
println!("{}", c); // Output: 磭
Go:
char := '\u78ED'
fmt.Printf("%c\n", char) // Output: 磭
CSS:
/* CSS content property */
.element::before {
content: "\0078ED"; /* 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=%E7%A3%AD
MD5:
87fbae761150e5e3ecb78c97027f674e
SHA1:
e5a2d62b773da0bf00a2b6fccb036587fa936723
Base64:
56Ot