C:
char c = '\u8319';
printf("%c\n", c); // Output: 茙
JavaScript:
const char = '\u8319';
console.log(char); // Output: 茙
Java:
char c = '\u8319';
System.out.println(c); // Output: 茙
JSON:
{"text": "\u8319"} // Value: 茙
Python:
char = '\u8319'
print(char) # Output: 茙
Perl:
my $char = "\x{8319}";
print $char; # Output: 茙
PHP:
$char = "\x{8319}";
echo $char; // Output: 茙
Ruby:
char = "\u{8319}"
puts char # Output: 茙
Rust:
let c = '\u{8319}';
println!("{}", c); // Output: 茙
Go:
char := '\u8319'
fmt.Printf("%c\n", char) // Output: 茙
CSS:
/* CSS content property */
.element::before {
content: "\008319"; /* 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%99
MD5:
31ab896f499362adb7b95172eac2e629
SHA1:
ea097a19496df790d29b8c891d36cdbfbebd5739
Base64:
6IyZ