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