C:
char c = '\u8653';
printf("%c\n", c); // Output: 虓
JavaScript:
const char = '\u8653';
console.log(char); // Output: 虓
Java:
char c = '\u8653';
System.out.println(c); // Output: 虓
JSON:
{"text": "\u8653"} // Value: 虓
Python:
char = '\u8653'
print(char) # Output: 虓
Perl:
my $char = "\x{8653}";
print $char; # Output: 虓
PHP:
$char = "\x{8653}";
echo $char; // Output: 虓
Ruby:
char = "\u{8653}"
puts char # Output: 虓
Rust:
let c = '\u{8653}';
println!("{}", c); // Output: 虓
Go:
char := '\u8653'
fmt.Printf("%c\n", char) // Output: 虓
CSS:
/* CSS content property */
.element::before {
content: "\008653"; /* 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%93
MD5:
159a6e047ad8134e6d7ab59c36abecdb
SHA1:
03723cc39dccf180cab5e0a62682e922d849a1b4
Base64:
6JmT