C:
char c = '\u8765';
printf("%c\n", c); // Output: 蝥
JavaScript:
const char = '\u8765';
console.log(char); // Output: 蝥
Java:
char c = '\u8765';
System.out.println(c); // Output: 蝥
JSON:
{"text": "\u8765"} // Value: 蝥
Python:
char = '\u8765'
print(char) # Output: 蝥
Perl:
my $char = "\x{8765}";
print $char; # Output: 蝥
PHP:
$char = "\x{8765}";
echo $char; // Output: 蝥
Ruby:
char = "\u{8765}"
puts char # Output: 蝥
Rust:
let c = '\u{8765}';
println!("{}", c); // Output: 蝥
Go:
char := '\u8765'
fmt.Printf("%c\n", char) // Output: 蝥
CSS:
/* CSS content property */
.element::before {
content: "\008765"; /* 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%9D%A5
MD5:
e67fa6ae8f1da7cc11c7981c100f5407
SHA1:
3fe582737d63b6bf8d444ce0a1dbcd94bc9b7fb0
Base64:
6J2l