C:
char c = '\u6657';
printf("%c\n", c); // Output: 晗
JavaScript:
const char = '\u6657';
console.log(char); // Output: 晗
Java:
char c = '\u6657';
System.out.println(c); // Output: 晗
JSON:
{"text": "\u6657"} // Value: 晗
Python:
char = '\u6657'
print(char) # Output: 晗
Perl:
my $char = "\x{6657}";
print $char; # Output: 晗
PHP:
$char = "\x{6657}";
echo $char; // Output: 晗
Ruby:
char = "\u{6657}"
puts char # Output: 晗
Rust:
let c = '\u{6657}';
println!("{}", c); // Output: 晗
Go:
char := '\u6657'
fmt.Printf("%c\n", char) // Output: 晗
CSS:
/* CSS content property */
.element::before {
content: "\006657"; /* 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%97
MD5:
0b87ebf6791192205cf7f6270752aa46
SHA1:
93ad7a33c956c3a7854a83b1599641139c9fc3d1
Base64:
5pmX