C:
char c = '\u8D43';
printf("%c\n", c); // Output: 赃
JavaScript:
const char = '\u8D43';
console.log(char); // Output: 赃
Java:
char c = '\u8D43';
System.out.println(c); // Output: 赃
JSON:
{"text": "\u8D43"} // Value: 赃
Python:
char = '\u8D43'
print(char) # Output: 赃
Perl:
my $char = "\x{8D43}";
print $char; # Output: 赃
PHP:
$char = "\x{8D43}";
echo $char; // Output: 赃
Ruby:
char = "\u{8D43}"
puts char # Output: 赃
Rust:
let c = '\u{8D43}';
println!("{}", c); // Output: 赃
Go:
char := '\u8D43'
fmt.Printf("%c\n", char) // Output: 赃
CSS:
/* CSS content property */
.element::before {
content: "\008D43"; /* 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=%E8%B5%83
MD5:
70333fbe17deae4918e7ef74c202e53c
SHA1:
c1a21f68d11e8c1c42ea44b403116ec634d73e1f
Base64:
6LWD