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