C:
char c = '\u7A64';
printf("%c\n", c); // Output: 穤
JavaScript:
const char = '\u7A64';
console.log(char); // Output: 穤
Java:
char c = '\u7A64';
System.out.println(c); // Output: 穤
JSON:
{"text": "\u7A64"} // Value: 穤
Python:
char = '\u7A64'
print(char) # Output: 穤
Perl:
my $char = "\x{7A64}";
print $char; # Output: 穤
PHP:
$char = "\x{7A64}";
echo $char; // Output: 穤
Ruby:
char = "\u{7A64}"
puts char # Output: 穤
Rust:
let c = '\u{7A64}';
println!("{}", c); // Output: 穤
Go:
char := '\u7A64'
fmt.Printf("%c\n", char) // Output: 穤
CSS:
/* CSS content property */
.element::before {
content: "\007A64"; /* 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%A9%A4
MD5:
06f20c6f20fc461f5c784b6e6ddb3f3b
SHA1:
a2d705316dda5fb2823d198521052fc3940d5306
Base64:
56mk