C:
char c = '\u8697';
printf("%c\n", c); // Output: 蚗
JavaScript:
const char = '\u8697';
console.log(char); // Output: 蚗
Java:
char c = '\u8697';
System.out.println(c); // Output: 蚗
JSON:
{"text": "\u8697"} // Value: 蚗
Python:
char = '\u8697'
print(char) # Output: 蚗
Perl:
my $char = "\x{8697}";
print $char; # Output: 蚗
PHP:
$char = "\x{8697}";
echo $char; // Output: 蚗
Ruby:
char = "\u{8697}"
puts char # Output: 蚗
Rust:
let c = '\u{8697}';
println!("{}", c); // Output: 蚗
Go:
char := '\u8697'
fmt.Printf("%c\n", char) // Output: 蚗
CSS:
/* CSS content property */
.element::before {
content: "\008697"; /* 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%97
MD5:
33a63a44011ef8be212951231eaf23e2
SHA1:
497fa8a1ea49657ae90e3f0d17befc41b7dc819f
Base64:
6JqX