C:
char c = '\u87CB';
printf("%c\n", c); // Output: 蟋
JavaScript:
const char = '\u87CB';
console.log(char); // Output: 蟋
Java:
char c = '\u87CB';
System.out.println(c); // Output: 蟋
JSON:
{"text": "\u87CB"} // Value: 蟋
Python:
char = '\u87CB'
print(char) # Output: 蟋
Perl:
my $char = "\x{87CB}";
print $char; # Output: 蟋
PHP:
$char = "\x{87CB}";
echo $char; // Output: 蟋
Ruby:
char = "\u{87CB}"
puts char # Output: 蟋
Rust:
let c = '\u{87CB}';
println!("{}", c); // Output: 蟋
Go:
char := '\u87CB'
fmt.Printf("%c\n", char) // Output: 蟋
CSS:
/* CSS content property */
.element::before {
content: "\0087CB"; /* 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%9F%8B
MD5:
f9f29436a1eb47e06a5c87fcea827bba
SHA1:
64a943eeae8dc5ca66160f19143b7fed4dded1bc
Base64:
6J+L