C:
char c = '\u8652';
printf("%c\n", c); // Output: 虒
JavaScript:
const char = '\u8652';
console.log(char); // Output: 虒
Java:
char c = '\u8652';
System.out.println(c); // Output: 虒
JSON:
{"text": "\u8652"} // Value: 虒
Python:
char = '\u8652'
print(char) # Output: 虒
Perl:
my $char = "\x{8652}";
print $char; # Output: 虒
PHP:
$char = "\x{8652}";
echo $char; // Output: 虒
Ruby:
char = "\u{8652}"
puts char # Output: 虒
Rust:
let c = '\u{8652}';
println!("{}", c); // Output: 虒
Go:
char := '\u8652'
fmt.Printf("%c\n", char) // Output: 虒
CSS:
/* CSS content property */
.element::before {
content: "\008652"; /* 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%92
MD5:
8115bca7ddee977eeb030a4d0076c10b
SHA1:
482ca411c2fd129e8d61410818efec19191960a6
Base64:
6JmS