Unicode Finder

"ज" U+091C(DEVANAGARI LETTER JA)

U+091C
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER JA

Programming

C
\u091C
JavaScript
\u091C
Java
\u091C
Json
\u091C
Python
\u091C
Perl
\x{091C}
PHP
\x{091C}
Ruby
\u{091C}
Rust
\u{91C}
Go
\u091C

Web

CSS
\00091C
HtmlDecimal
ज
HtmlHexadecimal
ज
Url
%E0%A4%9C

Code

MD5
3fbc5adc0c789607ee71011518441568
Sha1
94294cd4f2013acbe01e0698d16b5841e1a64974
Base64
4KSc

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

Programming Languages

C:

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

JavaScript:

const char = '\u091C';
console.log(char);  // Output: ज

Java:

char c = '\u091C';
System.out.println(c);  // Output: ज

JSON:

{"text": "\u091C"}  // Value: ज

Python:

char = '\u091C'
print(char)  # Output: ज

Perl:

my $char = "\x{091C}";
print $char;  # Output: ज

PHP:

$char = "\x{091C}";
echo $char;  // Output: ज

Ruby:

char = "\u{091C}"
puts char  # Output: ज

Rust:

let c = '\u{91C}';
println!("{}", c);  // Output: ज

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00091C";  /* Display: ज */
}

HTML Decimal:

<p>HTML decimal: &#2332;</p>  <!-- Display: ज -->

HTML Hexadecimal:

<p>HTML hex: &#x091C;</p>  <!-- Display: ज -->

URL Encoding:

// ज URL encoding
https://unicodefinder.com/search.php?query=%E0%A4%9C

Encodings

MD5:

3fbc5adc0c789607ee71011518441568

SHA1:

94294cd4f2013acbe01e0698d16b5841e1a64974

Base64:

4KSc