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