Unicode Finder

"ु" U+0941(DEVANAGARI VOWEL SIGN U)

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

Programming

C
\u0941
JavaScript
\u0941
Java
\u0941
Json
\u0941
Python
\u0941
Perl
\x{0941}
PHP
\x{0941}
Ruby
\u{0941}
Rust
\u{941}
Go
\u0941

Web

CSS
\000941
HtmlDecimal
ु
HtmlHexadecimal
ु
Url
%E0%A5%81

Code

MD5
aaebc59f5921386d6055ed00c2b11e65
Sha1
0cad0b68cac4bd74a27d9a620e1e1eb13226f6d3
Base64
4KWB

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

Programming Languages

C:

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

JavaScript:

const char = '\u0941';
console.log(char);  // Output: ु

Java:

char c = '\u0941';
System.out.println(c);  // Output: ु

JSON:

{"text": "\u0941"}  // Value: ु

Python:

char = '\u0941'
print(char)  # Output: ु

Perl:

my $char = "\x{0941}";
print $char;  # Output: ु

PHP:

$char = "\x{0941}";
echo $char;  // Output: ु

Ruby:

char = "\u{0941}"
puts char  # Output: ु

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000941";  /* Display: ु */
}

HTML Decimal:

<p>HTML decimal: &#2369;</p>  <!-- Display: ु -->

HTML Hexadecimal:

<p>HTML hex: &#x0941;</p>  <!-- Display: ु -->

URL Encoding:

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

Encodings

MD5:

aaebc59f5921386d6055ed00c2b11e65

SHA1:

0cad0b68cac4bd74a27d9a620e1e1eb13226f6d3

Base64:

4KWB