C:
char c = '\u8040';
printf("%c\n", c); // Output: 聀
JavaScript:
const char = '\u8040';
console.log(char); // Output: 聀
Java:
char c = '\u8040';
System.out.println(c); // Output: 聀
JSON:
{"text": "\u8040"} // Value: 聀
Python:
char = '\u8040'
print(char) # Output: 聀
Perl:
my $char = "\x{8040}";
print $char; # Output: 聀
PHP:
$char = "\x{8040}";
echo $char; // Output: 聀
Ruby:
char = "\u{8040}"
puts char # Output: 聀
Rust:
let c = '\u{8040}';
println!("{}", c); // Output: 聀
Go:
char := '\u8040'
fmt.Printf("%c\n", char) // Output: 聀
CSS:
/* CSS content property */
.element::before {
content: "\008040"; /* 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%80
MD5:
126252fca19d0b1d5fdcad07aee943da
SHA1:
5637df50f9de857a081bd99fe6c6d46a85e74a89
Base64:
6IGA