C:
char c = '\u5397';
printf("%c\n", c); // Output: 厗
JavaScript:
const char = '\u5397';
console.log(char); // Output: 厗
Java:
char c = '\u5397';
System.out.println(c); // Output: 厗
JSON:
{"text": "\u5397"} // Value: 厗
Python:
char = '\u5397'
print(char) # Output: 厗
Perl:
my $char = "\x{5397}";
print $char; # Output: 厗
PHP:
$char = "\x{5397}";
echo $char; // Output: 厗
Ruby:
char = "\u{5397}"
puts char # Output: 厗
Rust:
let c = '\u{5397}';
println!("{}", c); // Output: 厗
Go:
char := '\u5397'
fmt.Printf("%c\n", char) // Output: 厗
CSS:
/* CSS content property */
.element::before {
content: "\005397"; /* 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%97
MD5:
5b9e0871e1d2f42e00fd6814365b419e
SHA1:
2ad00e0089dc39b98a442bb5bbf48642cf2c942b
Base64:
5Y6X