C:
char c = '\u5818';
printf("%c\n", c); // Output: 堘
JavaScript:
const char = '\u5818';
console.log(char); // Output: 堘
Java:
char c = '\u5818';
System.out.println(c); // Output: 堘
JSON:
{"text": "\u5818"} // Value: 堘
Python:
char = '\u5818'
print(char) # Output: 堘
Perl:
my $char = "\x{5818}";
print $char; # Output: 堘
PHP:
$char = "\x{5818}";
echo $char; // Output: 堘
Ruby:
char = "\u{5818}"
puts char # Output: 堘
Rust:
let c = '\u{5818}';
println!("{}", c); // Output: 堘
Go:
char := '\u5818'
fmt.Printf("%c\n", char) // Output: 堘
CSS:
/* CSS content property */
.element::before {
content: "\005818"; /* 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%A0%98
MD5:
84f6f0c93a952df894ea700be8c1e700
SHA1:
97436b55832a45a96728a011ddcab5fdc64c273a
Base64:
5aCY