C:
char c = '\u8707';
printf("%c\n", c); // Output: 蜇
JavaScript:
const char = '\u8707';
console.log(char); // Output: 蜇
Java:
char c = '\u8707';
System.out.println(c); // Output: 蜇
JSON:
{"text": "\u8707"} // Value: 蜇
Python:
char = '\u8707'
print(char) # Output: 蜇
Perl:
my $char = "\x{8707}";
print $char; # Output: 蜇
PHP:
$char = "\x{8707}";
echo $char; // Output: 蜇
Ruby:
char = "\u{8707}"
puts char # Output: 蜇
Rust:
let c = '\u{8707}';
println!("{}", c); // Output: 蜇
Go:
char := '\u8707'
fmt.Printf("%c\n", char) // Output: 蜇
CSS:
/* CSS content property */
.element::before {
content: "\008707"; /* 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%9C%87
MD5:
780c6a4901bfe45f41fb6b7158adabda
SHA1:
cc382a1aefbf5b1e77d7a333d0ddd53dd177fdc3
Base64:
6JyH