C:
char c = '\u8647';
printf("%c\n", c); // Output: 虇
JavaScript:
const char = '\u8647';
console.log(char); // Output: 虇
Java:
char c = '\u8647';
System.out.println(c); // Output: 虇
JSON:
{"text": "\u8647"} // Value: 虇
Python:
char = '\u8647'
print(char) # Output: 虇
Perl:
my $char = "\x{8647}";
print $char; # Output: 虇
PHP:
$char = "\x{8647}";
echo $char; // Output: 虇
Ruby:
char = "\u{8647}"
puts char # Output: 虇
Rust:
let c = '\u{8647}';
println!("{}", c); // Output: 虇
Go:
char := '\u8647'
fmt.Printf("%c\n", char) // Output: 虇
CSS:
/* CSS content property */
.element::before {
content: "\008647"; /* 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%87
MD5:
26b45408032337ccd9da3e3eaeeac248
SHA1:
340d6d74ec51cfb1bcbfda9f4ba5ced3fcddca24
Base64:
6JmH