C:
char c = '\u0987';
printf("%c\n", c); // Output: ই
JavaScript:
const char = '\u0987';
console.log(char); // Output: ই
Java:
char c = '\u0987';
System.out.println(c); // Output: ই
JSON:
{"text": "\u0987"} // Value: ই
Python:
char = '\u0987'
print(char) # Output: ই
Perl:
my $char = "\x{0987}";
print $char; # Output: ই
PHP:
$char = "\x{0987}";
echo $char; // Output: ই
Ruby:
char = "\u{0987}"
puts char # Output: ই
Rust:
let c = '\u{987}';
println!("{}", c); // Output: ই
Go:
char := '\u0987'
fmt.Printf("%c\n", char) // Output: ই
CSS:
/* CSS content property */
.element::before {
content: "\000987"; /* 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=%E0%A6%87
MD5:
2b33463b5707e6c69a4919fbe56b0839
SHA1:
01c28d1033492e63d0517b6e62e31d3c80b3f33a
Base64:
4KaH