C:
char c = '\u64AF';
printf("%c\n", c); // Output: 撯
JavaScript:
const char = '\u64AF';
console.log(char); // Output: 撯
Java:
char c = '\u64AF';
System.out.println(c); // Output: 撯
JSON:
{"text": "\u64AF"} // Value: 撯
Python:
char = '\u64AF'
print(char) # Output: 撯
Perl:
my $char = "\x{64AF}";
print $char; # Output: 撯
PHP:
$char = "\x{64AF}";
echo $char; // Output: 撯
Ruby:
char = "\u{64AF}"
puts char # Output: 撯
Rust:
let c = '\u{64AF}';
println!("{}", c); // Output: 撯
Go:
char := '\u64AF'
fmt.Printf("%c\n", char) // Output: 撯
CSS:
/* CSS content property */
.element::before {
content: "\0064AF"; /* 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=%E6%92%AF
MD5:
5492904a6af57aed5a80708eb9598dea
SHA1:
1136c2369ef8013b8a447013213bdd159cf6f372
Base64:
5pKv