C:
char c = '\u5363';
printf("%c\n", c); // Output: 卣
JavaScript:
const char = '\u5363';
console.log(char); // Output: 卣
Java:
char c = '\u5363';
System.out.println(c); // Output: 卣
JSON:
{"text": "\u5363"} // Value: 卣
Python:
char = '\u5363'
print(char) # Output: 卣
Perl:
my $char = "\x{5363}";
print $char; # Output: 卣
PHP:
$char = "\x{5363}";
echo $char; // Output: 卣
Ruby:
char = "\u{5363}"
puts char # Output: 卣
Rust:
let c = '\u{5363}';
println!("{}", c); // Output: 卣
Go:
char := '\u5363'
fmt.Printf("%c\n", char) // Output: 卣
CSS:
/* CSS content property */
.element::before {
content: "\005363"; /* 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%A3
MD5:
61b8d37f2c1f2b721d7d804ff5626bcf
SHA1:
754bbf49983b34dd9a8170b4e37511cf235417b1
Base64:
5Y2j