C:
char c = '\u8317';
printf("%c\n", c); // Output: 茗
JavaScript:
const char = '\u8317';
console.log(char); // Output: 茗
Java:
char c = '\u8317';
System.out.println(c); // Output: 茗
JSON:
{"text": "\u8317"} // Value: 茗
Python:
char = '\u8317'
print(char) # Output: 茗
Perl:
my $char = "\x{8317}";
print $char; # Output: 茗
PHP:
$char = "\x{8317}";
echo $char; // Output: 茗
Ruby:
char = "\u{8317}"
puts char # Output: 茗
Rust:
let c = '\u{8317}';
println!("{}", c); // Output: 茗
Go:
char := '\u8317'
fmt.Printf("%c\n", char) // Output: 茗
CSS:
/* CSS content property */
.element::before {
content: "\008317"; /* 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%97
MD5:
d663d80afca1d82f46abf3aae1d342c4
SHA1:
6ea5c0fb47590961a83c740b6bb17962fca8afb1
Base64:
6IyX