C:
char c = '\u6652';
printf("%c\n", c); // Output: 晒
JavaScript:
const char = '\u6652';
console.log(char); // Output: 晒
Java:
char c = '\u6652';
System.out.println(c); // Output: 晒
JSON:
{"text": "\u6652"} // Value: 晒
Python:
char = '\u6652'
print(char) # Output: 晒
Perl:
my $char = "\x{6652}";
print $char; # Output: 晒
PHP:
$char = "\x{6652}";
echo $char; // Output: 晒
Ruby:
char = "\u{6652}"
puts char # Output: 晒
Rust:
let c = '\u{6652}';
println!("{}", c); // Output: 晒
Go:
char := '\u6652'
fmt.Printf("%c\n", char) // Output: 晒
CSS:
/* CSS content property */
.element::before {
content: "\006652"; /* 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%92
MD5:
9b643f3df3cc18bf7b9e9175a032182b
SHA1:
1831f567e5c6a2763be469630500534ad517493f
Base64:
5pmS