C:
char c = '\u8665';
printf("%c\n", c); // Output: 虥
JavaScript:
const char = '\u8665';
console.log(char); // Output: 虥
Java:
char c = '\u8665';
System.out.println(c); // Output: 虥
JSON:
{"text": "\u8665"} // Value: 虥
Python:
char = '\u8665'
print(char) # Output: 虥
Perl:
my $char = "\x{8665}";
print $char; # Output: 虥
PHP:
$char = "\x{8665}";
echo $char; // Output: 虥
Ruby:
char = "\u{8665}"
puts char # Output: 虥
Rust:
let c = '\u{8665}';
println!("{}", c); // Output: 虥
Go:
char := '\u8665'
fmt.Printf("%c\n", char) // Output: 虥
CSS:
/* CSS content property */
.element::before {
content: "\008665"; /* 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%99%A5
MD5:
67e1d61ede7994e879ed01b84d4432dc
SHA1:
41dedb63e5adcd538ecc468bb22fefde66a94b38
Base64:
6Jml