C:
char c = '\u8589';
printf("%c\n", c); // Output: 薉
JavaScript:
const char = '\u8589';
console.log(char); // Output: 薉
Java:
char c = '\u8589';
System.out.println(c); // Output: 薉
JSON:
{"text": "\u8589"} // Value: 薉
Python:
char = '\u8589'
print(char) # Output: 薉
Perl:
my $char = "\x{8589}";
print $char; # Output: 薉
PHP:
$char = "\x{8589}";
echo $char; // Output: 薉
Ruby:
char = "\u{8589}"
puts char # Output: 薉
Rust:
let c = '\u{8589}';
println!("{}", c); // Output: 薉
Go:
char := '\u8589'
fmt.Printf("%c\n", char) // Output: 薉
CSS:
/* CSS content property */
.element::before {
content: "\008589"; /* 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%96%89
MD5:
1728205ce15fda737a3820b987eafc32
SHA1:
3e411182b9bb5011506aad25391acfe19ebb837e
Base64:
6JaJ