C:
char c = '\u8757';
printf("%c\n", c); // Output: 蝗
JavaScript:
const char = '\u8757';
console.log(char); // Output: 蝗
Java:
char c = '\u8757';
System.out.println(c); // Output: 蝗
JSON:
{"text": "\u8757"} // Value: 蝗
Python:
char = '\u8757'
print(char) # Output: 蝗
Perl:
my $char = "\x{8757}";
print $char; # Output: 蝗
PHP:
$char = "\x{8757}";
echo $char; // Output: 蝗
Ruby:
char = "\u{8757}"
puts char # Output: 蝗
Rust:
let c = '\u{8757}';
println!("{}", c); // Output: 蝗
Go:
char := '\u8757'
fmt.Printf("%c\n", char) // Output: 蝗
CSS:
/* CSS content property */
.element::before {
content: "\008757"; /* 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%9D%97
MD5:
7bd042b7e37e9bc44964db121575d91f
SHA1:
1af0d576d6ad2f53a048aef2ae38ebc39e9c0e4e
Base64:
6J2X