Unicode Finder

"ू" U+0942(DEVANAGARI VOWEL SIGN UU)

U+0942
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI VOWEL SIGN UU

Programming

C
\u0942
JavaScript
\u0942
Java
\u0942
Json
\u0942
Python
\u0942
Perl
\x{0942}
PHP
\x{0942}
Ruby
\u{0942}
Rust
\u{942}
Go
\u0942

Web

CSS
\000942
HtmlDecimal
ू
HtmlHexadecimal
ू
Url
%E0%A5%82

Code

MD5
dde446ad81005bbd137b0177ec1a0108
Sha1
3d1c819c4446cd6d4f38b307f41bec195043d469
Base64
4KWC

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

Programming Languages

C:

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

JavaScript:

const char = '\u0942';
console.log(char);  // Output: ू

Java:

char c = '\u0942';
System.out.println(c);  // Output: ू

JSON:

{"text": "\u0942"}  // Value: ू

Python:

char = '\u0942'
print(char)  # Output: ू

Perl:

my $char = "\x{0942}";
print $char;  # Output: ू

PHP:

$char = "\x{0942}";
echo $char;  // Output: ू

Ruby:

char = "\u{0942}"
puts char  # Output: ू

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000942";  /* Display: ू */
}

HTML Decimal:

<p>HTML decimal: &#2370;</p>  <!-- Display: ू -->

HTML Hexadecimal:

<p>HTML hex: &#x0942;</p>  <!-- Display: ू -->

URL Encoding:

// ू URL encoding
https://unicodefinder.com/search.php?query=%E0%A5%82

Encodings

MD5:

dde446ad81005bbd137b0177ec1a0108

SHA1:

3d1c819c4446cd6d4f38b307f41bec195043d469

Base64:

4KWC