Unicode Finder

"ള" U+0D33(MALAYALAM LETTER LLA)

U+0D33
Όνομα Μπλοκ
Malayalam
Όνομα
MALAYALAM LETTER LLA

Programming

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

Web

CSS
\000D33
HtmlDecimal
ള
HtmlHexadecimal
ള
Url
%E0%B4%B3

Code

MD5
7dc385b36c802c7b9c5d5bcb88b79438
Sha1
adcd1e4fd0c68d94d29ecbee6ac5bd431f526a86
Base64
4LSz

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u0D33';
console.log(char);  // Output: ള

Java:

char c = '\u0D33';
System.out.println(c);  // Output: ള

JSON:

{"text": "\u0D33"}  // Value: ള

Python:

char = '\u0D33'
print(char)  # Output: ള

Perl:

my $char = "\x{0D33}";
print $char;  # Output: ള

PHP:

$char = "\x{0D33}";
echo $char;  // Output: ള

Ruby:

char = "\u{0D33}"
puts char  # Output: ള

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3379;</p>  <!-- Display: ള -->

HTML Hexadecimal:

<p>HTML hex: &#x0D33;</p>  <!-- Display: ള -->

URL Encoding:

// ള URL encoding
https://unicodefinder.com/search.php?query=%E0%B4%B3

Encodings

MD5:

7dc385b36c802c7b9c5d5bcb88b79438

SHA1:

adcd1e4fd0c68d94d29ecbee6ac5bd431f526a86

Base64:

4LSz