Unicode Finder

"इ" U+0907(DEVANAGARI LETTER I)

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

Programming

C
\u0907
JavaScript
\u0907
Java
\u0907
Json
\u0907
Python
\u0907
Perl
\x{0907}
PHP
\x{0907}
Ruby
\u{0907}
Rust
\u{907}
Go
\u0907

Web

CSS
\000907
HtmlDecimal
इ
HtmlHexadecimal
इ
Url
%E0%A4%87

Code

MD5
cd4bb37fd7505830fa4bb20d20db9d0f
Sha1
2b4c7cc90030ded94f34a56aa633a91f3b1a416c
Base64
4KSH

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

Programming Languages

C:

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

JavaScript:

const char = '\u0907';
console.log(char);  // Output: इ

Java:

char c = '\u0907';
System.out.println(c);  // Output: इ

JSON:

{"text": "\u0907"}  // Value: इ

Python:

char = '\u0907'
print(char)  # Output: इ

Perl:

my $char = "\x{0907}";
print $char;  # Output: इ

PHP:

$char = "\x{0907}";
echo $char;  // Output: इ

Ruby:

char = "\u{0907}"
puts char  # Output: इ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000907";  /* Display: इ */
}

HTML Decimal:

<p>HTML decimal: &#2311;</p>  <!-- Display: इ -->

HTML Hexadecimal:

<p>HTML hex: &#x0907;</p>  <!-- Display: इ -->

URL Encoding:

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

Encodings

MD5:

cd4bb37fd7505830fa4bb20d20db9d0f

SHA1:

2b4c7cc90030ded94f34a56aa633a91f3b1a416c

Base64:

4KSH