C:
char c = '\u9A82';
printf("%c\n", c); // Output: 骂
JavaScript:
const char = '\u9A82';
console.log(char); // Output: 骂
Java:
char c = '\u9A82';
System.out.println(c); // Output: 骂
JSON:
{"text": "\u9A82"} // Value: 骂
Python:
char = '\u9A82'
print(char) # Output: 骂
Perl:
my $char = "\x{9A82}";
print $char; # Output: 骂
PHP:
$char = "\x{9A82}";
echo $char; // Output: 骂
Ruby:
char = "\u{9A82}"
puts char # Output: 骂
Rust:
let c = '\u{9A82}';
println!("{}", c); // Output: 骂
Go:
char := '\u9A82'
fmt.Printf("%c\n", char) // Output: 骂
CSS:
/* CSS content property */
.element::before {
content: "\009A82"; /* 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=%E9%AA%82
MD5:
aefa6b4338a7edc24ad5cd91a433d3ac
SHA1:
6343706870355f5c964f12910aa6ebd634e3ff2f
Base64:
6aqC