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