C:
char c = '\u8788';
printf("%c\n", c); // Output: 螈
JavaScript:
const char = '\u8788';
console.log(char); // Output: 螈
Java:
char c = '\u8788';
System.out.println(c); // Output: 螈
JSON:
{"text": "\u8788"} // Value: 螈
Python:
char = '\u8788'
print(char) # Output: 螈
Perl:
my $char = "\x{8788}";
print $char; # Output: 螈
PHP:
$char = "\x{8788}";
echo $char; // Output: 螈
Ruby:
char = "\u{8788}"
puts char # Output: 螈
Rust:
let c = '\u{8788}';
println!("{}", c); // Output: 螈
Go:
char := '\u8788'
fmt.Printf("%c\n", char) // Output: 螈
CSS:
/* CSS content property */
.element::before {
content: "\008788"; /* 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%88
MD5:
8730446577065244206efd46f9e042e0
SHA1:
99e15289ec98b7c2b434b4c7e9d78475cf19ceec
Base64:
6J6I