C:
char c = '\u8783';
printf("%c\n", c); // Output: 螃
JavaScript:
const char = '\u8783';
console.log(char); // Output: 螃
Java:
char c = '\u8783';
System.out.println(c); // Output: 螃
JSON:
{"text": "\u8783"} // Value: 螃
Python:
char = '\u8783'
print(char) # Output: 螃
Perl:
my $char = "\x{8783}";
print $char; # Output: 螃
PHP:
$char = "\x{8783}";
echo $char; // Output: 螃
Ruby:
char = "\u{8783}"
puts char # Output: 螃
Rust:
let c = '\u{8783}';
println!("{}", c); // Output: 螃
Go:
char := '\u8783'
fmt.Printf("%c\n", char) // Output: 螃
CSS:
/* CSS content property */
.element::before {
content: "\008783"; /* 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%9E%83
MD5:
aac2c4f70c8ce5e771f2d56c72592f20
SHA1:
f90beb28f6c404e2fc4135c5dfed4ee874256a8a
Base64:
6J6D