C:
char c = '\u8403';
printf("%c\n", c); // Output: 萃
JavaScript:
const char = '\u8403';
console.log(char); // Output: 萃
Java:
char c = '\u8403';
System.out.println(c); // Output: 萃
JSON:
{"text": "\u8403"} // Value: 萃
Python:
char = '\u8403'
print(char) # Output: 萃
Perl:
my $char = "\x{8403}";
print $char; # Output: 萃
PHP:
$char = "\x{8403}";
echo $char; // Output: 萃
Ruby:
char = "\u{8403}"
puts char # Output: 萃
Rust:
let c = '\u{8403}';
println!("{}", c); // Output: 萃
Go:
char := '\u8403'
fmt.Printf("%c\n", char) // Output: 萃
CSS:
/* CSS content property */
.element::before {
content: "\008403"; /* 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%83
MD5:
98790160de5440ec1de405c794bc3f81
SHA1:
6007d2991642818132126121f72ccb426e5a0c87
Base64:
6JCD