C:
char c = '\u8049';
printf("%c\n", c); // Output: 聉
JavaScript:
const char = '\u8049';
console.log(char); // Output: 聉
Java:
char c = '\u8049';
System.out.println(c); // Output: 聉
JSON:
{"text": "\u8049"} // Value: 聉
Python:
char = '\u8049'
print(char) # Output: 聉
Perl:
my $char = "\x{8049}";
print $char; # Output: 聉
PHP:
$char = "\x{8049}";
echo $char; // Output: 聉
Ruby:
char = "\u{8049}"
puts char # Output: 聉
Rust:
let c = '\u{8049}';
println!("{}", c); // Output: 聉
Go:
char := '\u8049'
fmt.Printf("%c\n", char) // Output: 聉
CSS:
/* CSS content property */
.element::before {
content: "\008049"; /* 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%89
MD5:
b6ac9b293b504ac0ea0df4f7789be318
SHA1:
567d9439d2a99072cd93d5bae9c5533e0d67830b
Base64:
6IGJ