C:
char c = '\u8643';
printf("%c\n", c); // Output: 虃
JavaScript:
const char = '\u8643';
console.log(char); // Output: 虃
Java:
char c = '\u8643';
System.out.println(c); // Output: 虃
JSON:
{"text": "\u8643"} // Value: 虃
Python:
char = '\u8643'
print(char) # Output: 虃
Perl:
my $char = "\x{8643}";
print $char; # Output: 虃
PHP:
$char = "\x{8643}";
echo $char; // Output: 虃
Ruby:
char = "\u{8643}"
puts char # Output: 虃
Rust:
let c = '\u{8643}';
println!("{}", c); // Output: 虃
Go:
char := '\u8643'
fmt.Printf("%c\n", char) // Output: 虃
CSS:
/* CSS content property */
.element::before {
content: "\008643"; /* 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%83
MD5:
3756cca20a7964a3753b0d48a7d31cb5
SHA1:
36a56fdb751d647f6559a83013413c9ae7ae51f9
Base64:
6JmD