C:
char c = '\u87EC';
printf("%c\n", c); // Output: 蟬
JavaScript:
const char = '\u87EC';
console.log(char); // Output: 蟬
Java:
char c = '\u87EC';
System.out.println(c); // Output: 蟬
JSON:
{"text": "\u87EC"} // Value: 蟬
Python:
char = '\u87EC'
print(char) # Output: 蟬
Perl:
my $char = "\x{87EC}";
print $char; # Output: 蟬
PHP:
$char = "\x{87EC}";
echo $char; // Output: 蟬
Ruby:
char = "\u{87EC}"
puts char # Output: 蟬
Rust:
let c = '\u{87EC}';
println!("{}", c); // Output: 蟬
Go:
char := '\u87EC'
fmt.Printf("%c\n", char) // Output: 蟬
CSS:
/* CSS content property */
.element::before {
content: "\0087EC"; /* 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%AC
MD5:
a0c796604c4027a03a71013852fae72a
SHA1:
e4152a4578ea810203e770ad6802cc23256b56e7
Base64:
6J+s