C:
char c = '\u8045';
printf("%c\n", c); // Output: 聅
JavaScript:
const char = '\u8045';
console.log(char); // Output: 聅
Java:
char c = '\u8045';
System.out.println(c); // Output: 聅
JSON:
{"text": "\u8045"} // Value: 聅
Python:
char = '\u8045'
print(char) # Output: 聅
Perl:
my $char = "\x{8045}";
print $char; # Output: 聅
PHP:
$char = "\x{8045}";
echo $char; // Output: 聅
Ruby:
char = "\u{8045}"
puts char # Output: 聅
Rust:
let c = '\u{8045}';
println!("{}", c); // Output: 聅
Go:
char := '\u8045'
fmt.Printf("%c\n", char) // Output: 聅
CSS:
/* CSS content property */
.element::before {
content: "\008045"; /* 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%85
MD5:
e89d9277bdeac11c7a817110d54a5514
SHA1:
60771ec9408615ad10995b0b3cf757f34c2b93e1
Base64:
6IGF