Unicode Finder

"ফ" U+09AB(BENGALI LETTER PHA)

U+09AB
ব্লক নাম
Bengali
নাম
BENGALI LETTER PHA

Programming

C
\u09AB
JavaScript
\u09AB
Java
\u09AB
Json
\u09AB
Python
\u09AB
Perl
\x{09AB}
PHP
\x{09AB}
Ruby
\u{09AB}
Rust
\u{9AB}
Go
\u09AB

Web

CSS
\0009AB
HtmlDecimal
ফ
HtmlHexadecimal
ফ
Url
%E0%A6%AB

Code

MD5
a94452854c150a2eec5db7ada25fe136
Sha1
f11e3a6fcbce98f4d0d85f99663ba897567d7cdf
Base64
4Kar

ব্যবহারের উদাহরণ

Programming Languages

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: ফ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0009AB";  /* Display: ফ */
}

HTML Decimal:

<p>HTML decimal: &#2475;</p>  <!-- Display: ফ -->

HTML Hexadecimal:

<p>HTML hex: &#x09AB;</p>  <!-- Display: ফ -->

URL Encoding:

// ফ URL encoding
https://unicodefinder.com/search.php?query=%E0%A6%AB

Encodings

MD5:

a94452854c150a2eec5db7ada25fe136

SHA1:

f11e3a6fcbce98f4d0d85f99663ba897567d7cdf

Base64:

4Kar