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