C:
char c = '\u5353';
printf("%c\n", c); // Output: 卓
JavaScript:
const char = '\u5353';
console.log(char); // Output: 卓
Java:
char c = '\u5353';
System.out.println(c); // Output: 卓
JSON:
{"text": "\u5353"} // Value: 卓
Python:
char = '\u5353'
print(char) # Output: 卓
Perl:
my $char = "\x{5353}";
print $char; # Output: 卓
PHP:
$char = "\x{5353}";
echo $char; // Output: 卓
Ruby:
char = "\u{5353}"
puts char # Output: 卓
Rust:
let c = '\u{5353}';
println!("{}", c); // Output: 卓
Go:
char := '\u5353'
fmt.Printf("%c\n", char) // Output: 卓
CSS:
/* CSS content property */
.element::before {
content: "\005353"; /* 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%93
MD5:
f93f58cecf908102df165f181c84eeef
SHA1:
04a215f0461ff546cd612da5559d7a1d651faa2d
Base64:
5Y2T