Unicode Finder

"उ" U+0909(DEVANAGARI LETTER U)

U+0909
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER U

Programming

C
\u0909
JavaScript
\u0909
Java
\u0909
Json
\u0909
Python
\u0909
Perl
\x{0909}
PHP
\x{0909}
Ruby
\u{0909}
Rust
\u{909}
Go
\u0909

Web

CSS
\000909
HtmlDecimal
उ
HtmlHexadecimal
उ
Url
%E0%A4%89

Code

MD5
55258f8e61fe04c452be3aa6e4ed7f27
Sha1
416aacfbcfc0cde9c091d1e2759246f992d53823
Base64
4KSJ

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

Programming Languages

C:

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

JavaScript:

const char = '\u0909';
console.log(char);  // Output: उ

Java:

char c = '\u0909';
System.out.println(c);  // Output: उ

JSON:

{"text": "\u0909"}  // Value: उ

Python:

char = '\u0909'
print(char)  # Output: उ

Perl:

my $char = "\x{0909}";
print $char;  # Output: उ

PHP:

$char = "\x{0909}";
echo $char;  // Output: उ

Ruby:

char = "\u{0909}"
puts char  # Output: उ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000909";  /* Display: उ */
}

HTML Decimal:

<p>HTML decimal: &#2313;</p>  <!-- Display: उ -->

HTML Hexadecimal:

<p>HTML hex: &#x0909;</p>  <!-- Display: उ -->

URL Encoding:

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

Encodings

MD5:

55258f8e61fe04c452be3aa6e4ed7f27

SHA1:

416aacfbcfc0cde9c091d1e2759246f992d53823

Base64:

4KSJ