C:
char c = '\u7F53';
printf("%c\n", c); // Output: 罓
JavaScript:
const char = '\u7F53';
console.log(char); // Output: 罓
Java:
char c = '\u7F53';
System.out.println(c); // Output: 罓
JSON:
{"text": "\u7F53"} // Value: 罓
Python:
char = '\u7F53'
print(char) # Output: 罓
Perl:
my $char = "\x{7F53}";
print $char; # Output: 罓
PHP:
$char = "\x{7F53}";
echo $char; // Output: 罓
Ruby:
char = "\u{7F53}"
puts char # Output: 罓
Rust:
let c = '\u{7F53}';
println!("{}", c); // Output: 罓
Go:
char := '\u7F53'
fmt.Printf("%c\n", char) // Output: 罓
CSS:
/* CSS content property */
.element::before {
content: "\007F53"; /* 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=%E7%BD%93
MD5:
b3dc9cf0da07f321a19c6b26500f834a
SHA1:
2bbc626052dfef19ca4868ded8296c13b0dd1e11
Base64:
572T