C:
char c = '\u8064';
printf("%c\n", c); // Output: 聤
JavaScript:
const char = '\u8064';
console.log(char); // Output: 聤
Java:
char c = '\u8064';
System.out.println(c); // Output: 聤
JSON:
{"text": "\u8064"} // Value: 聤
Python:
char = '\u8064'
print(char) # Output: 聤
Perl:
my $char = "\x{8064}";
print $char; # Output: 聤
PHP:
$char = "\x{8064}";
echo $char; // Output: 聤
Ruby:
char = "\u{8064}"
puts char # Output: 聤
Rust:
let c = '\u{8064}';
println!("{}", c); // Output: 聤
Go:
char := '\u8064'
fmt.Printf("%c\n", char) // Output: 聤
CSS:
/* CSS content property */
.element::before {
content: "\008064"; /* 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=%E8%81%A4
MD5:
ef4e53d87b913796fa1edb4317f1d8db
SHA1:
b6516200fd8fc96a35d5b92d65b6550fbba55b74
Base64:
6IGk