C:
char c = '\u8654';
printf("%c\n", c); // Output: 虔
JavaScript:
const char = '\u8654';
console.log(char); // Output: 虔
Java:
char c = '\u8654';
System.out.println(c); // Output: 虔
JSON:
{"text": "\u8654"} // Value: 虔
Python:
char = '\u8654'
print(char) # Output: 虔
Perl:
my $char = "\x{8654}";
print $char; # Output: 虔
PHP:
$char = "\x{8654}";
echo $char; // Output: 虔
Ruby:
char = "\u{8654}"
puts char # Output: 虔
Rust:
let c = '\u{8654}';
println!("{}", c); // Output: 虔
Go:
char := '\u8654'
fmt.Printf("%c\n", char) // Output: 虔
CSS:
/* CSS content property */
.element::before {
content: "\008654"; /* 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%94
MD5:
27ce5f83da65a4ee0c69a7324e5101e3
SHA1:
8ad6a3a61521d206045653d9652bc080f0caf95f
Base64:
6JmU