C:
char c = '\u8062';
printf("%c\n", c); // Output: 聢
JavaScript:
const char = '\u8062';
console.log(char); // Output: 聢
Java:
char c = '\u8062';
System.out.println(c); // Output: 聢
JSON:
{"text": "\u8062"} // Value: 聢
Python:
char = '\u8062'
print(char) # Output: 聢
Perl:
my $char = "\x{8062}";
print $char; # Output: 聢
PHP:
$char = "\x{8062}";
echo $char; // Output: 聢
Ruby:
char = "\u{8062}"
puts char # Output: 聢
Rust:
let c = '\u{8062}';
println!("{}", c); // Output: 聢
Go:
char := '\u8062'
fmt.Printf("%c\n", char) // Output: 聢
CSS:
/* CSS content property */
.element::before {
content: "\008062"; /* 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%A2
MD5:
f4580b91cfb950c8daadcaf39d2ab50b
SHA1:
da89141d740b07605ea8b74dc118865457949dd9
Base64:
6IGi