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