C:
char c = '\u8549';
printf("%c\n", c); // Output: 蕉
JavaScript:
const char = '\u8549';
console.log(char); // Output: 蕉
Java:
char c = '\u8549';
System.out.println(c); // Output: 蕉
JSON:
{"text": "\u8549"} // Value: 蕉
Python:
char = '\u8549'
print(char) # Output: 蕉
Perl:
my $char = "\x{8549}";
print $char; # Output: 蕉
PHP:
$char = "\x{8549}";
echo $char; // Output: 蕉
Ruby:
char = "\u{8549}"
puts char # Output: 蕉
Rust:
let c = '\u{8549}';
println!("{}", c); // Output: 蕉
Go:
char := '\u8549'
fmt.Printf("%c\n", char) // Output: 蕉
CSS:
/* CSS content property */
.element::before {
content: "\008549"; /* 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%95%89
MD5:
3779c48539ba7a750efff0ac148f23fa
SHA1:
5ac6e8d035b5f230a82409925763484dbad31591
Base64:
6JWJ