Unicode Finder

"ލ" U+078D(THAANA LETTER LAAMU)

ލ
U+078D
بلاک کا نام
Thaana
نام
THAANA LETTER LAAMU

Programming

C
\u078D
JavaScript
\u078D
Java
\u078D
Json
\u078D
Python
\u078D
Perl
\x{078D}
PHP
\x{078D}
Ruby
\u{078D}
Rust
\u{78D}
Go
\u078D

Web

CSS
\00078D
HtmlDecimal
ލ
HtmlHexadecimal
ލ
Url
%DE%8D

Code

MD5
319063d0787d23678bd22051f5a38e16
Sha1
d129a8a799e84e69d11309fc6a35118d1064fc4a
Base64
3o0=

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

Programming Languages

C:

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

JavaScript:

const char = '\u078D';
console.log(char);  // Output: ލ

Java:

char c = '\u078D';
System.out.println(c);  // Output: ލ

JSON:

{"text": "\u078D"}  // Value: ލ

Python:

char = '\u078D'
print(char)  # Output: ލ

Perl:

my $char = "\x{078D}";
print $char;  # Output: ލ

PHP:

$char = "\x{078D}";
echo $char;  // Output: ލ

Ruby:

char = "\u{078D}"
puts char  # Output: ލ

Rust:

let c = '\u{78D}';
println!("{}", c);  // Output: ލ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00078D";  /* Display: ލ */
}

HTML Decimal:

<p>HTML decimal: &#1933;</p>  <!-- Display: ލ -->

HTML Hexadecimal:

<p>HTML hex: &#x078D;</p>  <!-- Display: ލ -->

URL Encoding:

// ލ URL encoding
https://unicodefinder.com/search.php?query=%DE%8D

Encodings

MD5:

319063d0787d23678bd22051f5a38e16

SHA1:

d129a8a799e84e69d11309fc6a35118d1064fc4a

Base64:

3o0=