C:
char c = '\u5378';
printf("%c\n", c); // Output: 卸
JavaScript:
const char = '\u5378';
console.log(char); // Output: 卸
Java:
char c = '\u5378';
System.out.println(c); // Output: 卸
JSON:
{"text": "\u5378"} // Value: 卸
Python:
char = '\u5378'
print(char) # Output: 卸
Perl:
my $char = "\x{5378}";
print $char; # Output: 卸
PHP:
$char = "\x{5378}";
echo $char; // Output: 卸
Ruby:
char = "\u{5378}"
puts char # Output: 卸
Rust:
let c = '\u{5378}';
println!("{}", c); // Output: 卸
Go:
char := '\u5378'
fmt.Printf("%c\n", char) // Output: 卸
CSS:
/* CSS content property */
.element::before {
content: "\005378"; /* 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%8D%B8
MD5:
c3ee3f9f3eaa878d6f1cae837dd94679
SHA1:
2f21e2ab1e1b988862a94c691dac766a0c3abbbe
Base64:
5Y24