Unicode Finder

"ल" U+0932(DEVANAGARI LETTER LA)

U+0932
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER LA

Programming

C
\u0932
JavaScript
\u0932
Java
\u0932
Json
\u0932
Python
\u0932
Perl
\x{0932}
PHP
\x{0932}
Ruby
\u{0932}
Rust
\u{932}
Go
\u0932

Web

CSS
\000932
HtmlDecimal
ल
HtmlHexadecimal
ल
Url
%E0%A4%B2

Code

MD5
b59a738390ef96c903636f158e823b3c
Sha1
9ddb81178e4dbe101fa474236ac0030b1c136c03
Base64
4KSy

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

Programming Languages

C:

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

JavaScript:

const char = '\u0932';
console.log(char);  // Output: ल

Java:

char c = '\u0932';
System.out.println(c);  // Output: ल

JSON:

{"text": "\u0932"}  // Value: ल

Python:

char = '\u0932'
print(char)  # Output: ल

Perl:

my $char = "\x{0932}";
print $char;  # Output: ल

PHP:

$char = "\x{0932}";
echo $char;  // Output: ल

Ruby:

char = "\u{0932}"
puts char  # Output: ल

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000932";  /* Display: ल */
}

HTML Decimal:

<p>HTML decimal: &#2354;</p>  <!-- Display: ल -->

HTML Hexadecimal:

<p>HTML hex: &#x0932;</p>  <!-- Display: ल -->

URL Encoding:

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

Encodings

MD5:

b59a738390ef96c903636f158e823b3c

SHA1:

9ddb81178e4dbe101fa474236ac0030b1c136c03

Base64:

4KSy