C:
char c = '\u8696';
printf("%c\n", c); // Output: 蚖
JavaScript:
const char = '\u8696';
console.log(char); // Output: 蚖
Java:
char c = '\u8696';
System.out.println(c); // Output: 蚖
JSON:
{"text": "\u8696"} // Value: 蚖
Python:
char = '\u8696'
print(char) # Output: 蚖
Perl:
my $char = "\x{8696}";
print $char; # Output: 蚖
PHP:
$char = "\x{8696}";
echo $char; // Output: 蚖
Ruby:
char = "\u{8696}"
puts char # Output: 蚖
Rust:
let c = '\u{8696}';
println!("{}", c); // Output: 蚖
Go:
char := '\u8696'
fmt.Printf("%c\n", char) // Output: 蚖
CSS:
/* CSS content property */
.element::before {
content: "\008696"; /* 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%9A%96
MD5:
8b94b6db681838ca1f1d5ecfaa04005f
SHA1:
af67578e21f3278bc9c9b46134f6db013e4b0ed2
Base64:
6JqW