C:
char c = '\u8046';
printf("%c\n", c); // Output: 聆
JavaScript:
const char = '\u8046';
console.log(char); // Output: 聆
Java:
char c = '\u8046';
System.out.println(c); // Output: 聆
JSON:
{"text": "\u8046"} // Value: 聆
Python:
char = '\u8046'
print(char) # Output: 聆
Perl:
my $char = "\x{8046}";
print $char; # Output: 聆
PHP:
$char = "\x{8046}";
echo $char; // Output: 聆
Ruby:
char = "\u{8046}"
puts char # Output: 聆
Rust:
let c = '\u{8046}';
println!("{}", c); // Output: 聆
Go:
char := '\u8046'
fmt.Printf("%c\n", char) // Output: 聆
CSS:
/* CSS content property */
.element::before {
content: "\008046"; /* 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%86
MD5:
2e1c33238bff8424ce24283d965ff4d3
SHA1:
14bd5c3112376468aaff9c2051bdfbf5c8258ac5
Base64:
6IGG