C:
char c = '\u8053';
printf("%c\n", c); // Output: 聓
JavaScript:
const char = '\u8053';
console.log(char); // Output: 聓
Java:
char c = '\u8053';
System.out.println(c); // Output: 聓
JSON:
{"text": "\u8053"} // Value: 聓
Python:
char = '\u8053'
print(char) # Output: 聓
Perl:
my $char = "\x{8053}";
print $char; # Output: 聓
PHP:
$char = "\x{8053}";
echo $char; // Output: 聓
Ruby:
char = "\u{8053}"
puts char # Output: 聓
Rust:
let c = '\u{8053}';
println!("{}", c); // Output: 聓
Go:
char := '\u8053'
fmt.Printf("%c\n", char) // Output: 聓
CSS:
/* CSS content property */
.element::before {
content: "\008053"; /* 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%93
MD5:
5742daaa96bf7edb4bc81860d9ed4b71
SHA1:
57d8e9ba349163b77eec4f7e9ead6b946cd14b95
Base64:
6IGT