C:
char c = '\u8304';
printf("%c\n", c); // Output: 茄
JavaScript:
const char = '\u8304';
console.log(char); // Output: 茄
Java:
char c = '\u8304';
System.out.println(c); // Output: 茄
JSON:
{"text": "\u8304"} // Value: 茄
Python:
char = '\u8304'
print(char) # Output: 茄
Perl:
my $char = "\x{8304}";
print $char; # Output: 茄
PHP:
$char = "\x{8304}";
echo $char; // Output: 茄
Ruby:
char = "\u{8304}"
puts char # Output: 茄
Rust:
let c = '\u{8304}';
println!("{}", c); // Output: 茄
Go:
char := '\u8304'
fmt.Printf("%c\n", char) // Output: 茄
CSS:
/* CSS content property */
.element::before {
content: "\008304"; /* 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%8C%84
MD5:
7d4b3e1d4472460b84d35cc0b21bb8fe
SHA1:
01dcbac135bb3ffa72539132176967a72d71a65e
Base64:
6IyE