C:
char c = '\u6640';
printf("%c\n", c); // Output: 晀
JavaScript:
const char = '\u6640';
console.log(char); // Output: 晀
Java:
char c = '\u6640';
System.out.println(c); // Output: 晀
JSON:
{"text": "\u6640"} // Value: 晀
Python:
char = '\u6640'
print(char) # Output: 晀
Perl:
my $char = "\x{6640}";
print $char; # Output: 晀
PHP:
$char = "\x{6640}";
echo $char; // Output: 晀
Ruby:
char = "\u{6640}"
puts char # Output: 晀
Rust:
let c = '\u{6640}';
println!("{}", c); // Output: 晀
Go:
char := '\u6640'
fmt.Printf("%c\n", char) // Output: 晀
CSS:
/* CSS content property */
.element::before {
content: "\006640"; /* 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%80
MD5:
76c1ef3085e6830d01477839625d2999
SHA1:
be13d4368340035c825d960abfb8cc566f871ed4
Base64:
5pmA