C:
char c = '\u8644';
printf("%c\n", c); // Output: 虄
JavaScript:
const char = '\u8644';
console.log(char); // Output: 虄
Java:
char c = '\u8644';
System.out.println(c); // Output: 虄
JSON:
{"text": "\u8644"} // Value: 虄
Python:
char = '\u8644'
print(char) # Output: 虄
Perl:
my $char = "\x{8644}";
print $char; # Output: 虄
PHP:
$char = "\x{8644}";
echo $char; // Output: 虄
Ruby:
char = "\u{8644}"
puts char # Output: 虄
Rust:
let c = '\u{8644}';
println!("{}", c); // Output: 虄
Go:
char := '\u8644'
fmt.Printf("%c\n", char) // Output: 虄
CSS:
/* CSS content property */
.element::before {
content: "\008644"; /* 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%84
MD5:
e54c6eedf6c1320df28ce04b5622ac81
SHA1:
408fd4b77449693de42ebe19412deef83b2df9a2
Base64:
6JmE