Unicode Finder

"ధ" U+0C27(TELUGU LETTER DHA)

U+0C27
بلاک کا نام
Telugu
نام
TELUGU LETTER DHA

Programming

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

Web

CSS
\000C27
HtmlDecimal
ధ
HtmlHexadecimal
ధ
Url
%E0%B0%A7

Code

MD5
cf08f180e27cd47e6e16a72f60621e53
Sha1
d6be1dd2f7f61d052903053fb47b4fcf4eb9e87e
Base64
4LCn

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

Programming Languages

C:

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

JavaScript:

const char = '\u0C27';
console.log(char);  // Output: ధ

Java:

char c = '\u0C27';
System.out.println(c);  // Output: ధ

JSON:

{"text": "\u0C27"}  // Value: ధ

Python:

char = '\u0C27'
print(char)  # Output: ధ

Perl:

my $char = "\x{0C27}";
print $char;  # Output: ధ

PHP:

$char = "\x{0C27}";
echo $char;  // Output: ధ

Ruby:

char = "\u{0C27}"
puts char  # Output: ధ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3111;</p>  <!-- Display: ధ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C27;</p>  <!-- Display: ధ -->

URL Encoding:

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

Encodings

MD5:

cf08f180e27cd47e6e16a72f60621e53

SHA1:

d6be1dd2f7f61d052903053fb47b4fcf4eb9e87e

Base64:

4LCn