Unicode Finder

"ऐ" U+0910(DEVANAGARI LETTER AI)

U+0910
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER AI

Programming

C
\u0910
JavaScript
\u0910
Java
\u0910
Json
\u0910
Python
\u0910
Perl
\x{0910}
PHP
\x{0910}
Ruby
\u{0910}
Rust
\u{910}
Go
\u0910

Web

CSS
\000910
HtmlDecimal
ऐ
HtmlHexadecimal
ऐ
Url
%E0%A4%90

Code

MD5
08200c18b09c7e19d76ec5a36c0ab1ff
Sha1
7f8e0ebf9dc82b3126b73112314515720d1e46a1
Base64
4KSQ

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

Programming Languages

C:

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

JavaScript:

const char = '\u0910';
console.log(char);  // Output: ऐ

Java:

char c = '\u0910';
System.out.println(c);  // Output: ऐ

JSON:

{"text": "\u0910"}  // Value: ऐ

Python:

char = '\u0910'
print(char)  # Output: ऐ

Perl:

my $char = "\x{0910}";
print $char;  # Output: ऐ

PHP:

$char = "\x{0910}";
echo $char;  // Output: ऐ

Ruby:

char = "\u{0910}"
puts char  # Output: ऐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000910";  /* Display: ऐ */
}

HTML Decimal:

<p>HTML decimal: &#2320;</p>  <!-- Display: ऐ -->

HTML Hexadecimal:

<p>HTML hex: &#x0910;</p>  <!-- Display: ऐ -->

URL Encoding:

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

Encodings

MD5:

08200c18b09c7e19d76ec5a36c0ab1ff

SHA1:

7f8e0ebf9dc82b3126b73112314515720d1e46a1

Base64:

4KSQ