C:
char c = '\u8870';
printf("%c\n", c); // Output: 衰
JavaScript:
const char = '\u8870';
console.log(char); // Output: 衰
Java:
char c = '\u8870';
System.out.println(c); // Output: 衰
JSON:
{"text": "\u8870"} // Value: 衰
Python:
char = '\u8870'
print(char) # Output: 衰
Perl:
my $char = "\x{8870}";
print $char; # Output: 衰
PHP:
$char = "\x{8870}";
echo $char; // Output: 衰
Ruby:
char = "\u{8870}"
puts char # Output: 衰
Rust:
let c = '\u{8870}';
println!("{}", c); // Output: 衰
Go:
char := '\u8870'
fmt.Printf("%c\n", char) // Output: 衰
CSS:
/* CSS content property */
.element::before {
content: "\008870"; /* 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=%E8%A1%B0
MD5:
09a69b6c122e46bd38dc12d6443ee9bc
SHA1:
a9b0cde4326eee648fd014608d0b74debb86988b
Base64:
6KGw