C:
char c = '\u5356';
printf("%c\n", c); // Output: 卖
JavaScript:
const char = '\u5356';
console.log(char); // Output: 卖
Java:
char c = '\u5356';
System.out.println(c); // Output: 卖
JSON:
{"text": "\u5356"} // Value: 卖
Python:
char = '\u5356'
print(char) # Output: 卖
Perl:
my $char = "\x{5356}";
print $char; # Output: 卖
PHP:
$char = "\x{5356}";
echo $char; // Output: 卖
Ruby:
char = "\u{5356}"
puts char # Output: 卖
Rust:
let c = '\u{5356}';
println!("{}", c); // Output: 卖
Go:
char := '\u5356'
fmt.Printf("%c\n", char) // Output: 卖
CSS:
/* CSS content property */
.element::before {
content: "\005356"; /* 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%96
MD5:
821d5fce7800c03a1547863b06273b00
SHA1:
df45a91413527e7f1e4a76f32882e1a901ab316c
Base64:
5Y2W