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