C:
char c = '\u58AB';
printf("%c\n", c); // Output: 墫
JavaScript:
const char = '\u58AB';
console.log(char); // Output: 墫
Java:
char c = '\u58AB';
System.out.println(c); // Output: 墫
JSON:
{"text": "\u58AB"} // Value: 墫
Python:
char = '\u58AB'
print(char) # Output: 墫
Perl:
my $char = "\x{58AB}";
print $char; # Output: 墫
PHP:
$char = "\x{58AB}";
echo $char; // Output: 墫
Ruby:
char = "\u{58AB}"
puts char # Output: 墫
Rust:
let c = '\u{58AB}';
println!("{}", c); // Output: 墫
Go:
char := '\u58AB'
fmt.Printf("%c\n", char) // Output: 墫
CSS:
/* CSS content property */
.element::before {
content: "\0058AB"; /* 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%AB
MD5:
6b2b51b25ced3b4909901eec7c86b958
SHA1:
837927ce40ac3ed62ca01c37028ebf1765f9e2a4
Base64:
5aKr