Unicode Finder

"উ" U+0989(BENGALI LETTER U)

U+0989
ब्लॉक का नाम
Bengali
नाम
BENGALI LETTER U

Programming

C
\u0989
JavaScript
\u0989
Java
\u0989
Json
\u0989
Python
\u0989
Perl
\x{0989}
PHP
\x{0989}
Ruby
\u{0989}
Rust
\u{989}
Go
\u0989

Web

CSS
\000989
HtmlDecimal
উ
HtmlHexadecimal
উ
Url
%E0%A6%89

Code

MD5
ce441441e4c593a1fdb7a51eb677df67
Sha1
1de5edba98a6a2ed0d0421c919304e07f62d689f
Base64
4KaJ

उपयोग के उदाहरण

Programming Languages

C:

char c = '\u0989';
printf("%c\n", c);  // Output: উ

JavaScript:

const char = '\u0989';
console.log(char);  // Output: উ

Java:

char c = '\u0989';
System.out.println(c);  // Output: উ

JSON:

{"text": "\u0989"}  // Value: উ

Python:

char = '\u0989'
print(char)  # Output: উ

Perl:

my $char = "\x{0989}";
print $char;  # Output: উ

PHP:

$char = "\x{0989}";
echo $char;  // Output: উ

Ruby:

char = "\u{0989}"
puts char  # Output: উ

Rust:

let c = '\u{989}';
println!("{}", c);  // Output: উ

Go:

char := '\u0989'
fmt.Printf("%c\n", char)  // Output: উ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000989";  /* Display: উ */
}

HTML Decimal:

<p>HTML decimal: &#2441;</p>  <!-- Display: উ -->

HTML Hexadecimal:

<p>HTML hex: &#x0989;</p>  <!-- Display: উ -->

URL Encoding:

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

Encodings

MD5:

ce441441e4c593a1fdb7a51eb677df67

SHA1:

1de5edba98a6a2ed0d0421c919304e07f62d689f

Base64:

4KaJ