Unicode Finder

"ళ" U+0C33(TELUGU LETTER LLA)

U+0C33
بلاک کا نام
Telugu
نام
TELUGU LETTER LLA

Programming

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

Web

CSS
\000C33
HtmlDecimal
ళ
HtmlHexadecimal
ళ
Url
%E0%B0%B3

Code

MD5
ce020e69a83dfd4ddfd5fbe26c17cce7
Sha1
3e3f4d7992089577a159dc14fb895b91c64c277d
Base64
4LCz

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u0C33';
console.log(char);  // Output: ళ

Java:

char c = '\u0C33';
System.out.println(c);  // Output: ళ

JSON:

{"text": "\u0C33"}  // Value: ళ

Python:

char = '\u0C33'
print(char)  # Output: ళ

Perl:

my $char = "\x{0C33}";
print $char;  # Output: ళ

PHP:

$char = "\x{0C33}";
echo $char;  // Output: ళ

Ruby:

char = "\u{0C33}"
puts char  # Output: ళ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3123;</p>  <!-- Display: ళ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C33;</p>  <!-- Display: ళ -->

URL Encoding:

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

Encodings

MD5:

ce020e69a83dfd4ddfd5fbe26c17cce7

SHA1:

3e3f4d7992089577a159dc14fb895b91c64c277d

Base64:

4LCz