C:
char c = '\u6658';
printf("%c\n", c); // Output: 晘
JavaScript:
const char = '\u6658';
console.log(char); // Output: 晘
Java:
char c = '\u6658';
System.out.println(c); // Output: 晘
JSON:
{"text": "\u6658"} // Value: 晘
Python:
char = '\u6658'
print(char) # Output: 晘
Perl:
my $char = "\x{6658}";
print $char; # Output: 晘
PHP:
$char = "\x{6658}";
echo $char; // Output: 晘
Ruby:
char = "\u{6658}"
puts char # Output: 晘
Rust:
let c = '\u{6658}';
println!("{}", c); // Output: 晘
Go:
char := '\u6658'
fmt.Printf("%c\n", char) // Output: 晘
CSS:
/* CSS content property */
.element::before {
content: "\006658"; /* 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%98
MD5:
ece904ea58d5270c57cea8b29c486190
SHA1:
dbb0cb95ec8fa87e82a34141b75957d6b33cc369
Base64:
5pmY