C:
char c = '\u8432';
printf("%c\n", c); // Output: 萲
JavaScript:
const char = '\u8432';
console.log(char); // Output: 萲
Java:
char c = '\u8432';
System.out.println(c); // Output: 萲
JSON:
{"text": "\u8432"} // Value: 萲
Python:
char = '\u8432'
print(char) # Output: 萲
Perl:
my $char = "\x{8432}";
print $char; # Output: 萲
PHP:
$char = "\x{8432}";
echo $char; // Output: 萲
Ruby:
char = "\u{8432}"
puts char # Output: 萲
Rust:
let c = '\u{8432}';
println!("{}", c); // Output: 萲
Go:
char := '\u8432'
fmt.Printf("%c\n", char) // Output: 萲
CSS:
/* CSS content property */
.element::before {
content: "\008432"; /* 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%90%B2
MD5:
ccf73b728aa4f948771fe21760a82c1b
SHA1:
0c9742b3a584f273fa09a20dd02713aa9ad3f8e0
Base64:
6JCy