C:
char c = '\u8320';
printf("%c\n", c); // Output: 茠
JavaScript:
const char = '\u8320';
console.log(char); // Output: 茠
Java:
char c = '\u8320';
System.out.println(c); // Output: 茠
JSON:
{"text": "\u8320"} // Value: 茠
Python:
char = '\u8320'
print(char) # Output: 茠
Perl:
my $char = "\x{8320}";
print $char; # Output: 茠
PHP:
$char = "\x{8320}";
echo $char; // Output: 茠
Ruby:
char = "\u{8320}"
puts char # Output: 茠
Rust:
let c = '\u{8320}';
println!("{}", c); // Output: 茠
Go:
char := '\u8320'
fmt.Printf("%c\n", char) // Output: 茠
CSS:
/* CSS content property */
.element::before {
content: "\008320"; /* 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%A0
MD5:
3e1bd3530d133cf1c46200cc527f4c9a
SHA1:
837313f6c72c46671abfc33c83132776b8d7494f
Base64:
6Iyg