C:
char c = '\u5890';
printf("%c\n", c); // Output: 墐
JavaScript:
const char = '\u5890';
console.log(char); // Output: 墐
Java:
char c = '\u5890';
System.out.println(c); // Output: 墐
JSON:
{"text": "\u5890"} // Value: 墐
Python:
char = '\u5890'
print(char) # Output: 墐
Perl:
my $char = "\x{5890}";
print $char; # Output: 墐
PHP:
$char = "\x{5890}";
echo $char; // Output: 墐
Ruby:
char = "\u{5890}"
puts char # Output: 墐
Rust:
let c = '\u{5890}';
println!("{}", c); // Output: 墐
Go:
char := '\u5890'
fmt.Printf("%c\n", char) // Output: 墐
CSS:
/* CSS content property */
.element::before {
content: "\005890"; /* 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%90
MD5:
7889d40d4bfa099b4fa428931fe8f754
SHA1:
8c17925bfb50bc650f55e39d1efcedfb29f94a62
Base64:
5aKQ