Unicode Finder

"ഌ" U+0D0C(MALAYALAM LETTER VOCALIC L)

U+0D0C
Nama Blok
Malayalam
Nama
MALAYALAM LETTER VOCALIC L

Programming

C
\u0D0C
JavaScript
\u0D0C
Java
\u0D0C
Json
\u0D0C
Python
\u0D0C
Perl
\x{0D0C}
PHP
\x{0D0C}
Ruby
\u{0D0C}
Rust
\u{D0C}
Go
\u0D0C

Web

CSS
\000D0C
HtmlDecimal
ഌ
HtmlHexadecimal
ഌ
Url
%E0%B4%8C

Code

MD5
a83855cd61b1c13c052228a216c4eb9a
Sha1
e97247740e2b43a1b5f28df2bc6142178e39b565
Base64
4LSM

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0D0C';
console.log(char);  // Output: ഌ

Java:

char c = '\u0D0C';
System.out.println(c);  // Output: ഌ

JSON:

{"text": "\u0D0C"}  // Value: ഌ

Python:

char = '\u0D0C'
print(char)  # Output: ഌ

Perl:

my $char = "\x{0D0C}";
print $char;  # Output: ഌ

PHP:

$char = "\x{0D0C}";
echo $char;  // Output: ഌ

Ruby:

char = "\u{0D0C}"
puts char  # Output: ഌ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000D0C";  /* Display: ഌ */
}

HTML Decimal:

<p>HTML decimal: &#3340;</p>  <!-- Display: ഌ -->

HTML Hexadecimal:

<p>HTML hex: &#x0D0C;</p>  <!-- Display: ഌ -->

URL Encoding:

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

Encodings

MD5:

a83855cd61b1c13c052228a216c4eb9a

SHA1:

e97247740e2b43a1b5f28df2bc6142178e39b565

Base64:

4LSM