C:
char c = '\u6545';
printf("%c\n", c); // Output: 故
JavaScript:
const char = '\u6545';
console.log(char); // Output: 故
Java:
char c = '\u6545';
System.out.println(c); // Output: 故
JSON:
{"text": "\u6545"} // Value: 故
Python:
char = '\u6545'
print(char) # Output: 故
Perl:
my $char = "\x{6545}";
print $char; # Output: 故
PHP:
$char = "\x{6545}";
echo $char; // Output: 故
Ruby:
char = "\u{6545}"
puts char # Output: 故
Rust:
let c = '\u{6545}';
println!("{}", c); // Output: 故
Go:
char := '\u6545'
fmt.Printf("%c\n", char) // Output: 故
CSS:
/* CSS content property */
.element::before {
content: "\006545"; /* 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=%E6%95%85
MD5:
e2aa22a0db782b55a2225f26f2fed763
SHA1:
811438c0ee85ef7c82212070eb6ec04f568f1e79
Base64:
5pWF