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