C:
char c = '\u8658';
printf("%c\n", c); // Output: 虘
JavaScript:
const char = '\u8658';
console.log(char); // Output: 虘
Java:
char c = '\u8658';
System.out.println(c); // Output: 虘
JSON:
{"text": "\u8658"} // Value: 虘
Python:
char = '\u8658'
print(char) # Output: 虘
Perl:
my $char = "\x{8658}";
print $char; # Output: 虘
PHP:
$char = "\x{8658}";
echo $char; // Output: 虘
Ruby:
char = "\u{8658}"
puts char # Output: 虘
Rust:
let c = '\u{8658}';
println!("{}", c); // Output: 虘
Go:
char := '\u8658'
fmt.Printf("%c\n", char) // Output: 虘
CSS:
/* CSS content property */
.element::before {
content: "\008658"; /* 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%98
MD5:
0be3bc3c478e02fa0848eef94d0873b3
SHA1:
3b33d5bf93793fe32004a97d8e0e1d54bdad8f83
Base64:
6JmY