C:
char c = '\u8066';
printf("%c\n", c); // Output: 聦
JavaScript:
const char = '\u8066';
console.log(char); // Output: 聦
Java:
char c = '\u8066';
System.out.println(c); // Output: 聦
JSON:
{"text": "\u8066"} // Value: 聦
Python:
char = '\u8066'
print(char) # Output: 聦
Perl:
my $char = "\x{8066}";
print $char; # Output: 聦
PHP:
$char = "\x{8066}";
echo $char; // Output: 聦
Ruby:
char = "\u{8066}"
puts char # Output: 聦
Rust:
let c = '\u{8066}';
println!("{}", c); // Output: 聦
Go:
char := '\u8066'
fmt.Printf("%c\n", char) // Output: 聦
CSS:
/* CSS content property */
.element::before {
content: "\008066"; /* 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%A6
MD5:
59fe35823f5f00c9cce0f6a8e346f7cb
SHA1:
af728ca72b3f598926c5cf0b0f9df5e23a9dec7b
Base64:
6IGm