C:
char c = '\u098F';
printf("%c\n", c); // Output: এ
JavaScript:
const char = '\u098F';
console.log(char); // Output: এ
Java:
char c = '\u098F';
System.out.println(c); // Output: এ
JSON:
{"text": "\u098F"} // Value: এ
Python:
char = '\u098F'
print(char) # Output: এ
Perl:
my $char = "\x{098F}";
print $char; # Output: এ
PHP:
$char = "\x{098F}";
echo $char; // Output: এ
Ruby:
char = "\u{098F}"
puts char # Output: এ
Rust:
let c = '\u{98F}';
println!("{}", c); // Output: এ
Go:
char := '\u098F'
fmt.Printf("%c\n", char) // Output: এ
CSS:
/* CSS content property */
.element::before {
content: "\00098F"; /* 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%8F
MD5:
698601f9dd6b3acac620a24c124739a2
SHA1:
4359fe61928ebda429e39c6f8070f7b0c4e6dd36
Base64:
4KaP