C:
char c = '\u6648';
printf("%c\n", c); // Output: 晈
JavaScript:
const char = '\u6648';
console.log(char); // Output: 晈
Java:
char c = '\u6648';
System.out.println(c); // Output: 晈
JSON:
{"text": "\u6648"} // Value: 晈
Python:
char = '\u6648'
print(char) # Output: 晈
Perl:
my $char = "\x{6648}";
print $char; # Output: 晈
PHP:
$char = "\x{6648}";
echo $char; // Output: 晈
Ruby:
char = "\u{6648}"
puts char # Output: 晈
Rust:
let c = '\u{6648}';
println!("{}", c); // Output: 晈
Go:
char := '\u6648'
fmt.Printf("%c\n", char) // Output: 晈
CSS:
/* CSS content property */
.element::before {
content: "\006648"; /* 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%99%88
MD5:
0c22e1c36b967264eaaac163d8403ce5
SHA1:
dbe4596ab140731db0fc828f28491ab4b09251f6
Base64:
5pmI