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