C:
char c = '\u0985';
printf("%c\n", c); // Output: অ
JavaScript:
const char = '\u0985';
console.log(char); // Output: অ
Java:
char c = '\u0985';
System.out.println(c); // Output: অ
JSON:
{"text": "\u0985"} // Value: অ
Python:
char = '\u0985'
print(char) # Output: অ
Perl:
my $char = "\x{0985}";
print $char; # Output: অ
PHP:
$char = "\x{0985}";
echo $char; // Output: অ
Ruby:
char = "\u{0985}"
puts char # Output: অ
Rust:
let c = '\u{985}';
println!("{}", c); // Output: অ
Go:
char := '\u0985'
fmt.Printf("%c\n", char) // Output: অ
CSS:
/* CSS content property */
.element::before {
content: "\000985"; /* 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%85
MD5:
9ae54846fa6a3f85805b6ba577687d56
SHA1:
2dddafac16f97158abf9bb970d4055be487de6a7
Base64:
4KaF