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