C:
char c = '\u6656';
printf("%c\n", c); // Output: 晖
JavaScript:
const char = '\u6656';
console.log(char); // Output: 晖
Java:
char c = '\u6656';
System.out.println(c); // Output: 晖
JSON:
{"text": "\u6656"} // Value: 晖
Python:
char = '\u6656'
print(char) # Output: 晖
Perl:
my $char = "\x{6656}";
print $char; # Output: 晖
PHP:
$char = "\x{6656}";
echo $char; // Output: 晖
Ruby:
char = "\u{6656}"
puts char # Output: 晖
Rust:
let c = '\u{6656}';
println!("{}", c); // Output: 晖
Go:
char := '\u6656'
fmt.Printf("%c\n", char) // Output: 晖
CSS:
/* CSS content property */
.element::before {
content: "\006656"; /* 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%96
MD5:
68f857a39c3e04aeb1f3a97d93b859ba
SHA1:
a32b17a46a8ee7c07b3f95652f9157dadf5191ad
Base64:
5pmW