C:
char c = '\u6655';
printf("%c\n", c); // Output: 晕
JavaScript:
const char = '\u6655';
console.log(char); // Output: 晕
Java:
char c = '\u6655';
System.out.println(c); // Output: 晕
JSON:
{"text": "\u6655"} // Value: 晕
Python:
char = '\u6655'
print(char) # Output: 晕
Perl:
my $char = "\x{6655}";
print $char; # Output: 晕
PHP:
$char = "\x{6655}";
echo $char; // Output: 晕
Ruby:
char = "\u{6655}"
puts char # Output: 晕
Rust:
let c = '\u{6655}';
println!("{}", c); // Output: 晕
Go:
char := '\u6655'
fmt.Printf("%c\n", char) // Output: 晕
CSS:
/* CSS content property */
.element::before {
content: "\006655"; /* 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%95
MD5:
b091fdcd4594e12dedac60135018fc12
SHA1:
7490273efa7fefba0754ecb558bbbf55428db6f4
Base64:
5pmV