Unicode Finder

"ै" U+0948(DEVANAGARI VOWEL SIGN AI)

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

Programming

C
\u0948
JavaScript
\u0948
Java
\u0948
Json
\u0948
Python
\u0948
Perl
\x{0948}
PHP
\x{0948}
Ruby
\u{0948}
Rust
\u{948}
Go
\u0948

Web

CSS
\000948
HtmlDecimal
ै
HtmlHexadecimal
ै
Url
%E0%A5%88

Code

MD5
0723008ecb70c2d62a098419e39bcd66
Sha1
d9db8571daa55e948b8667ffcf6c0ad38b748dc9
Base64
4KWI

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

Programming Languages

C:

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

JavaScript:

const char = '\u0948';
console.log(char);  // Output: ै

Java:

char c = '\u0948';
System.out.println(c);  // Output: ै

JSON:

{"text": "\u0948"}  // Value: ै

Python:

char = '\u0948'
print(char)  # Output: ै

Perl:

my $char = "\x{0948}";
print $char;  # Output: ै

PHP:

$char = "\x{0948}";
echo $char;  // Output: ै

Ruby:

char = "\u{0948}"
puts char  # Output: ै

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000948";  /* Display: ै */
}

HTML Decimal:

<p>HTML decimal: &#2376;</p>  <!-- Display: ै -->

HTML Hexadecimal:

<p>HTML hex: &#x0948;</p>  <!-- Display: ै -->

URL Encoding:

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

Encodings

MD5:

0723008ecb70c2d62a098419e39bcd66

SHA1:

d9db8571daa55e948b8667ffcf6c0ad38b748dc9

Base64:

4KWI