C:
char c = '\u5361';
printf("%c\n", c); // Output: 卡
JavaScript:
const char = '\u5361';
console.log(char); // Output: 卡
Java:
char c = '\u5361';
System.out.println(c); // Output: 卡
JSON:
{"text": "\u5361"} // Value: 卡
Python:
char = '\u5361'
print(char) # Output: 卡
Perl:
my $char = "\x{5361}";
print $char; # Output: 卡
PHP:
$char = "\x{5361}";
echo $char; // Output: 卡
Ruby:
char = "\u{5361}"
puts char # Output: 卡
Rust:
let c = '\u{5361}';
println!("{}", c); // Output: 卡
Go:
char := '\u5361'
fmt.Printf("%c\n", char) // Output: 卡
CSS:
/* CSS content property */
.element::before {
content: "\005361"; /* 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%A1
MD5:
d6838766685b945ba240e4c61f63b929
SHA1:
9419fd04b79fda3317d8a7899e85ffba053664f0
Base64:
5Y2h