C:
char c = '\u79AB';
printf("%c\n", c); // Output: 禫
JavaScript:
const char = '\u79AB';
console.log(char); // Output: 禫
Java:
char c = '\u79AB';
System.out.println(c); // Output: 禫
JSON:
{"text": "\u79AB"} // Value: 禫
Python:
char = '\u79AB'
print(char) # Output: 禫
Perl:
my $char = "\x{79AB}";
print $char; # Output: 禫
PHP:
$char = "\x{79AB}";
echo $char; // Output: 禫
Ruby:
char = "\u{79AB}"
puts char # Output: 禫
Rust:
let c = '\u{79AB}';
println!("{}", c); // Output: 禫
Go:
char := '\u79AB'
fmt.Printf("%c\n", char) // Output: 禫
CSS:
/* CSS content property */
.element::before {
content: "\0079AB"; /* 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%A6%AB
MD5:
293b6b8eec6de5a7c02351c017b0a9c0
SHA1:
2e19eea6e5a5efe7c11ce32b032f2729c761d3da
Base64:
56ar