C:
char c = '\u6B9E';
printf("%c\n", c); // Output: 殞
JavaScript:
const char = '\u6B9E';
console.log(char); // Output: 殞
Java:
char c = '\u6B9E';
System.out.println(c); // Output: 殞
JSON:
{"text": "\u6B9E"} // Value: 殞
Python:
char = '\u6B9E'
print(char) # Output: 殞
Perl:
my $char = "\x{6B9E}";
print $char; # Output: 殞
PHP:
$char = "\x{6B9E}";
echo $char; // Output: 殞
Ruby:
char = "\u{6B9E}"
puts char # Output: 殞
Rust:
let c = '\u{6B9E}';
println!("{}", c); // Output: 殞
Go:
char := '\u6B9E'
fmt.Printf("%c\n", char) // Output: 殞
CSS:
/* CSS content property */
.element::before {
content: "\006B9E"; /* 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%AE%9E
MD5:
1295a0572f673b0e62cd4794f1593e85
SHA1:
cce026c0b9352c1d2d23e990622704c894a7b960
Base64:
5q6e