C:
char c = '\u5392';
printf("%c\n", c); // Output: 厒
JavaScript:
const char = '\u5392';
console.log(char); // Output: 厒
Java:
char c = '\u5392';
System.out.println(c); // Output: 厒
JSON:
{"text": "\u5392"} // Value: 厒
Python:
char = '\u5392'
print(char) # Output: 厒
Perl:
my $char = "\x{5392}";
print $char; # Output: 厒
PHP:
$char = "\x{5392}";
echo $char; // Output: 厒
Ruby:
char = "\u{5392}"
puts char # Output: 厒
Rust:
let c = '\u{5392}';
println!("{}", c); // Output: 厒
Go:
char := '\u5392'
fmt.Printf("%c\n", char) // Output: 厒
CSS:
/* CSS content property */
.element::before {
content: "\005392"; /* 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%8E%92
MD5:
25c1185c989d353bae7fe0a72a27010c
SHA1:
1841a4c13e6af9c1f772548e4ef4a5e411ad00fe
Base64:
5Y6S