Unicode Finder

"ऌ" U+090C(DEVANAGARI LETTER VOCALIC L)

U+090C
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER VOCALIC L

Programming

C
\u090C
JavaScript
\u090C
Java
\u090C
Json
\u090C
Python
\u090C
Perl
\x{090C}
PHP
\x{090C}
Ruby
\u{090C}
Rust
\u{90C}
Go
\u090C

Web

CSS
\00090C
HtmlDecimal
ऌ
HtmlHexadecimal
ऌ
Url
%E0%A4%8C

Code

MD5
5d0119deda9cec3aa249056fa5a69482
Sha1
36f2732e81e1ce512c86a4685a15e569f78d0933
Base64
4KSM

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

Programming Languages

C:

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

JavaScript:

const char = '\u090C';
console.log(char);  // Output: ऌ

Java:

char c = '\u090C';
System.out.println(c);  // Output: ऌ

JSON:

{"text": "\u090C"}  // Value: ऌ

Python:

char = '\u090C'
print(char)  # Output: ऌ

Perl:

my $char = "\x{090C}";
print $char;  # Output: ऌ

PHP:

$char = "\x{090C}";
echo $char;  // Output: ऌ

Ruby:

char = "\u{090C}"
puts char  # Output: ऌ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2316;</p>  <!-- Display: ऌ -->

HTML Hexadecimal:

<p>HTML hex: &#x090C;</p>  <!-- Display: ऌ -->

URL Encoding:

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

Encodings

MD5:

5d0119deda9cec3aa249056fa5a69482

SHA1:

36f2732e81e1ce512c86a4685a15e569f78d0933

Base64:

4KSM