C:
char c = '\u8688';
printf("%c\n", c); // Output: 蚈
JavaScript:
const char = '\u8688';
console.log(char); // Output: 蚈
Java:
char c = '\u8688';
System.out.println(c); // Output: 蚈
JSON:
{"text": "\u8688"} // Value: 蚈
Python:
char = '\u8688'
print(char) # Output: 蚈
Perl:
my $char = "\x{8688}";
print $char; # Output: 蚈
PHP:
$char = "\x{8688}";
echo $char; // Output: 蚈
Ruby:
char = "\u{8688}"
puts char # Output: 蚈
Rust:
let c = '\u{8688}';
println!("{}", c); // Output: 蚈
Go:
char := '\u8688'
fmt.Printf("%c\n", char) // Output: 蚈
CSS:
/* CSS content property */
.element::before {
content: "\008688"; /* 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%88
MD5:
14e70673183d7b63f746b2f112a838eb
SHA1:
2a0c7f5abf2a712b9f39fa41c9a41b83fd7461d7
Base64:
6JqI