Unicode Finder

"े" U+0947(DEVANAGARI VOWEL SIGN E)

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

Programming

C
\u0947
JavaScript
\u0947
Java
\u0947
Json
\u0947
Python
\u0947
Perl
\x{0947}
PHP
\x{0947}
Ruby
\u{0947}
Rust
\u{947}
Go
\u0947

Web

CSS
\000947
HtmlDecimal
े
HtmlHexadecimal
े
Url
%E0%A5%87

Code

MD5
065556821d350b81461061acfc8ffbf9
Sha1
74d7eb733a844578351414828c7d96d10726391c
Base64
4KWH

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

Programming Languages

C:

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

JavaScript:

const char = '\u0947';
console.log(char);  // Output: े

Java:

char c = '\u0947';
System.out.println(c);  // Output: े

JSON:

{"text": "\u0947"}  // Value: े

Python:

char = '\u0947'
print(char)  # Output: े

Perl:

my $char = "\x{0947}";
print $char;  # Output: े

PHP:

$char = "\x{0947}";
echo $char;  // Output: े

Ruby:

char = "\u{0947}"
puts char  # Output: े

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000947";  /* Display: े */
}

HTML Decimal:

<p>HTML decimal: &#2375;</p>  <!-- Display: े -->

HTML Hexadecimal:

<p>HTML hex: &#x0947;</p>  <!-- Display: े -->

URL Encoding:

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

Encodings

MD5:

065556821d350b81461061acfc8ffbf9

SHA1:

74d7eb733a844578351414828c7d96d10726391c

Base64:

4KWH