C:
char c = '\u6647';
printf("%c\n", c); // Output: 晇
JavaScript:
const char = '\u6647';
console.log(char); // Output: 晇
Java:
char c = '\u6647';
System.out.println(c); // Output: 晇
JSON:
{"text": "\u6647"} // Value: 晇
Python:
char = '\u6647'
print(char) # Output: 晇
Perl:
my $char = "\x{6647}";
print $char; # Output: 晇
PHP:
$char = "\x{6647}";
echo $char; // Output: 晇
Ruby:
char = "\u{6647}"
puts char # Output: 晇
Rust:
let c = '\u{6647}';
println!("{}", c); // Output: 晇
Go:
char := '\u6647'
fmt.Printf("%c\n", char) // Output: 晇
CSS:
/* CSS content property */
.element::before {
content: "\006647"; /* 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%87
MD5:
eb52c3dad3101d0ec98ccf5bf19ab352
SHA1:
028a137548ddce0b2b990d5fd43833452cdd795d
Base64:
5pmH