C:
char c = '\u8663';
printf("%c\n", c); // Output: 虣
JavaScript:
const char = '\u8663';
console.log(char); // Output: 虣
Java:
char c = '\u8663';
System.out.println(c); // Output: 虣
JSON:
{"text": "\u8663"} // Value: 虣
Python:
char = '\u8663'
print(char) # Output: 虣
Perl:
my $char = "\x{8663}";
print $char; # Output: 虣
PHP:
$char = "\x{8663}";
echo $char; // Output: 虣
Ruby:
char = "\u{8663}"
puts char # Output: 虣
Rust:
let c = '\u{8663}';
println!("{}", c); // Output: 虣
Go:
char := '\u8663'
fmt.Printf("%c\n", char) // Output: 虣
CSS:
/* CSS content property */
.element::before {
content: "\008663"; /* 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%A3
MD5:
36f4c6481a2db8909715610c48df05dd
SHA1:
83693daab9d52a4ed82beab8971e62887f8b5b3d
Base64:
6Jmj