C:
char c = '\u8316';
printf("%c\n", c); // Output: 茖
JavaScript:
const char = '\u8316';
console.log(char); // Output: 茖
Java:
char c = '\u8316';
System.out.println(c); // Output: 茖
JSON:
{"text": "\u8316"} // Value: 茖
Python:
char = '\u8316'
print(char) # Output: 茖
Perl:
my $char = "\x{8316}";
print $char; # Output: 茖
PHP:
$char = "\x{8316}";
echo $char; // Output: 茖
Ruby:
char = "\u{8316}"
puts char # Output: 茖
Rust:
let c = '\u{8316}';
println!("{}", c); // Output: 茖
Go:
char := '\u8316'
fmt.Printf("%c\n", char) // Output: 茖
CSS:
/* CSS content property */
.element::before {
content: "\008316"; /* 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%96
MD5:
6f97a5303c7f94c8e47ec79bcdd6e7d3
SHA1:
0dc80e3836741eefe83f5173ee5a71f15fc66f79
Base64:
6IyW