C:
char c = '\u8604';
printf("%c\n", c); // Output: 蘄
JavaScript:
const char = '\u8604';
console.log(char); // Output: 蘄
Java:
char c = '\u8604';
System.out.println(c); // Output: 蘄
JSON:
{"text": "\u8604"} // Value: 蘄
Python:
char = '\u8604'
print(char) # Output: 蘄
Perl:
my $char = "\x{8604}";
print $char; # Output: 蘄
PHP:
$char = "\x{8604}";
echo $char; // Output: 蘄
Ruby:
char = "\u{8604}"
puts char # Output: 蘄
Rust:
let c = '\u{8604}';
println!("{}", c); // Output: 蘄
Go:
char := '\u8604'
fmt.Printf("%c\n", char) // Output: 蘄
CSS:
/* CSS content property */
.element::before {
content: "\008604"; /* 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%98%84
MD5:
9354acbb5b773f4a87a4603298811e0b
SHA1:
22f8355287619b696da0193301f456f8cb800833
Base64:
6JiE