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