C:
char c = '\u78C4';
printf("%c\n", c); // Output: 磄
JavaScript:
const char = '\u78C4';
console.log(char); // Output: 磄
Java:
char c = '\u78C4';
System.out.println(c); // Output: 磄
JSON:
{"text": "\u78C4"} // Value: 磄
Python:
char = '\u78C4'
print(char) # Output: 磄
Perl:
my $char = "\x{78C4}";
print $char; # Output: 磄
PHP:
$char = "\x{78C4}";
echo $char; // Output: 磄
Ruby:
char = "\u{78C4}"
puts char # Output: 磄
Rust:
let c = '\u{78C4}';
println!("{}", c); // Output: 磄
Go:
char := '\u78C4'
fmt.Printf("%c\n", char) // Output: 磄
CSS:
/* CSS content property */
.element::before {
content: "\0078C4"; /* 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%84
MD5:
6c61836f7060bce609cee326b84801ea
SHA1:
431ef7b5ffb64487470eff522dfd84e8c1313ed1
Base64:
56OE