C:
char c = '\u6688';
printf("%c\n", c); // Output: 暈
JavaScript:
const char = '\u6688';
console.log(char); // Output: 暈
Java:
char c = '\u6688';
System.out.println(c); // Output: 暈
JSON:
{"text": "\u6688"} // Value: 暈
Python:
char = '\u6688'
print(char) # Output: 暈
Perl:
my $char = "\x{6688}";
print $char; # Output: 暈
PHP:
$char = "\x{6688}";
echo $char; // Output: 暈
Ruby:
char = "\u{6688}"
puts char # Output: 暈
Rust:
let c = '\u{6688}';
println!("{}", c); // Output: 暈
Go:
char := '\u6688'
fmt.Printf("%c\n", char) // Output: 暈
CSS:
/* CSS content property */
.element::before {
content: "\006688"; /* 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%88
MD5:
5c328f2347cb427a05f7b8e7d24e0fd4
SHA1:
ad9b755ac68a81fd9e15d394b1833a6e07ceae28
Base64:
5pqI