C:
char c = '\u8422';
printf("%c\n", c); // Output: 萢
JavaScript:
const char = '\u8422';
console.log(char); // Output: 萢
Java:
char c = '\u8422';
System.out.println(c); // Output: 萢
JSON:
{"text": "\u8422"} // Value: 萢
Python:
char = '\u8422'
print(char) # Output: 萢
Perl:
my $char = "\x{8422}";
print $char; # Output: 萢
PHP:
$char = "\x{8422}";
echo $char; // Output: 萢
Ruby:
char = "\u{8422}"
puts char # Output: 萢
Rust:
let c = '\u{8422}';
println!("{}", c); // Output: 萢
Go:
char := '\u8422'
fmt.Printf("%c\n", char) // Output: 萢
CSS:
/* CSS content property */
.element::before {
content: "\008422"; /* 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%A2
MD5:
f3589b57a4bdd4889afad7cc63de5728
SHA1:
d3e2ee9d03baddc519de0d69f4bf86bd5468c9a5
Base64:
6JCi