C:
char c = '\u78CD';
printf("%c\n", c); // Output: 磍
JavaScript:
const char = '\u78CD';
console.log(char); // Output: 磍
Java:
char c = '\u78CD';
System.out.println(c); // Output: 磍
JSON:
{"text": "\u78CD"} // Value: 磍
Python:
char = '\u78CD'
print(char) # Output: 磍
Perl:
my $char = "\x{78CD}";
print $char; # Output: 磍
PHP:
$char = "\x{78CD}";
echo $char; // Output: 磍
Ruby:
char = "\u{78CD}"
puts char # Output: 磍
Rust:
let c = '\u{78CD}';
println!("{}", c); // Output: 磍
Go:
char := '\u78CD'
fmt.Printf("%c\n", char) // Output: 磍
CSS:
/* CSS content property */
.element::before {
content: "\0078CD"; /* 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%8D
MD5:
b30a606e743d18f03d159328901e0bdb
SHA1:
71fea1833f869e19ef430d17fecf3a697de9ee3d
Base64:
56ON