C:
char c = '\u8321';
printf("%c\n", c); // Output: 茡
JavaScript:
const char = '\u8321';
console.log(char); // Output: 茡
Java:
char c = '\u8321';
System.out.println(c); // Output: 茡
JSON:
{"text": "\u8321"} // Value: 茡
Python:
char = '\u8321'
print(char) # Output: 茡
Perl:
my $char = "\x{8321}";
print $char; # Output: 茡
PHP:
$char = "\x{8321}";
echo $char; // Output: 茡
Ruby:
char = "\u{8321}"
puts char # Output: 茡
Rust:
let c = '\u{8321}';
println!("{}", c); // Output: 茡
Go:
char := '\u8321'
fmt.Printf("%c\n", char) // Output: 茡
CSS:
/* CSS content property */
.element::before {
content: "\008321"; /* 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%A1
MD5:
f5a0b898bfdef806daec08efb80201f3
SHA1:
172cfcb4732110b2186f5d457d07cb01270637bb
Base64:
6Iyh