C:
char c = '\u8305';
printf("%c\n", c); // Output: 茅
JavaScript:
const char = '\u8305';
console.log(char); // Output: 茅
Java:
char c = '\u8305';
System.out.println(c); // Output: 茅
JSON:
{"text": "\u8305"} // Value: 茅
Python:
char = '\u8305'
print(char) # Output: 茅
Perl:
my $char = "\x{8305}";
print $char; # Output: 茅
PHP:
$char = "\x{8305}";
echo $char; // Output: 茅
Ruby:
char = "\u{8305}"
puts char # Output: 茅
Rust:
let c = '\u{8305}';
println!("{}", c); // Output: 茅
Go:
char := '\u8305'
fmt.Printf("%c\n", char) // Output: 茅
CSS:
/* CSS content property */
.element::before {
content: "\008305"; /* 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%85
MD5:
83553780580d409e37a94bf5ae0d3e06
SHA1:
c3dc58c67c4eec4e2c8e428538e7f8f4a33a39d5
Base64:
6IyF