C:
char c = '\u8642';
printf("%c\n", c); // Output: 虂
JavaScript:
const char = '\u8642';
console.log(char); // Output: 虂
Java:
char c = '\u8642';
System.out.println(c); // Output: 虂
JSON:
{"text": "\u8642"} // Value: 虂
Python:
char = '\u8642'
print(char) # Output: 虂
Perl:
my $char = "\x{8642}";
print $char; # Output: 虂
PHP:
$char = "\x{8642}";
echo $char; // Output: 虂
Ruby:
char = "\u{8642}"
puts char # Output: 虂
Rust:
let c = '\u{8642}';
println!("{}", c); // Output: 虂
Go:
char := '\u8642'
fmt.Printf("%c\n", char) // Output: 虂
CSS:
/* CSS content property */
.element::before {
content: "\008642"; /* 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%82
MD5:
17ca417df755cfbd2dd24e39d0dfc036
SHA1:
413e2e8dfc938b5c91de2557fddc09fea83c71af
Base64:
6JmC