C:
char c = '\u7F52';
printf("%c\n", c); // Output: 罒
JavaScript:
const char = '\u7F52';
console.log(char); // Output: 罒
Java:
char c = '\u7F52';
System.out.println(c); // Output: 罒
JSON:
{"text": "\u7F52"} // Value: 罒
Python:
char = '\u7F52'
print(char) # Output: 罒
Perl:
my $char = "\x{7F52}";
print $char; # Output: 罒
PHP:
$char = "\x{7F52}";
echo $char; // Output: 罒
Ruby:
char = "\u{7F52}"
puts char # Output: 罒
Rust:
let c = '\u{7F52}';
println!("{}", c); // Output: 罒
Go:
char := '\u7F52'
fmt.Printf("%c\n", char) // Output: 罒
CSS:
/* CSS content property */
.element::before {
content: "\007F52"; /* 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%92
MD5:
332077df8a3f89e8a5f3f3c89eee7712
SHA1:
ec6d069cdf9a67029573eaa733b64dd47ec5301c
Base64:
572S