C:
char c = '\u09A6';
printf("%c\n", c); // Output: দ
JavaScript:
const char = '\u09A6';
console.log(char); // Output: দ
Java:
char c = '\u09A6';
System.out.println(c); // Output: দ
JSON:
{"text": "\u09A6"} // Value: দ
Python:
char = '\u09A6'
print(char) # Output: দ
Perl:
my $char = "\x{09A6}";
print $char; # Output: দ
PHP:
$char = "\x{09A6}";
echo $char; // Output: দ
Ruby:
char = "\u{09A6}"
puts char # Output: দ
Rust:
let c = '\u{9A6}';
println!("{}", c); // Output: দ
Go:
char := '\u09A6'
fmt.Printf("%c\n", char) // Output: দ
CSS:
/* CSS content property */
.element::before {
content: "\0009A6"; /* 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%A6
MD5:
1c71ed33bf82c931724b888d23d3b9fb
SHA1:
65e2d8a86e18f65b4f83c2cde61336715796450f
Base64:
4Kam