C:
char c = '\u8302';
printf("%c\n", c); // Output: 茂
JavaScript:
const char = '\u8302';
console.log(char); // Output: 茂
Java:
char c = '\u8302';
System.out.println(c); // Output: 茂
JSON:
{"text": "\u8302"} // Value: 茂
Python:
char = '\u8302'
print(char) # Output: 茂
Perl:
my $char = "\x{8302}";
print $char; # Output: 茂
PHP:
$char = "\x{8302}";
echo $char; // Output: 茂
Ruby:
char = "\u{8302}"
puts char # Output: 茂
Rust:
let c = '\u{8302}';
println!("{}", c); // Output: 茂
Go:
char := '\u8302'
fmt.Printf("%c\n", char) // Output: 茂
CSS:
/* CSS content property */
.element::before {
content: "\008302"; /* 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%82
MD5:
47525f6391f200c77590cc63abf546ac
SHA1:
6e1073dcf28da74c5bc1d3b94543886a3c776922
Base64:
6IyC