C:
char c = '\u6668';
printf("%c\n", c); // Output: 晨
JavaScript:
const char = '\u6668';
console.log(char); // Output: 晨
Java:
char c = '\u6668';
System.out.println(c); // Output: 晨
JSON:
{"text": "\u6668"} // Value: 晨
Python:
char = '\u6668'
print(char) # Output: 晨
Perl:
my $char = "\x{6668}";
print $char; # Output: 晨
PHP:
$char = "\x{6668}";
echo $char; // Output: 晨
Ruby:
char = "\u{6668}"
puts char # Output: 晨
Rust:
let c = '\u{6668}';
println!("{}", c); // Output: 晨
Go:
char := '\u6668'
fmt.Printf("%c\n", char) // Output: 晨
CSS:
/* CSS content property */
.element::before {
content: "\006668"; /* 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%A8
MD5:
86a9547f3a24e8658c73182d43b1183e
SHA1:
be2fde7f2d0c3c4fa315ed3ee006292db2126d22
Base64:
5pmo