C:
char c = '\u8409';
printf("%c\n", c); // Output: 萉
JavaScript:
const char = '\u8409';
console.log(char); // Output: 萉
Java:
char c = '\u8409';
System.out.println(c); // Output: 萉
JSON:
{"text": "\u8409"} // Value: 萉
Python:
char = '\u8409'
print(char) # Output: 萉
Perl:
my $char = "\x{8409}";
print $char; # Output: 萉
PHP:
$char = "\x{8409}";
echo $char; // Output: 萉
Ruby:
char = "\u{8409}"
puts char # Output: 萉
Rust:
let c = '\u{8409}';
println!("{}", c); // Output: 萉
Go:
char := '\u8409'
fmt.Printf("%c\n", char) // Output: 萉
CSS:
/* CSS content property */
.element::before {
content: "\008409"; /* 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%89
MD5:
1feb3bea785dee4d94352887bcb1c5af
SHA1:
ea7840fd8861e70aac53db29d11a8c1f4d960e39
Base64:
6JCJ