C:
char c = '\u8326';
printf("%c\n", c); // Output: 茦
JavaScript:
const char = '\u8326';
console.log(char); // Output: 茦
Java:
char c = '\u8326';
System.out.println(c); // Output: 茦
JSON:
{"text": "\u8326"} // Value: 茦
Python:
char = '\u8326'
print(char) # Output: 茦
Perl:
my $char = "\x{8326}";
print $char; # Output: 茦
PHP:
$char = "\x{8326}";
echo $char; // Output: 茦
Ruby:
char = "\u{8326}"
puts char # Output: 茦
Rust:
let c = '\u{8326}';
println!("{}", c); // Output: 茦
Go:
char := '\u8326'
fmt.Printf("%c\n", char) // Output: 茦
CSS:
/* CSS content property */
.element::before {
content: "\008326"; /* 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%A6
MD5:
3e389e9e7e53c4fe91eb7286770ebe5e
SHA1:
64133fa40a4fd24bb41d5eb3171567aea2ebd3a2
Base64:
6Iym