C:
char c = '\u5881';
printf("%c\n", c); // Output: 墁
JavaScript:
const char = '\u5881';
console.log(char); // Output: 墁
Java:
char c = '\u5881';
System.out.println(c); // Output: 墁
JSON:
{"text": "\u5881"} // Value: 墁
Python:
char = '\u5881'
print(char) # Output: 墁
Perl:
my $char = "\x{5881}";
print $char; # Output: 墁
PHP:
$char = "\x{5881}";
echo $char; // Output: 墁
Ruby:
char = "\u{5881}"
puts char # Output: 墁
Rust:
let c = '\u{5881}';
println!("{}", c); // Output: 墁
Go:
char := '\u5881'
fmt.Printf("%c\n", char) // Output: 墁
CSS:
/* CSS content property */
.element::before {
content: "\005881"; /* 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=%E5%A2%81
MD5:
fbd905b36f4575edf85b8c860d4a5a35
SHA1:
a9c20cfe33f98284dfbd79c0842ab92a1bb9602a
Base64:
5aKB