C:
char c = '\u0988';
printf("%c\n", c); // Output: ঈ
JavaScript:
const char = '\u0988';
console.log(char); // Output: ঈ
Java:
char c = '\u0988';
System.out.println(c); // Output: ঈ
JSON:
{"text": "\u0988"} // Value: ঈ
Python:
char = '\u0988'
print(char) # Output: ঈ
Perl:
my $char = "\x{0988}";
print $char; # Output: ঈ
PHP:
$char = "\x{0988}";
echo $char; // Output: ঈ
Ruby:
char = "\u{0988}"
puts char # Output: ঈ
Rust:
let c = '\u{988}';
println!("{}", c); // Output: ঈ
Go:
char := '\u0988'
fmt.Printf("%c\n", char) // Output: ঈ
CSS:
/* CSS content property */
.element::before {
content: "\000988"; /* 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%88
MD5:
a15f5994bba3348d78fcd1c39de1c959
SHA1:
9ef50c2962fc7066564dc829214efbe0ef945335
Base64:
4KaI