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