C:
char c = '\u8689';
printf("%c\n", c); // Output: 蚉
JavaScript:
const char = '\u8689';
console.log(char); // Output: 蚉
Java:
char c = '\u8689';
System.out.println(c); // Output: 蚉
JSON:
{"text": "\u8689"} // Value: 蚉
Python:
char = '\u8689'
print(char) # Output: 蚉
Perl:
my $char = "\x{8689}";
print $char; # Output: 蚉
PHP:
$char = "\x{8689}";
echo $char; // Output: 蚉
Ruby:
char = "\u{8689}"
puts char # Output: 蚉
Rust:
let c = '\u{8689}';
println!("{}", c); // Output: 蚉
Go:
char := '\u8689'
fmt.Printf("%c\n", char) // Output: 蚉
CSS:
/* CSS content property */
.element::before {
content: "\008689"; /* 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%89
MD5:
9ee20c90b79aef4139521f99206bca1f
SHA1:
42d88c461a1476a8f6b869e12dcde36ed8d6cd15
Base64:
6JqJ