C:
char c = '\u0986';
printf("%c\n", c); // Output: আ
JavaScript:
const char = '\u0986';
console.log(char); // Output: আ
Java:
char c = '\u0986';
System.out.println(c); // Output: আ
JSON:
{"text": "\u0986"} // Value: আ
Python:
char = '\u0986'
print(char) # Output: আ
Perl:
my $char = "\x{0986}";
print $char; # Output: আ
PHP:
$char = "\x{0986}";
echo $char; // Output: আ
Ruby:
char = "\u{0986}"
puts char # Output: আ
Rust:
let c = '\u{986}';
println!("{}", c); // Output: আ
Go:
char := '\u0986'
fmt.Printf("%c\n", char) // Output: আ
CSS:
/* CSS content property */
.element::before {
content: "\000986"; /* 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%86
MD5:
36b7860dc7d626c6ad2d2326f73b90a8
SHA1:
92c82dbd3acfd026684a3d964170ce2329908bb2
Base64:
4KaG