C:
char c = '\u8648';
printf("%c\n", c); // Output: 虈
JavaScript:
const char = '\u8648';
console.log(char); // Output: 虈
Java:
char c = '\u8648';
System.out.println(c); // Output: 虈
JSON:
{"text": "\u8648"} // Value: 虈
Python:
char = '\u8648'
print(char) # Output: 虈
Perl:
my $char = "\x{8648}";
print $char; # Output: 虈
PHP:
$char = "\x{8648}";
echo $char; // Output: 虈
Ruby:
char = "\u{8648}"
puts char # Output: 虈
Rust:
let c = '\u{8648}';
println!("{}", c); // Output: 虈
Go:
char := '\u8648'
fmt.Printf("%c\n", char) // Output: 虈
CSS:
/* CSS content property */
.element::before {
content: "\008648"; /* 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%88
MD5:
f94db7a27068192a965c94b54065b698
SHA1:
6f05b973db18eda3a2c4e7f6615b93485f7e8e33
Base64:
6JmI