C:
char c = '\u8322';
printf("%c\n", c); // Output: 茢
JavaScript:
const char = '\u8322';
console.log(char); // Output: 茢
Java:
char c = '\u8322';
System.out.println(c); // Output: 茢
JSON:
{"text": "\u8322"} // Value: 茢
Python:
char = '\u8322'
print(char) # Output: 茢
Perl:
my $char = "\x{8322}";
print $char; # Output: 茢
PHP:
$char = "\x{8322}";
echo $char; // Output: 茢
Ruby:
char = "\u{8322}"
puts char # Output: 茢
Rust:
let c = '\u{8322}';
println!("{}", c); // Output: 茢
Go:
char := '\u8322'
fmt.Printf("%c\n", char) // Output: 茢
CSS:
/* CSS content property */
.element::before {
content: "\008322"; /* 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%A2
MD5:
e8fdf0908f5f72aa8de7343c5c38b82c
SHA1:
09dbb2ab55c7f5b0890c1e3ccf404f84bb507b55
Base64:
6Iyi