C:
char c = '\u6247';
printf("%c\n", c); // Output: 扇
JavaScript:
const char = '\u6247';
console.log(char); // Output: 扇
Java:
char c = '\u6247';
System.out.println(c); // Output: 扇
JSON:
{"text": "\u6247"} // Value: 扇
Python:
char = '\u6247'
print(char) # Output: 扇
Perl:
my $char = "\x{6247}";
print $char; # Output: 扇
PHP:
$char = "\x{6247}";
echo $char; // Output: 扇
Ruby:
char = "\u{6247}"
puts char # Output: 扇
Rust:
let c = '\u{6247}';
println!("{}", c); // Output: 扇
Go:
char := '\u6247'
fmt.Printf("%c\n", char) // Output: 扇
CSS:
/* CSS content property */
.element::before {
content: "\006247"; /* 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=%E6%89%87
MD5:
185a93f26d944baa49aff83202feae5e
SHA1:
511ae2ec186ffe811cb1b355c91b49ac77118fe3
Base64:
5omH