C:
char c = '\u8980';
printf("%c\n", c); // Output: 覀
JavaScript:
const char = '\u8980';
console.log(char); // Output: 覀
Java:
char c = '\u8980';
System.out.println(c); // Output: 覀
JSON:
{"text": "\u8980"} // Value: 覀
Python:
char = '\u8980'
print(char) # Output: 覀
Perl:
my $char = "\x{8980}";
print $char; # Output: 覀
PHP:
$char = "\x{8980}";
echo $char; // Output: 覀
Ruby:
char = "\u{8980}"
puts char # Output: 覀
Rust:
let c = '\u{8980}';
println!("{}", c); // Output: 覀
Go:
char := '\u8980'
fmt.Printf("%c\n", char) // Output: 覀
CSS:
/* CSS content property */
.element::before {
content: "\008980"; /* 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%A6%80
MD5:
9f91de2fec0b618638802ce5eb2a7759
SHA1:
d5aad3012bce4809fa3bff6823e8b528639b7661
Base64:
6KaA