C:
char c = '\u6684';
printf("%c\n", c); // Output: 暄
JavaScript:
const char = '\u6684';
console.log(char); // Output: 暄
Java:
char c = '\u6684';
System.out.println(c); // Output: 暄
JSON:
{"text": "\u6684"} // Value: 暄
Python:
char = '\u6684'
print(char) # Output: 暄
Perl:
my $char = "\x{6684}";
print $char; # Output: 暄
PHP:
$char = "\x{6684}";
echo $char; // Output: 暄
Ruby:
char = "\u{6684}"
puts char # Output: 暄
Rust:
let c = '\u{6684}';
println!("{}", c); // Output: 暄
Go:
char := '\u6684'
fmt.Printf("%c\n", char) // Output: 暄
CSS:
/* CSS content property */
.element::before {
content: "\006684"; /* 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%84
MD5:
49b1da7300ea61a20f41651979c3f1ef
SHA1:
5381cd198f431f43344c1b47d992eae889b28882
Base64:
5pqE