C:
char c = '\u8308';
printf("%c\n", c); // Output: 茈
JavaScript:
const char = '\u8308';
console.log(char); // Output: 茈
Java:
char c = '\u8308';
System.out.println(c); // Output: 茈
JSON:
{"text": "\u8308"} // Value: 茈
Python:
char = '\u8308'
print(char) # Output: 茈
Perl:
my $char = "\x{8308}";
print $char; # Output: 茈
PHP:
$char = "\x{8308}";
echo $char; // Output: 茈
Ruby:
char = "\u{8308}"
puts char # Output: 茈
Rust:
let c = '\u{8308}';
println!("{}", c); // Output: 茈
Go:
char := '\u8308'
fmt.Printf("%c\n", char) // Output: 茈
CSS:
/* CSS content property */
.element::before {
content: "\008308"; /* 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%88
MD5:
43c92c38031bd2532c32011690fa5216
SHA1:
9930bf2865fe8a7f7fe0a73dd5593d170356b269
Base64:
6IyI