C:
char c = '\u6694';
printf("%c\n", c); // Output: 暔
JavaScript:
const char = '\u6694';
console.log(char); // Output: 暔
Java:
char c = '\u6694';
System.out.println(c); // Output: 暔
JSON:
{"text": "\u6694"} // Value: 暔
Python:
char = '\u6694'
print(char) # Output: 暔
Perl:
my $char = "\x{6694}";
print $char; # Output: 暔
PHP:
$char = "\x{6694}";
echo $char; // Output: 暔
Ruby:
char = "\u{6694}"
puts char # Output: 暔
Rust:
let c = '\u{6694}';
println!("{}", c); // Output: 暔
Go:
char := '\u6694'
fmt.Printf("%c\n", char) // Output: 暔
CSS:
/* CSS content property */
.element::before {
content: "\006694"; /* 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%9A%94
MD5:
8cf4e706ce343f5dd7d9543a54b97c67
SHA1:
5489cd51f8abbedc3133b5a5b571853617ad06f1
Base64:
5pqU