Unicode Finder

"ॆ" U+0946(DEVANAGARI VOWEL SIGN SHORT E)

U+0946
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI VOWEL SIGN SHORT E

Programming

C
\u0946
JavaScript
\u0946
Java
\u0946
Json
\u0946
Python
\u0946
Perl
\x{0946}
PHP
\x{0946}
Ruby
\u{0946}
Rust
\u{946}
Go
\u0946

Web

CSS
\000946
HtmlDecimal
ॆ
HtmlHexadecimal
ॆ
Url
%E0%A5%86

Code

MD5
ab770b92276f51144641c7f189f28109
Sha1
d347645034c3e3f24a91b0f090ef8f70b5aeaee3
Base64
4KWG

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

Programming Languages

C:

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

JavaScript:

const char = '\u0946';
console.log(char);  // Output: ॆ

Java:

char c = '\u0946';
System.out.println(c);  // Output: ॆ

JSON:

{"text": "\u0946"}  // Value: ॆ

Python:

char = '\u0946'
print(char)  # Output: ॆ

Perl:

my $char = "\x{0946}";
print $char;  # Output: ॆ

PHP:

$char = "\x{0946}";
echo $char;  // Output: ॆ

Ruby:

char = "\u{0946}"
puts char  # Output: ॆ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000946";  /* Display: ॆ */
}

HTML Decimal:

<p>HTML decimal: &#2374;</p>  <!-- Display: ॆ -->

HTML Hexadecimal:

<p>HTML hex: &#x0946;</p>  <!-- Display: ॆ -->

URL Encoding:

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

Encodings

MD5:

ab770b92276f51144641c7f189f28109

SHA1:

d347645034c3e3f24a91b0f090ef8f70b5aeaee3

Base64:

4KWG