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