C:
char c = '\u78D3';
printf("%c\n", c); // Output: 磓
JavaScript:
const char = '\u78D3';
console.log(char); // Output: 磓
Java:
char c = '\u78D3';
System.out.println(c); // Output: 磓
JSON:
{"text": "\u78D3"} // Value: 磓
Python:
char = '\u78D3'
print(char) # Output: 磓
Perl:
my $char = "\x{78D3}";
print $char; # Output: 磓
PHP:
$char = "\x{78D3}";
echo $char; // Output: 磓
Ruby:
char = "\u{78D3}"
puts char # Output: 磓
Rust:
let c = '\u{78D3}';
println!("{}", c); // Output: 磓
Go:
char := '\u78D3'
fmt.Printf("%c\n", char) // Output: 磓
CSS:
/* CSS content property */
.element::before {
content: "\0078D3"; /* 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%93
MD5:
73ad9d4b6667b43e545b579ce4351968
SHA1:
494b893f1aa437a94f6381d53fa828f9cbf1e274
Base64:
56OT