Unicode Finder

"ൣ" U+0D63(MALAYALAM VOWEL SIGN VOCALIC LL)

U+0D63
نام بلوک
Malayalam
نام
MALAYALAM VOWEL SIGN VOCALIC LL

Programming

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

Web

CSS
\000D63
HtmlDecimal
ൣ
HtmlHexadecimal
ൣ
Url
%E0%B5%A3

Code

MD5
edcd7a1370ef1176475406907f794bdf
Sha1
eeef03bcc05a6f4e9c98d1a81d54cad1b9231155
Base64
4LWj

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u0D63';
console.log(char);  // Output: ൣ

Java:

char c = '\u0D63';
System.out.println(c);  // Output: ൣ

JSON:

{"text": "\u0D63"}  // Value: ൣ

Python:

char = '\u0D63'
print(char)  # Output: ൣ

Perl:

my $char = "\x{0D63}";
print $char;  # Output: ൣ

PHP:

$char = "\x{0D63}";
echo $char;  // Output: ൣ

Ruby:

char = "\u{0D63}"
puts char  # Output: ൣ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3427;</p>  <!-- Display: ൣ -->

HTML Hexadecimal:

<p>HTML hex: &#x0D63;</p>  <!-- Display: ൣ -->

URL Encoding:

// ൣ URL encoding
https://unicodefinder.com/search.php?query=%E0%B5%A3

Encodings

MD5:

edcd7a1370ef1176475406907f794bdf

SHA1:

eeef03bcc05a6f4e9c98d1a81d54cad1b9231155

Base64:

4LWj