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