C:
char c = '\u8314';
printf("%c\n", c); // Output: 茔
JavaScript:
const char = '\u8314';
console.log(char); // Output: 茔
Java:
char c = '\u8314';
System.out.println(c); // Output: 茔
JSON:
{"text": "\u8314"} // Value: 茔
Python:
char = '\u8314'
print(char) # Output: 茔
Perl:
my $char = "\x{8314}";
print $char; # Output: 茔
PHP:
$char = "\x{8314}";
echo $char; // Output: 茔
Ruby:
char = "\u{8314}"
puts char # Output: 茔
Rust:
let c = '\u{8314}';
println!("{}", c); // Output: 茔
Go:
char := '\u8314'
fmt.Printf("%c\n", char) // Output: 茔
CSS:
/* CSS content property */
.element::before {
content: "\008314"; /* 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%94
MD5:
df96f8e84ecc1596fd4333dbb15dddc6
SHA1:
8d1a6136bb5a2df9f1f9501d0f4fa0b2105ebf33
Base64:
6IyU