C:
char c = '\u8694';
printf("%c\n", c); // Output: 蚔
JavaScript:
const char = '\u8694';
console.log(char); // Output: 蚔
Java:
char c = '\u8694';
System.out.println(c); // Output: 蚔
JSON:
{"text": "\u8694"} // Value: 蚔
Python:
char = '\u8694'
print(char) # Output: 蚔
Perl:
my $char = "\x{8694}";
print $char; # Output: 蚔
PHP:
$char = "\x{8694}";
echo $char; // Output: 蚔
Ruby:
char = "\u{8694}"
puts char # Output: 蚔
Rust:
let c = '\u{8694}';
println!("{}", c); // Output: 蚔
Go:
char := '\u8694'
fmt.Printf("%c\n", char) // Output: 蚔
CSS:
/* CSS content property */
.element::before {
content: "\008694"; /* 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%94
MD5:
428e57937378aec25fa301e4f8f1acdd
SHA1:
d9e64b2dce771cd304f64e09e9aa158fb982900c
Base64:
6JqU