Unicode Finder

"ക" U+0D15(MALAYALAM LETTER KA)

U+0D15
بلاک کا نام
Malayalam
نام
MALAYALAM LETTER KA

Programming

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

Web

CSS
\000D15
HtmlDecimal
ക
HtmlHexadecimal
ക
Url
%E0%B4%95

Code

MD5
6c0e1a8bee8ff9cbd80a2351fde277e5
Sha1
0c19ae9688378d3d07ae7fe0b8f030933547e51e
Base64
4LSV

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

Programming Languages

C:

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

JavaScript:

const char = '\u0D15';
console.log(char);  // Output: ക

Java:

char c = '\u0D15';
System.out.println(c);  // Output: ക

JSON:

{"text": "\u0D15"}  // Value: ക

Python:

char = '\u0D15'
print(char)  # Output: ക

Perl:

my $char = "\x{0D15}";
print $char;  # Output: ക

PHP:

$char = "\x{0D15}";
echo $char;  // Output: ക

Ruby:

char = "\u{0D15}"
puts char  # Output: ക

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3349;</p>  <!-- Display: ക -->

HTML Hexadecimal:

<p>HTML hex: &#x0D15;</p>  <!-- Display: ക -->

URL Encoding:

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

Encodings

MD5:

6c0e1a8bee8ff9cbd80a2351fde277e5

SHA1:

0c19ae9688378d3d07ae7fe0b8f030933547e51e

Base64:

4LSV