C:
char c = '\u6644';
printf("%c\n", c); // Output: 晄
JavaScript:
const char = '\u6644';
console.log(char); // Output: 晄
Java:
char c = '\u6644';
System.out.println(c); // Output: 晄
JSON:
{"text": "\u6644"} // Value: 晄
Python:
char = '\u6644'
print(char) # Output: 晄
Perl:
my $char = "\x{6644}";
print $char; # Output: 晄
PHP:
$char = "\x{6644}";
echo $char; // Output: 晄
Ruby:
char = "\u{6644}"
puts char # Output: 晄
Rust:
let c = '\u{6644}';
println!("{}", c); // Output: 晄
Go:
char := '\u6644'
fmt.Printf("%c\n", char) // Output: 晄
CSS:
/* CSS content property */
.element::before {
content: "\006644"; /* 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%84
MD5:
3c17f41f1d992c9861b39c97ce02f937
SHA1:
4f86ae4f2f25014249efdaf468c6ffd85dc24a71
Base64:
5pmE