C:
char c = '\u8331';
printf("%c\n", c); // Output: 茱
JavaScript:
const char = '\u8331';
console.log(char); // Output: 茱
Java:
char c = '\u8331';
System.out.println(c); // Output: 茱
JSON:
{"text": "\u8331"} // Value: 茱
Python:
char = '\u8331'
print(char) # Output: 茱
Perl:
my $char = "\x{8331}";
print $char; # Output: 茱
PHP:
$char = "\x{8331}";
echo $char; // Output: 茱
Ruby:
char = "\u{8331}"
puts char # Output: 茱
Rust:
let c = '\u{8331}';
println!("{}", c); // Output: 茱
Go:
char := '\u8331'
fmt.Printf("%c\n", char) // Output: 茱
CSS:
/* CSS content property */
.element::before {
content: "\008331"; /* 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%B1
MD5:
ad0344b5e1fb79f60a7fc0f17a53c231
SHA1:
3f31887d071148181acdf7d9d6012015f5bf0ad9
Base64:
6Iyx